
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0e1116;
  color: #f4f4f4;
}


.logo {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}



.navbar a {
  color: #f4f4f4;
  margin-left: 30px;
  text-decoration: none;
  font-size: 18px; /* Bigger font */
  font-weight: 500;
}

.navbar a:hover {
  color: #ffa500;
}

.hero {
  position: relative;
  height: 70vh; /* 🔼 was probably 60vh or less */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: 48px;
  color: #ffa500;
}

.hero p {
  font-size: 20px;
  color: #ccc;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -1;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.dark {
  background-color: #181d24;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.section-subtitle {
  font-size: 18px;
  max-width: 800px;
  margin: 10px auto 30px;
  color: #ccc;
}

.center-button {
  margin-bottom: 40px;
}

.btn-primary {
  padding: 12px 24px;
  background-color: #2563eb;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}


.service-card:hover {
  transform: translateY(-5px);
}

.service-card.highlight {
  background-color: #0033a2;
  color: white;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1a1d23;
  color: #aaa;
}
.icon-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.icon-card {
  background: #3c83ff;
  padding: 15px 25px;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s, transform 0.3s;
}

.icon-card:hover {
  background: #3d3f46;
  transform: scale(1.05);
}

.card:hover {
  transform: translateY(-5px);
  background-color: #ffa500;
  color: #000;
}



.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  color: #ffa500;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  color: #f4f4f4;
}
.service-card {
  background-color: #1f242d;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: left;
  color: #eee;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  max-width: 420px; /* or even 450px */
  max-height: 620px;
  flex: 1 1 420px;   /* Let it grow while staying responsive */
  
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-label {
  font-weight: bold;
  background-color: #2e4cff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 16px;
}
.service-media {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.client-slider {
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  width: max-content; /* New: auto-expands */
  animation: scroll 20s linear infinite;
  gap: 0; /* ← remove spacing between logos */
}

.slider-track img {
  width: 120px;
  height: auto;
  margin-right: 40px; /* Add space here if needed, NOT in gap */
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s;
}

.slider-track img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: none;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: #2a2d33;
  color: #f4f4f4;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #ffa500;
  color: #111317;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.portfolio-item {
  background: #1a1d23;
  padding: 15px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.1);
  text-align: center;
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  object-fit: cover;
  height: 180px;
}

.portfolio-item h3 {
  font-size: 16px;
  color: #f4f4f4;
}
.media-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.media-modal .modal-content {
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

.media-modal img,
.media-modal video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

.media-modal .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.media-modal img,
.media-modal video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  display: block;
}

#modalImage {
  display: none;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
header {
 
  top: 0;
  left: 0;
  width: 100%;
  background: #181d24; /* translucent black */
  z-index: 1000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.logo img {
  height: 100px;
}



nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 16px;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* 🔻 Mobile view styles */

@media (max-width: 768px) {
  nav {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-direction: column;
    background-color: rgba(17, 17, 17, 0.7);
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(4px);
  }
 


  nav.show {
	  top: 80px;
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav a {
    display: block;
    padding: 10px 15px;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  nav a:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }

  .hamburger {
    display: block;
  }
}
.contact-section {
  background-color: #0e0f11;
  color: white;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-info a {
  color: #ff9900;
  text-decoration: none;
}

.social-icons a img {
  width: 30px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  background-color: #1a1b1f;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button {
  background-color: #ff9900;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e68900;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


