@charset "utf-8";
/* CSS Document */
/* ========================= */
/*   GLOBAL STYLES           */
/* ========================= */
body {
  margin: 0;
  background: #1a1a1a;
  color: #e6e6e6;
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.section-header h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: #fff;
}

.section {
  padding: 60px 20px;
}

/* ========================= */
/*   SITE 7 NAVBAR           */
/* ========================= */

.nav7 {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #111;
  border-bottom: 2px solid #ffb400;
}

.nav7-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav7-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.nav7-links a {
  margin-left: 26px;
  text-decoration: none;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  position: relative;
  padding-bottom: 4px;
}

.nav7-links a:hover,
.nav7-links a.active {
  color: #fff;
}

.nav7-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #ffb400;
  transition: width 0.25s ease;
}

.nav7-links a:hover::after,
.nav7-links a.active::after {
  width: 100%;
}

/* ========================= */
/*   HERO SECTION            */
/* ========================= */
.hero7 {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  background: #111;
}

.hero7-inner {
  flex: 1;
  padding: 80px 60px;
}

.hero7-inner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero7-inner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffb400;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.hero7-image {
  flex: 1;
  background-image: url('../assets/images/img5.jpg');
  background-size: cover;
  background-position: center;
}


/* ========================= */
/*   VALUE BLOCKS            */
/* ========================= */
.value-blocks {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: #111;
}

.value-item {
  text-align: center;
  padding: 20px 30px;
  border-left: 3px solid #ffb400;
}

.value-item h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}


/* ========================= */
/*   SERVICES SLIDER         */
/* ========================= */
.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.service-card {
  min-width: 280px;
  background: #2b2b2b;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ffb400;
  color: #fff;
}

.service-card h3 {
  margin-top: 15px;
  font-size: 1.4rem;
}

.service-video,
.service-img {
  width: 100%;
  height: 240px;
  border-radius: 6px;
  background: #444;
  object-fit: cover;
}

.gradient-a .service-img {
  background-image: url('../assets7/images/img1.jpg');
}

.gradient-c .service-img {
  background-image: url('../assets7/images/img3.jpg');
}

.gradient-e .service-img {
  background-image: url('../assets7/images/img5.jpg');
}

.gradient-f .service-img {
  background-image: url('../assets7/images/img4.jpg');
}

.service-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 240px; 
}

/* ========================= */
/*   PROJECTS GRID           */
/* ========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #2b2b2b;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ffb400;
}

.img-placeholder {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 15px;
}

.accent-line {
  width: 40px;
  height: 4px;
  background: #ffb400;
  margin: 10px 0;
}




/* ========================= */
/*   CTA SECTION             */
/* ========================= */
.cta7 {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.cta7 h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.cta7 p {
  margin-bottom: 20px;
  color: #ccc;
}

