:root {
  --primary: #0b3d91;
  --secondary: #f4f4f4;
  --dark: #1a1a1a;
  --light: #ffffff;
  --accent: #000000;
  --success: #28a745;
  --warning: #ffc107;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--light);
  overflow-x: hidden;
}

.container {
  max-width: ;
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* Hide menu on phone view */
.main-nav {
  display: none;
  flex-direction: column;
  background: white; /* or your navbar bg */
  position: absolute;
  top: 70px; /* adjust to below header */
  right: 20px;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* When menu is open */
.main-nav.show {
  display: flex;
}

/* Hamburger always visible on mobile */
.hamburger {
  display: block;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Optional: hide hamburger on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .main-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
  }
}

/* Header Improvements */
.site-header {
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Removed sticky behavior so header scrolls normally */
  position: relative;
  width: 100%;
  z-index: 999; /* stays above other content if needed */
  transition: top 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: px;
  margin: ;
  border-radius: px;
  background: transparent; /* optional: can add gradient or shadow */
}

/* Target the actual image */
.logo img {
  width: 200px; /* adjust to your desired logo size */
  height: 75px; /* keep aspect ratio */
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

/* Hover animation */
.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 113, 206, 0.7));
}
.CompanyName {
  display: flex;
  align-items: center;
  /* No longer sticky; allow normal document flow */
  position: relative;
  justify-content: space-between;
  background-color: rgba(0, 113, 206, 0.7);

  box-shadow: 0 0 20px rgba(0, 113, 206, 0.7);

  padding: 1rem 2rem;
}

.EnglishName {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.arabicname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-name {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-align nav items */
  padding: 10px 40px;
  margin: 4px;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover:after {
  width: 100%;
}

.btn-outline {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--primary);
}

/* Hero Section Improvements */
.hero {
  color: var(--light);
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 0 15rem;
  align-items: center;
  align-content: center;
}

.hero-copy {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding: 1rem;
}

.hero-copy h1 {
  color: black;
  margin-bottom: 25px;
  max-width: 500px;
  font-size: 2.5rem;
  opacity: 0.95;
}

.hero-copy p {
  color: black;
  margin-bottom: 25px;
  max-width: 500px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--light);
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--light);
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  backdrop-filter: blur(10px);
}

.hero-media {
  width: 100%;
  max-width: 700px; /* Increased from 600px */
  height: 100%; /* Increased height */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius);
  transition: var(--transition);
  object-fit: cover; /* Ensures video fills the entire box */
}
.hero-media img:hover {
  transform: scale(1.02);
}

/* Minimize video when scrolled */
.hero-media.minimized {
  position: fixed;
  width: 240px;
  height: 135px;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.5s ease;
}

.hero-media video {
  -webkit-playsinline: true;
  playsinline: true;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/*About us section*/
.about {
  margin: 10rem auto;
  font-family: system-ui;
  font-size: 1.3rem;
  color: red;
  line-height: 1.5;
  display: grid;
  position: relative;
  background: linear-gradient(135deg, white);
}

img {
  max-width: 100%;
}

section {
  grid-column: main;
}

section.fullscreen {
  grid-column: full;
  height: 100svh;
  display: grid;
  place-content: center;
}

blockquote {
  font-size: 1.2rem;
}

cite {
  display: block;
  font-size: small;
  margin-block: 1rem;
  opacity: 0.6;
}

hr {
  display: block;
  margin-block: 4rem;
  border: 1px solid #ccc6;
  border-width: 1px 0 0;
}

/* === Side by Side Section === */
.side-by-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns for desktop */
  gap: 2rem;
  padding: 0 5rem;
  text-align: center;
}

/* Image container */
.side-by-side__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.side-by-side__image img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 30px;
  padding: 0 1rem;
}

/* Text styling */
.side-by-side__text {
  margin-top: 1rem;
}

.side-by-side__text h3 {
  color: #e60000;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.side-by-side__text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  text-align: justify;
  padding: 0 1rem;
}

/* === Responsive Fixes === */
@media (max-width: 1024px) {
  .side-by-side {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3rem;
  }
}

/* ======= PHONE VIEW (Hide Images) ======= */
@media (max-width: 768px) {
  /* Hide images */
  .side-by-side__image {
    display: none;
  }

  /* Single column layout */
  .side-by-side {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .side-by-side__text {
    max-width: 100%;
    margin: 0 auto;
  }

  .side-by-side__text h3 {
    font-size: 1.3rem;
  }

  .side-by-side__text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about {
    font-size: 1rem;
    padding: 3rem 0;
  }

  .side-by-side {
    gap: 1.5rem;
  }
}

/* === Animation Section (kept your effects) === */
.about p,
.about h2,
.about h3,
.about blockquote,
.about ul,
.about hr {
  animation: text-appear ease-in both;
  animation-timeline: view();
  animation-range: 0vh 50vh;
}

.about img {
  animation: image-appear ease-in both;
  animation-timeline: view();
  animation-range: entry 0vh 55vh;
}

@prefers-reduced-motion {
  p,
  h2,
  h3,
  blockquote,
  hr,
  img {
    animation: none;
  }
}

@keyframes image-appear {
  from {
    filter: saturate(0) contrast(4) brightness(0.1) blur(3px);
    opacity: 0;
    scale: 0.95;
    translate: 0 4rem;
  }
}

@keyframes text-appear {
  from {
    opacity: 0;
    translate: 0 8rem;
  }
}

/* === About Section Styling === */
.about {
  padding: 5rem 0;
  text-align: center;
  background: var(--secondary);
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--dark);
}

.about p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--light);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.mobile-nav .brand {
  font-size: 1.2rem;
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
}

.close-menu:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav a:before {
  content: '→';
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  padding-left: 1rem;
}

.mobile-nav a:hover:before {
  opacity: 1;
}

.mobile-nav .btn-outline {
  margin-top: 1rem;
  text-align: center;
  border: 2px solid var(--primary);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hovering info */
.box-head {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: ;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: ;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition) top 0.3s ease-in-out;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.info-box {
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  height: 150px;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #ff5c5c, #38bdf8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.info-box:hover {
  height: 600px;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.15),
    rgba(124, 58, 237, 0.15)
  );
}

.info-box:hover::before {
  transform: scaleX(1);
}

.box-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #38bdf8, #7c3aed);
}

.box-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #38bdf8;
}

.short-info {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.expanded-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease 0.1s;
  margin-top: 15px;
}

.info-box:hover .expanded-content {
  opacity: 1;
  max-height: 1000px;
}
.info-box:hover .short-info {
  opacity: 0;
}
.feature-list {
  list-style: none;
  margin: 15px 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.feature-list li::before {
  content: '✓';
  color: #38bdf8;
  font-weight: bold;
  margin-right: 10px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.tech-tag {
  background: rgba(56, 189, 248, 0.2);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.action-btn {
  background: linear-gradient(to right, #38bdf8, #7c3aed);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
}

.instructions {
  text-align: center;
  margin-top: 50px;
  color: #94a3b8;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .box-grid {
    grid-template-columns: 1fr;
  }

  .info-box:hover {
    height: 400px;
  }
}
/* sliding photo */
/* 🔹 Why Choose Us Section */
/* 🔹 Why Choose Us Section */
.why-choose-us {
  padding: 80px 8%;
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  display: flex;
  justify-content: center;
  min-height: 700px;
  align-items: center;
  margin: 80px auto;
  max-width: 1400px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* 🔹 Content Wrapper */
.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: nowrap; /* keeps text left, image right on large screens */
}

/* 🔹 Text Section (Left) */
.text-content {
  flex: 1;
  min-width: 350px;
  max-width: 550px;
  order: 1; /* ensures it's always on the left */
}

.text-content h2 {
  font-size: 2.8em;
  color: #0284c7;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-content p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6em;
  margin-bottom: 25px;
}

.text-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-content ul li {
  font-size: 1.05em;
  color: #333;
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

.text-content ul li::before {
  content: '✔';
  color: #0ea5e9;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* 🔹 Image Frame (Right) */
.image-frame {
  flex: 1;
  min-width: 550px;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  order: 2; /* ensures image is always on the right */
}

.image-frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlide 10s infinite;
  border-radius: 16px;
  transition: transform 350ms ease;
}

/* 🔹 Image Animation Delays */
.image-frame img:nth-child(1) {
  animation-delay: 0s;
}
.image-frame img:nth-child(2) {
  animation-delay: 4s;
}
.image-frame img:nth-child(3) {
  animation-delay: 8s;
}

/* 🔹 Fade Animation */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 1;
    transform: scale(1);
  }
  43% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
  }
}

/* 🔹 Responsive Fix */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .image-frame {
    order: 1; /* show image above text on mobile */
    width: 100%;
    min-width: 100%;
    height: 300px;
  }

  .text-content {
    order: 2;
    max-width: 100%;
  }
}

/* Text Ticker Improvements */
.text-ticker {
  overflow: hidden;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--light);
  padding: 0.8rem 0;
  font-weight: 600;
  position: relative;
}

.text-ticker:before {
  content: '🚀';
  position: absolute;
  left: 1rem;
  z-index: 1;
  animation: bounce 2s infinite;
}

.text-ticker span {
  display: inline-block;
  padding-left: 3rem;
  animation: ticker 20s linear infinite;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.text-ticker:hover span {
  animation-play-state: paused;
}

/* Services Section */
.av-products-services {
  min-height: 90vh;
  overflow: hidden;
  background: rgba(0, 113, 206, 0.7);
  padding: 64px 20px;
}

.av-ps-header {
  max-width: 1024px;
  margin: 0 auto 40px;
  text-align: center;
  color: white;
}

.av-ps-header h1 {
  font-size: 44px;
  margin-bottom: 24px;
}

.av-ps-header div {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 24px;
}

.av-ps-cards {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.av-ps-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  margin-top: 1px;
  width: 75rem;
  height: 35rem;
  min-height: 20rem;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.av-ps-card__description {
  display: absolute;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.av-ps-card__title {
  font-size: 25px;
}

.av-ps-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
}

.av-ps-card__cta a {
  width: max-content;
  padding: 12px 24px;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  margin-top: 16px;
  display: inline-block;
}

.av-ps-card__figure {
  position: relative;
  overflow: hidden;
}

.av-ps-card__figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-ps-spacer {
  width: 100%;
  height: 100vh;
}
/* --- FIX: OUR PRODUCTS & SERVICES alignment on mobile --- */
@media (max-width: 900px) {
  /* Force section to be full width */
  .av-products-services {
    display: block !important;
    width: 100% !important;
    padding: 2rem 1rem !important;
  }

  /* Center the blue box properly */
  .av-ps-header {
    width: 100% !important;
    max-width: 600px;
    margin: 0 auto 2rem auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
  }

  .av-ps-header h1 {
    font-size: 1.5rem !important;
  }

  .av-ps-header p {
    font-size: 1rem !important;
    line-height: 1.5;
  }

  /* Make sure cards below don't float oddly */
  .av-ps-cards,
  .av-ps-card {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .av-ps-card__figure img {
    width: 100% !important;
    max-width: 500px;
  }

  .av-ps-card__description {
    width: 100% !important;
    margin-top: 1rem;
  }
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 2rem 1rem;
}

.site-footer p {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .cta-row {
    justify-content: center;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .rolling-banner-content span,
  .text-ticker span {
    font-size: 0.9rem;
  }

  .services h2,
  .products h2,
  .about h2,
  .contact h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }
}
.site-footer {
  background: linear-gradient(
    to bottom,
    #ff4500,
    #ff6347
  ); /* OrangeRed to Tomato gradient */
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.site-footer h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.site-footer p {
  margin: 10px 0;
  line-height: 1.6;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffa07a; /* Light Salmon on hover */
}
