* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f1a 50%, #0f0a1a 100%);
  color: #e0e0e0;
  overflow-x: hidden;
  background-attachment: fixed;
  padding-top: 70px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 102, 0, 0.2);
  z-index: 999;
  animation: slide-down 0.6s ease-out;
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.navbar-logo img {
  position: relative;
  max-width: 80%;
  height: auto;
}

.navbar-logo:hover {
  color: #ff6600;
}

.navbar-logo .logo-text-red {
  color: #ff3333;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-link:hover {
  color: #ff6600;
}

.navbar-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ff6600, #ff3333);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-btn {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #ff3333 0%, #ff5c5c 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

.navbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 51, 51, 0.6);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggle span {
  width: 25px;
  height: 2px;
  background: #ff6600;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(255, 51, 51, 0.5),
      0 0 40px rgba(255, 51, 51, 0.3);
  }
  50% {
    box-shadow:
      0 0 30px rgba(255, 51, 51, 0.8),
      0 0 60px rgba(255, 51, 51, 0.5);
  }
}

@keyframes ripple-effect {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(4);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}

.particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.particle-1 {
  top: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.3), transparent);
  animation: pulse-glow 4s ease-in-out infinite;
}

.particle-2 {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(255, 51, 51, 0.3), transparent);
  animation: pulse-glow 4s ease-in-out infinite 1s;
}

.particle-3 {
  top: 50%;
  left: 33%;
  width: 256px;
  height: 256px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.2), transparent);
  animation: pulse-glow 4s ease-in-out infinite 0.5s;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: slide-up 0.6s ease-out;
}

.hero-content h1 .text-white {
  color: white;
}

.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, #ff6600 0%, #ff8c3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.6;
  animation: slide-up 0.6s ease-out 0.1s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: slide-up 0.6s ease-out 0.2s both;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #ff3333 0%, #ff5c5c 100%);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px rgba(255, 51, 51, 0.5),
    0 0 40px rgba(255, 51, 51, 0.3);
  animation: glow-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

.hero-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  color: #808080;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ff6600;
  transform: scale(1.3) rotate(8deg);
}

.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.3), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-image img {
  position: relative;
  z-index: 10;
  max-width: 160%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
}

/* .floating-btn {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff3333 0%, #ff5c5c 100%);
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
      z-index: 20;
    } */

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
}

/* ===== ABOUT SECTION ===== */
.about {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(
    to bottom right,
    #1a1a1a 0%,
    #0f0f0f 50%,
    #1a0f1a 100%
  );
  overflow: hidden;
}

.about-particles {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.about-particle {
  position: absolute;
  top: 200px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite 0.5s;
}

.about-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.3), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.about-image img {
  position: relative;
  z-index: 10;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  color: #ff6600;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slide-up 0.6s ease-out;
}

.about-title .highlight {
  background: linear-gradient(135deg, #ff6600 0%, #ff8c3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.125rem;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: slide-up 0.6s ease-out 0.1s both;
}

/* ===== SERVICES SECTION ===== */
.services {
  position: relative;
  padding: 5rem 2rem;
  background: #000000;
  overflow: hidden;
}

.services-particles {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.services-particle-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.services-particle-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 51, 51, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite 1s;
}

.services-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    to bottom right,
    rgba(30, 30, 40, 0.8),
    rgba(20, 20, 30, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  group: true;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(255, 102, 0, 0),
    rgba(255, 51, 51, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 102, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #ff9933;
}

.service-description {
  font-size: 0.875rem;
  color: #b0b0b0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service-card:hover .service-description {
  color: #d0d0d0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(
    to bottom right,
    #0f0f0f 0%,
    #1a1a1a 50%,
    #0f0f0f 100%
  );
  overflow: hidden;
}

.testimonials-particles {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.testimonials-particle {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(80px);
}

.testimonials-particle-1 {
  top: 50%;
  left: 0;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent);
  animation: pulse-glow 4s ease-in-out infinite;
}

.testimonials-particle-2 {
  bottom: -100px;
  right: 0;
  background: radial-gradient(circle, rgba(255, 51, 51, 0.15), transparent);
  animation: pulse-glow 4s ease-in-out infinite 1s;
}

.testimonials-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.05) 0%,
    rgba(255, 51, 51, 0.05) 100%
  );
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  animation: slide-up 0.6s ease-out;
}

.testimonial-card:hover {
  border-color: rgba(255, 102, 0, 0.5);
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.1) 0%,
    rgba(255, 51, 51, 0.1) 100%
  );
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.star {
  color: #ff6600;
}

.testimonial-text {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6600, #ff3333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-info h4 {
  color: white;
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-author-info p {
  color: #808080;
  font-size: 0.8rem;
  margin: 0;
}

/* ===== RECENT WORK SECTION ===== */
.recent-work {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(
    to bottom right,
    #0f0f0f 0%,
    #1a1a1a 50%,
    #0f0f0f 100%
  );
  overflow: hidden;
}

.recent-work-particles {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.recent-work-particle {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(80px);
}

.recent-work-particle-1 {
  top: 0;
  right: 0;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent);
  animation: pulse-glow 4s ease-in-out infinite;
}

.recent-work-particle-2 {
  bottom: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 51, 51, 0.15), transparent);
  animation: pulse-glow 4s ease-in-out infinite 1s;
}

.recent-work-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.recent-work-header {
  text-align: center;
  margin-bottom: 3rem;
}

.recent-work-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: slide-up 0.6s ease-out;
}

.recent-work-header p {
  font-size: 1rem;
  color: #808080;
  max-width: 600px;
  margin: 0 auto;
  animation: slide-up 0.6s ease-out 0.1s both;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-item {
  position: relative;
  height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  animation: slide-up 0.6s ease-out;
  group: portfolio;
}

.portfolio-item:nth-child(1) {
  grid-column: span 1;
  background: linear-gradient(135deg, #00d4ff 0%, #00ffb3 100%);
}

.portfolio-item:nth-child(2) {
  grid-column: span 1;
  background: linear-gradient(135deg, #ffb700 0%, #ff6b00 100%);
}

.portfolio-item:nth-child(3) {
  grid-column: span 1;
  background: linear-gradient(135deg, #ff00cc 0%, #6600ff 100%);
}

.portfolio-item:nth-child(4) {
  grid-column: span 1;
  background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
}

.portfolio-item:nth-child(5) {
  grid-column: span 1;
  background: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
}

.portfolio-item:nth-child(6) {
  grid-column: span 1;
  background: linear-gradient(135deg, #ffaa00 0%, #ff5500 100%);
}

.portfolio-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 10;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.portfolio-text {
  color: white;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  z-index: 15;
}

.portfolio-item:hover .portfolio-text {
  opacity: 1;
  transform: scale(1);
}

.portfolio-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-text p {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.portfolio-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 102, 0, 0.5);
}

.pagination-dot.active {
  background: #ff6600;
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

.pagination-dot:hover {
  background: rgba(255, 102, 0, 0.6);
}

/* ===== TRUST SECTION ===== */
.trust {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(
    to bottom right,
    #1a1a1a 0%,
    #0f0f0f 50%,
    #1a0f1a 100%
  );
  overflow: hidden;
}

.trust-particles {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.trust-particle {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.trust::before {
  content: "";
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 102, 0, 0.5),
    transparent
  );
  z-index: 5;
}

.trust-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.trust-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.trust-description {
  font-size: 1.125rem;
  color: #808080;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.logos-wrapper {
  display: flex;
  justify-content: center;
}

.logos-container {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem 3rem;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  backdrop-filter: blur(10px);
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.logo-box {
  width: 120px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.8),
    rgba(255, 51, 51, 0.8)
  );
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 1rem 2rem 2rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-border {
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 102, 0, 0.8),
    transparent
  );
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  animation: fade-in 0.8s ease-out 0.3s both;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b0b0b0;
  font-weight: 600;
}

.footer-contact i {
  color: #ff6600;
  font-size: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link {
  color: #808080;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  color: #ff6600;
  transform: scale(1.3) rotate(8deg);
}

.footer-text {
  color: #ffffff;
  font-size: 0.875rem;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* ===== CTA BAR ===== */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #ff6600, #ff3333, #ffaa00);
  z-index: 1000;
}

/* ===================================================================
 * # portfolio
 *
 * ------------------------------------------------------------------- */
.s-portfolio {
  background-color: var(--color-bg);
  padding-top: calc(7 * var(--space));
  padding-bottom: 0;
}

/* ------------------------------------------------------------------- 
 * ## portfolio list
 * ------------------------------------------------------------------- */
.s-portfolio__list {
  max-width: calc(var(--width-max) + 40px);
  padding-top: var(--vspace-1_5);
}

.folio-item {
  position: relative;
  overflow: hidden;
}

.folio-item__caption {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .navbar {
    height: 60px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-logo {
    font-size: 1.25rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recent-work-header h2 {
    font-size: 1.75rem;
  }

  .portfolio-item {
    height: 200px;
  }

  .hero-container,
  .about-container,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-title,
  .services-header h2,
  .trust-title {
    font-size: 2rem;
  }

  .hero-image,
  .about-image {
    height: 350px;
  }

  .floating-btn {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
    bottom: 1rem;
    right: 1rem;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .footer-contact,
  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .logos-container {
    padding: 1.5rem 2rem;
  }

  .logos-grid {
    gap: 1rem;
  }

  .logo-box {
    width: 100px;
    height: 50px;
  }
}


/* 📱 Mobile only: content first, image second */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .about-content {
    grid-row: 1; /* show content first */
    text-align: center;
  }

  .about-image {
    grid-row: 2; /* show image after content */
    height: auto;
    margin-top: 2rem;
  }

  .about-image img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
}


/* 📱 Mobile only: content first, image second */
@media (max-width: 600px) {
  .about-container {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .about-content {
    grid-row: 1; /* show content first */
    text-align: center;
  }

  .about-image {
    grid-row: 2; /* show image after content */
    height: auto;
    margin-top: 2rem;
  }

  .about-image img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
}


/* 📱 Mobile only: content first, image second */
@media (max-width: 400px) {
  .about-container {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .about-content {
    grid-row: 1; /* show content first */
    text-align: center;
  }

  .about-image {
    grid-row: 2; /* show image after content */
    height: auto;
    margin-top: 2rem;
  }

  .about-image img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
}





/* ------------------------------------------------------------------- 
 * responsive:
 * portfolio
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-portfolio {
        padding-top: calc(5 * var(--space));
    }
    .folio-item__thumb a::after {
        font-size: 2rem;
    }
    .folio-item__title {
        font-size: 1.5rem;
    }
    .folio-item__cat {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 800px) {
    .folio-item__thumb a::after {
        font-size: 3rem;
    }
    .folio-item__title {
        font-size: 1.6rem;
    }
    .folio-item__cat {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .folio-item__thumb a::after {
        font-size: 2rem;
    }
    .folio-item__title {
        font-size: 1.5rem;
    }
    .folio-item__cat {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 400px) {
    .s-portfolio {
        padding-top: var(--vspace-4);
    }
}