:root {
  --primary-green: #00d9a3;
  --primary-purple: #7c3aed;
  --primary-blue: #3b82f6;
  --light-bg: #f8fafc;
  --lighter-bg: #ffffff;
  --dark-text: #1e293b;
  --gray-text: #64748b;
  --accent-orange: #f59e0b;
  --accent-pink: #ec4899;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--lighter-bg);
  color: var(--dark-text);
  overflow-x: hidden;
  transition: all 0.3s ease;
}

/* Navigation Styles */
.navbar {
  background: var(--lighter-bg);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text) !important;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}
.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.brand-icon {
  margin-right: 12px;
}

.navbar-nav .nav-link {
  color: var(--gray-text) !important;
  font-size: 1rem;
  padding: 0.5rem 1.5rem !important;
  transition: color 0.3s ease;
  font-weight: 500;
}
.nav-link.active {
  color: var(--primary-green) !important;
}

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

/* Language Toggle Button */
.language-toggle {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: fit-content;
}

.language-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 217, 163, 0.3);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-start-project {
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--primary-blue)
  );
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-start-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #fef3c7 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  /* margin-right: 50px; */
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
  color: var(--dark-text);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 3rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-primary-hero {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue)
  );
  color: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 217, 163, 0.4);
  color: #fff;
}

.btn-secondary-hero {
  background: white;
  color: var(--primary-purple);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--primary-purple);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-hero:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

/* 3D Visualization */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 217, 163, 0.15),
    transparent
  );
  border: 2px solid rgba(0, 217, 163, 0.3);
  position: relative;
  animation: rotate 20s linear infinite;
}

.globe-line {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.globe-line:nth-child(1) {
  transform: rotateY(30deg);
}

.globe-line:nth-child(2) {
  transform: rotateY(60deg);
}

.globe-line:nth-child(3) {
  transform: rotateY(90deg);
}

.globe-line:nth-child(4) {
  transform: rotateX(30deg);
}

.globe-line:nth-child(5) {
  transform: rotateX(60deg);
}

.device {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.device-desktop {
  width: 320px;
  height: 200px;
  top: 50%;
  transform: translateY(-50%) perspective(800px) rotateY(-15deg);
  animation: float 3s ease-in-out infinite;
}

.device-desktop {
  right: -50px;
}

.device-tablet {
  width: 200px;
  height: 280px;
  bottom: 50px;
  transform: perspective(800px) rotateY(-10deg) rotateX(5deg);
  animation: float 3s ease-in-out infinite 0.5s;
}

.device-tablet {
  right: 100px;
}

.device-mobile {
  width: 140px;
  height: 280px;
  bottom: 80px;
  border-radius: 20px;
  transform: perspective(800px) rotateY(-5deg);
  animation: float 3s ease-in-out infinite 1s;
}

.device-mobile {
  right: -20px;
}

.device-screen {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 163, 0.1),
    rgba(59, 130, 246, 0.1)
  );
  border-radius: 6px;
}

.screen-line {
  height: 8px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  margin: 12px;
  border-radius: 4px;
  animation: pulse 2s ease-in-out infinite;
}

.screen-line:nth-child(2) {
  width: 70%;
  animation-delay: 0.2s;
}

.screen-line:nth-child(3) {
  width: 50%;
  animation-delay: 0.4s;
}

.connection-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary-blue);
  animation: pulse 2s ease-in-out infinite;
}

/* Clients Section */
.clients-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f6fffa 100%);
  position: relative;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.clients-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(59, 130, 246, 0.05),
    transparent 60%
  );
  pointer-events: none;
}

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

.section-description {
  font-size: 1.2rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.client-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, #f0f9ff, #faf5ff);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.client-card:hover::before {
  opacity: 1;
}

.client-logo {
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-card:hover .client-logo {
  transform: scale(1.1);
}

.client-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.services-section .section-title {
  color: #0f172a;
}

.services-section .section-description {
  color: #475569;
}

.service-card {
  background: white;
  border: none;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--primary-blue),
    var(--primary-purple)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  padding: 15px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 163, 0.1),
    rgba(59, 130, 246, 0.1)
  );
  border-radius: 16px;
  transition: transform 0.4s ease;
}

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 700;
}

.service-subtitle {
  color: #3b82f6;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-card p {
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-highlights {
  list-style: none;
  padding: 0;
}

.service-highlights li {
  color: #475569;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

/* Our Office Section */
.gwl-presence-section {
  padding: 80px 0;
}

.gwl-presence-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.gwl-presence-description {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Office Card */
.gwl-office-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gwl-office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Header Background with Blur */
.gwl-office-header {
  position: relative;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gwl-office-header::after {
  content: "";
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(6px);
            background-color: rgba(0, 0, 0, 0.25); */
}

/* Office-specific backgrounds */
.gwl-india .gwl-office-header {
  background-image: url("/img/india.jpg");
}

.gwl-israel .gwl-office-header {
  background-image: url("/img/israel.jpg");
}

/* Content Styling */
.gwl-office-content {
  padding: 24px;
  background: #fff;
}

.gwl-office-country {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 600;
}

.gwl-office-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.gwl-office-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.gwl-office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.gwl-detail-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.gwl-detail-label {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.gwl-office-phone {
  text-decoration: none;
  color: var(--text-light);
}

.gwl-office-phone:hover {
  color: var(--primary-green);
}

.gwl-btn-connect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.gwl-btn-connect:hover {
  background: #0ea96a;
}

/* Responsive */
@media (max-width: 768px) {
  .gwl-office-header {
    height: 140px;
  }
}

@media (max-width: 620px) {
  .globe-container {
    /* justify-content: start; */
  }
  .globe-container .device-desktop{
    right: 0px;
    left: 110px;
  }
  .globe-container .device-tablet{
    right: 0px;
    left: 210px;
  }
  .globe-container .device-mobile{
    right: 0px;
    left: 270px;
  }
}

.gwl-detail-icon {
  margin-right: 1rem;
}

.gwl-detail-text {
  flex: 1;
}

.gwl-detail-label {
  font-weight: 700;
  color: #7c3aed;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.gwl-office-phone {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.gwl-office-phone:hover {
  color: #3b82f6;
}

/* Connect Button */
.gwl-btn-connect {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue)
  );
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 16px;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  text-decoration: none;
  font-size: 1.05rem;
}

.gwl-btn-connect:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 217, 163, 0.4);
  color: #fff;
}

.gwl-btn-connect svg {
  transition: transform 0.3s ease;
}

.gwl-btn-connect:hover svg {
  transform: scale(1.1);
}

.cta-section {
  background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 40%,
      rgba(255, 255, 255, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.1),
      transparent 60%
    );
  z-index: 0;
}

.cta-section h2,
.cta-section p,
.cta-section a {
  position: relative;
  z-index: 1;
}

.cta-section a.btn {
  transition: all 0.3s ease;
}

.cta-section a.btn:hover {
  background-color: #ffffffd9;
  transform: translateY(-2px);
}

/*Why Us Section   */

.gwl-effective-section {
  padding: 90px 0;
}

.gwl-effective-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #000;
}

.gwl-effective-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 60px;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.gwl-effective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 992px) {
  .gwl-effective-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gwl-effective-grid {
    grid-template-columns: 1fr;
  }
}

.gwl-effective-item {
  border: 2px solid #000;
  padding: 45px 20px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}

.gwl-effective-item:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
}

.gwl-effective-item i {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.gwl-effective-item h5 {
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) perspective(800px) rotateY(-15deg);
  }

  50% {
    transform: translateY(-20px) perspective(800px) rotateY(-15deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes gwlFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gwl-office-card {
  animation: gwlFadeInUp 0.6s ease backwards;
}

.gwl-office-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-visual {
    height: 400px;
    margin-top: 3rem;
  }

  .globe {
    width: 300px;
    height: 300px;
  }

  .device-desktop {
    width: 240px;
    height: 150px;
  }

  .device-tablet {
    width: 150px;
    height: 210px;
  }

  .device-mobile {
    width: 100px;
    height: 200px;
  }

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

  .gwl-presence-title {
    font-size: 2.5rem;
  }

  .gwl-office-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-buttons {
    /* flex-direction: column; */
    display: flex;
    justify-content: center;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 60%;
    text-align: center;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0 !important;
  }

  .clients-section,
  .services-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .client-card,
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .language-toggle {
    margin: 0.5rem 0;
    width: 100%;
  }

  .btn-start-project {
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  .gwl-presence-section {
    padding: 4rem 0;
  }

  .gwl-presence-title {
    font-size: 2rem;
  }

  .gwl-presence-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .gwl-office-header {
    height: 140px;
  }

  .gwl-location-icon {
    width: 80px;
    height: 80px;
  }

  .gwl-location-icon svg {
    width: 45px;
    height: 45px;
  }

  .gwl-office-card {
    margin-bottom: 2rem;
  }
}

/* === GreenWebLab Footer Styles === */
.gwl-footer {
  background-color: #000;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 40px;
  font-family: "Heebo", sans-serif;
}

.gwl-footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 20px;
}

.gwl-footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.gwl-footer h6 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #10b981;
  font-weight: 600;
}

.gwl-footer ul {
  list-style: none;
  padding-left: 0;
}

.gwl-footer ul li {
  margin-bottom: 8px;
}

.gwl-footer a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gwl-footer a:hover {
  color: #10b981;
}

.gwl-footer-social a {
  font-size: 1.3rem;
  margin-right: 12px;
  color: #aaa;
  transition: color 0.3s ease;
}

.gwl-footer-social a:hover {
  color: #10b981;
}

.gwl-footer hr {
  border-color: #222;
}

.gwl-footer .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.gwl-footer-rights {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.gwl-footer {
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .gwl-footer {
    text-align: center !important;
  }

  .gwl-footer-social a {
    margin: 0 10px;
  }
}

.work-hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

/* Animated Background */
.grid-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 217, 163, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 217, 163, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-subtitle {
  color: #00d9a3;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title-work {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, #00d9a3, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-contact {
  /* color: rgba(255, 255, 255, 0.8); */
  color: var(--gray-text);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Projects Section */
.projects-section {
  padding: 4rem 1rem;
  background: var(--lighter-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Project Card */
.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: var(--light-bg);
}

.project-client-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  max-width: 100px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir="rtl"] .project-client-logo {
  left: auto;
  right: 1rem;
}

.project-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-screenshot {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.project-tag {
  padding: 0.4rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 163, 0.1),
    rgba(59, 130, 246, 0.1)
  );
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.project-description {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 0.95rem;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .language-toggle {
    top: 15px;
    right: 15px;
  }

  [dir="rtl"] .language-toggle {
    right: auto;
    left: 15px;
  }

  .work-hero {
    min-height: 50vh;
    background-attachment: scroll;
  }

  .work-hero-content {
    padding: 2rem 1rem;
  }

  .work-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .projects-section {
    padding: 2rem 1rem;
  }

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

  .project-content {
    padding: 1.5rem;
  }

  .project-client-logo {
    max-width: 80px;
    max-height: 40px;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .language-toggle {
    top: 10px;
    right: 10px;
  }

  [dir="rtl"] .language-toggle {
    right: auto;
    left: 10px;
  }

  .project-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  .project-description {
    font-size: 0.9rem;
  }
}

/* Category specific colors */
.project-card[data-category*="web-dev"] .project-tag:first-child {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 163, 0.15),
    rgba(0, 217, 163, 0.05)
  );
  color: var(--primary-green);
}

.project-card[data-category*="ecommerce"] .project-tag:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.05)
  );
  color: var(--primary-blue);
}

/* Contact */
.gwl-contact-page .contact-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}
.gwl-contact-page .grid-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 217, 163, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 217, 163, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 30s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}
.gwl-contact-page .hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.gwl-contact-page .hero-title-contact {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
.gwl-contact-page .gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue),
    var(--primary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gwl-contact-page .hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
}
.gwl-contact-page .contact-section {
  padding: 4rem 1rem;
}
.gwl-contact-page .contact-box {
  max-width: 650px;
  margin: auto;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-green);
}
.form-control {
  border-radius: 18px;
  padding: 12px 18px;
  font-size: 1rem;
  height: 50px;
}
.gwl-contact-page .send-btn {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue)
  );
  border: none;
  padding: 12px 30px;
  color: white;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.send-btn:hover {
  opacity: 0.9;
}

/* Hero */
.gwl-about-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  min-height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.gwl-about-hero .gwl-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 217, 163, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 217, 163, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 35s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

.gwl-about-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.gwl-gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--primary-blue),
    var(--primary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gwl-about-subtitle {
  /* color: rgba(255, 255, 255, 0.85); */
  color: var(--gray-text);
  font-size: 1.15rem;
  max-width: 650px;
  margin: auto;
}

/* About Content */
.gwl-about-section {
  padding: 0.5rem 1rem;
  max-width: 900px;
  margin: auto;
}

.gwl-about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.gwl-about-list li {
  margin-bottom: 12px;
  padding-left: 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-text);
}

.gwl-about-list li::marker {
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .gwl-about-title {
    font-size: 2.2rem;
  }

  .gwl-about-subtitle {
    font-size: 1rem;
  }
}
