/* Arabic RTL Website Styles for Future Galaxy Company */
:root {
  --primary-color: #20195f;
  --secondary-color: #3b82f6;
  --accent-color: #60a5fa;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --white: #ffffff;
  --text-dark: #374151;
  --text-light: #6b7280;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Almarai", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* Navigation */
.navbar.navbar-expand-lg {
  background: transparent !important;
  backdrop-filter: blur(10px);
  /* box-shadow: var(--shadow); */
  transition: all 0.3s ease;
  background: transparent !important;
  padding: 1rem 0;
}
.nav-toggle { 
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

/* Text-size Nav In Small laptop */
@media (min-width: 1024px) {
  .navbar-nav{
    font-size: 11px !important;
  }
}

@media (min-width: 1070px) {
  .navbar-nav{
    font-size: 16px !important;
  }
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  color: var(--white) !important;
}


.navbar-nav .nav-link:hover {
  background:var(--primary-color);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: var(--white) !important;
  color: white;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  color: var(--white) !important;
}

.language-toggle {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1.5px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.language-toggle:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(32, 25, 95, 0.2);
}

.language-toggle svg {
  transition: transform 0.3s ease;
}

.language-toggle:hover svg {
  transform: scale(1.1);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000; /* Fallback background */
}

.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,1000 1000,0 1000,1000"/></svg>'); */
  background-size: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(32, 25, 95, 0.8),
    rgba(59, 130, 246, 0.6),
    rgba(32, 25, 95, 0.9),
    rgba(96, 165, 250, 0.5)
  );
  background-size: 400% 400%;
  animation: overlayShift 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes overlayShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-overlay {
    animation: none;
    background: rgba(32, 25, 95, 0.75);
  }
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-logo h1 {
  color: var(--white) !important;
}

.hero-logo .logo-image {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  animation: pulse 2s infinite;
}

.navbar-logo {
  /* width: auto; */
  height: 60px;
  /* background: var(--white); */
  border-radius: 3px;
  /* padding: 5px; */
  object-fit: contain;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem !important;
}

  /* Simple White and Black Animations */
.simple-animated-tagline {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.7)
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: taglineWave 3s ease-in-out infinite,
              taglineFloat 4s ease-in-out infinite;
}

/* Simple Animation Keyframes */

@keyframes taglineFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .simple-animated-tagline {
    animation-duration: 2.5s, 5s;
  }
}

/* Disable animations for users who prefer reduced motion */
.hero-buttons .btn {
  margin: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-light:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(32, 25, 95, 0.4);
}

/* About Section */
.about-content {
  padding: 2rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}


.vision-mission h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.about-content .title {
  font-weight: bold;
}

.vision-mission p {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 60%;
}

.about-stats {
  padding: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-card i {
  font-size: 2.5rem;
  display: block;
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.stat-card p {
  color: var(--text-light);
  font-weight: 500;
}

/* Services Section */
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary-color);
}

.service-card.smart-meter {
  border-top-color: var(--success-color);
}

.service-card.smart-meter:hover {
  border-top-color: var(--warning-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
}

.service-card.smart-meter .service-icon {
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--warning-color)
  );
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.strength-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strength-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.strength-card i {
  font-size: 2rem;
  display: block;
}

.strength-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-top: 1rem;
}

/* Projects Section */

/* .project-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-header h5 {
  margin: 0;
  font-weight: 600;
  color: var(--white);
}

.project-header .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.project-details {
    padding: 1.5rem;
}


.project-details p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.project-details strong {
  color: var(--primary-color);
  font-weight: 600;
} */

/* Clients Section */
.client-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.client-card img {
  padding: 12px;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.client-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.client-card h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  font-size: 0.95rem;
}

/* business Section */

.swiper-slide img {
    width: 420px;
    height: 250px;
    background: center;
    object-fit: cover;
}
.gallery-item {
  position: relative;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 250px;
  opacity: 85%;
}

.gallery-item:hover {
  opacity: 100%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.gallery-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  position: relative;
}

.gallery-image i {
  opacity: 0.3;
}


.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem;
  transform: translateY(0);
  transition: all 0.3s ease;
  z-index: 100;
}

.gallery-overlay h6 {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Fancybox gallery links styling */
.gallery-item a[data-fancybox] {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.gallery-item a[data-fancybox]:hover {
  text-decoration: none;
  color: inherit;
}

/* Contact Section */
.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.contact-info {
  background: var(--primary-color);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-info .title {
  font-weight: bold;
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-details {
  order: 1;
  flex: 1;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  order: 2;
}

.contact-icon i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.contact-details h6 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  color: var(--white);
  margin-bottom: 0.25rem;
  text-decoration: none;
  opacity: 60%;
}

.contact-details p,
.contact-details a:hover {
  color: var(--white);
  opacity: 100%;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  border-radius: 15px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-color), #111827) !important;
}

footer h5,
footer h6 {
  color: var(--white);
  font-weight: 600;
}

footer p,
footer a {
  color: #d1d5db;
  text-decoration: none;
}
.list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer a:hover {
  color: var(--white);
}

.social-links .btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links .btn:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:focus {
  color: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 90px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.back-to-top.show {
  display: flex;
}

/* Utility Classes */
.bg-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.lang-button {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size:12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lang-button:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.btn-outline-primary {
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-success {
  background: var(--success-color);
  border: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #059669;
}

.btn-warning {
  background: var(--warning-color);
  border: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #d97706;
}

/* Navbar styles */
.navbar {
  transition: all 0.3s ease;
  background: transparent !important;
}
.navbar.navbar-scrolled {
  background: var(--white) !important;
  /* backdrop-filter: blur(10px); */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-scrolled .navbar-logo {
  content: url("images/new-logo-transparent.png");
}
.navbar.navbar-scrolled .navbar-nav .nav-link {
  color: var(--primary-color) !important;
  width: fit-content;
}

.navbar.navbar-scrolled .navbar-brand {
  color: var(--primary-color) !important;
}
.navbar-scrolled .navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

.navbar-scrolled .lang-button {
  color: var(--white) !important;
  background-color: var(--primary-color) !important;
}

.navbar-scrolled .lang-button:hover {
  background-color: var(--secondary-color) !important;
}

.navbar.navbar-scrolled .navbar-toggler {
  border-color: #333 !important;
}

.navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .swiper-slide img {
    width: 520px;
    object-fit: cover;
  }

  .hero-section {
    height: 100vh;
    text-align: center;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-overlay {
    animation: none;
    background: rgba(32, 25, 95, 0.75);
  }

  .hero-logo .logo-image {
    width: 120px;
    height: 120px;
    padding: 12px;
  }

  .navbar-logo {
    /* width: 30px; */
    height: 50px;
    padding: 5px;
  }


  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    margin: 0;
    position: relative;
    overflow: hidden;
  }

  .hero-buttons .btn-primary {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    border: none;
    box-shadow: 0 4px 16px rgba(32, 25, 95, 0.3);
    transform: scale(1.05);
  }

  .hero-buttons .btn-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
  }

  .hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .hero-buttons .btn::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;
  }

  .hero-buttons .btn:active::before {
    left: 100%;
  }

  .hero-buttons .btn:active {
    transform: scale(0.98);
  }

  .hero-buttons .btn-primary:active {
    transform: scale(1.02);
  }

  /* Add pulse animation for primary CTA */
  .hero-buttons .btn-primary {
    animation: ctaPulse 3s infinite;
  }

  @keyframes ctaPulse {
    0%,
    100% {
      box-shadow: 0 4px 16px rgba(32, 25, 95, 0.3);
    }
    50% {
      box-shadow: 0 6px 20px rgba(32, 25, 95, 0.5);
    }
  }

  @media (min-width:1024px) {
        .navbar-nav .nav-link {
      font-size: 11px !important;
    }
  }
  /* Tablet responsive improvements */
  @media (max-width: 992px) and (min-width: 769px) {
    .hero-buttons {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
      max-width: 100%;
      margin: 0 auto;
    }

    .hero-buttons .btn {
      flex: 1;
      max-width: 180px;
      padding: 0.75rem 1.25rem;
      margin: 0;
    }

    .hero-buttons .btn-primary {
      transform: scale(1);
      order: -1;
    }
  }

  @media (max-width: 768px) {
    .contact-item {
      flex-direction: row;
      text-align: right;
      align-items: flex-start;
    }


    .contact-icon {
      margin-right: 1rem;
      margin-left: 0;
    }

    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      bottom: 15px;
      left: 15px;
    }

    .back-to-top {
      width: 45px;
      height: 45px;
      font-size: 1.25rem;
      bottom: 75px;
      left: 15px;
    }
  }

  @media (max-width: 576px) {
    .navbar-brand {
      font-size: 1.25rem;
    }

    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section h2 {
      font-size: 1.5rem;
    }

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

    .about-content,
    .contact-form-container,
    .contact-info {
      padding: 1.5rem;
    }

    .service-card,
    .project-card,
    .client-card {
      padding: 1.5rem;
    }

    .stat-card {
      padding: 1.5rem;
    }

    .gallery-item {
      height: 200px;
    }
    
  }
  /* Gallery */
      /* .work-box {
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .work-box:hover {
      transform: scale(1.02);
    }

    .work-box img {
      width: 100%;
      height: auto;
      display: block;
    } */

  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

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

  ::-webkit-scrollbar-track {
    background: var(--light-color);
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary-color), var(--primary-color));
  }

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

  .animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
  }

  /* Print Styles */
  @media print {
    .navbar,
    .whatsapp-float,
    .back-to-top {
      display: none !important;
    }

    .hero-section {
      height: auto;
      padding: 2rem 0;
    }

    body {
      font-size: 12pt;
      color: #000;
    }
  }
}
