
:root {
  --primary: #dc2626;
  --secondary: #ec4899;
  --gold: #dc2626;
  --primary-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --dark-bg: #0f172a;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #333;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}
.navbar-brand img {
  max-height: 130px;
  object-fit: contain;
  overflow: visible;
}
.nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.nav-link:hover {
  color: var(--gold) !important;
}

/* Hero */
header.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
header.hero .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
header.hero h1 {
  font-size: 3.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
header.hero p {
  font-size: 1.2rem;
  color: #f1f1f1;
}

/* Buttons */
.btn-primary {
  background: var(--primary-gradient);
  border: none;
  font-weight: 600;
}
.btn-secondary {
  background: linear-gradient(45deg, #ff6b6b, #ffafcc);
  border: none;
  color: #fff;
  font-weight: 600;
}

/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

/* Cards */
.brand-card,
.service-card {
  background: #fff;
  border-radius: 20px;
  transition: 0.3s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  padding: 20px;
}
.brand-card:hover,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}


 /* Portfolio Section */
    .portfolioSection {
      background: #0e101c;
      padding: 60px 0;
      border-radius: 20px;
    }
    .portfolioWrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
      color: white;
      padding: 20px;
    }
    .portfolipLeft {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
    }
    .portfolipLeft h6 {
      text-transform: uppercase;
      color: #ccc;
    }
    .portfolipLeft h4 {
      font-size: 36px;
      font-weight: bold;
    }
    .portfolipLeft p {
      color: #bbb;
    }
    .portfolioRight {
      display: flex;
      flex: 1;
      gap: 20px;
      background: var(--primary-gradient);
      border-radius: 26px;
      padding: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .portfolioRight img {
      max-width: 45%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .service-card h5,
    .service-card p {
    color: #0C0C0CFF; /*important;  /* Force black color */
  }
  #contact p {
  text-decoration: none;
  border-bottom: none;
  color: #0C0C0CFF; /* optional: ensures it's not blue */
}

/* Swiper Styles */
.swiper .card {
  border-radius: 20px;
  overflow: hidden;
}
.swiper-slide img {
  transition: 1.2s ease;
}
.swiper-slide:hover img {
  transform: scale(1.05);
}

/* Contact */
form input, form textarea {
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #ddd;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  padding: 1px 0;
}
footer a {
  color: #ccc;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: 0.3s;
}
footer a:hover {
  color: var(--gold);
}

/* Responsive */
@media(max-width: 768px) {
  header.hero h1 {
    font-size: 2.2rem;
  }
  .portfolioWrapper {
    flex-direction: column;
    text-align: center;
  }
  .portfolioRight img {
    max-width: 80%;
  }
}
.custom-badge {
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
}






.btn-custom-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-custom-outline:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ctaSection {
  background: var(--primary-gradient);
}

.custom-light-bg {
  background-color: #f3f4f6;
}
.btn-primary {
  background: var(--primary-gradient) !important;
  color: white !important;
  font-weight: 600;
}
/* Apply gradient to all primary buttons */
.btn-primary,
.btn.btn-primary {
  background: var(--primary-gradient) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  filter: brightness(1.1);
}

/* Outline buttons */
.btn-outline-primary,
.btn.btn-outline-primary {
  background: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover,
.btn.btn-outline-primary:hover {
  background: var(--primary-gradient) !important;
  border-color: transparent !important;
  color: white !important;
}



