:root {
  /* --- THEME --- */
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --bg-accent: #020617;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --accent-bronze: #c27803;
  --accent-hover: #e38e04;
  --border-light: rgba(255, 255, 255, 0.05);

  --font-body: "Manrope", sans-serif;
  --font-header: "Oswald", sans-serif;
}

/* --- GLOBAL RESETS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-bronze {
  color: var(--accent-bronze);
}
.text-center {
  text-align: center;
}
.section-padding {
  padding: 100px 0;
}

/* Buttons */
.btn-bronze,
.btn-transparent {
  padding: 14px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-header);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-bronze {
  background-color: var(--accent-bronze);
  color: white;
}
.btn-bronze:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
}

.btn-transparent {
  border: 1px solid white;
  color: white;
  background: transparent;
}
.btn-transparent:hover {
  background: white;
  color: var(--bg-dark);
}

/* --- TOP BAR --- */
.top-bar {
  background-color: var(--bg-accent);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact {
  display: flex;
  gap: 20px;
}
.top-contact i {
  color: var(--accent-bronze);
  margin-right: 8px;
}
.top-social a {
  color: var(--text-muted);
  margin-left: 15px;
}
.top-social a:hover {
  color: var(--accent-bronze);
}

/* --- NAVIGATION --- */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 1.2rem 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo i {
  color: var(--accent-bronze);
}

/* Desktop Menu */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--accent-bronze);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2053&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* --- STATS SECTION --- */
.stats-section {
  background-color: var(--accent-bronze);
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h2 {
  font-size: 3rem;
  margin-bottom: 0;
  line-height: 1;
}
.stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8);
}

/* --- ABOUT --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-img {
  height: 600px;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  position: relative;
  /* DELETED: The 'after' pseudo-element that created the yellow border line */
}

/* --- SERVICES EXPANDED --- */
.section-title {
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-bronze);
  margin: 15px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.service-item {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent-bronze);
  transition: 0.3s;
}
.service-item:hover::before {
  height: 100%;
}
.service-item:hover {
  transform: translateY(-5px);
  background: #263345;
}
.service-icon {
  font-size: 2.5rem;
  color: var(--accent-bronze);
  margin-bottom: 25px;
}
.service-link {
  color: var(--accent-bronze);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: 20px;
  display: inline-block;
}

/* --- WHY CHOOSE US --- */
.features-section {
  background-color: var(--bg-card);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-box {
  text-align: center;
}
.feature-box img {
  width: 80px;
  margin: 0 auto 20px;
  filter: invert(1);
} /* Placeholder icons */
.feature-box h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* --- PORTFOLIO --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  group: true;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  filter: brightness(0.8);
}
.portfolio-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--bg-dark);
  padding: 40px;
  border: 1px solid var(--border-light);
}
.stars {
  color: var(--accent-bronze);
  margin-bottom: 15px;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  object-fit: cover;
}

/* --- FAQ SECTION --- */
.faq-section {
  background-color: var(--bg-dark);
}
.faq-item {
  background: var(--bg-card);
  margin-bottom: 15px;
  border: 1px solid var(--border-light);
}
.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--accent-bronze);
  font-size: 1.5rem;
}
.faq-item[open] summary::after {
  content: "-";
}
.faq-item p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- NEWSLETTER --- */
.newsletter {
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.newsletter-overlay {
  background: rgba(15, 23, 42, 0.9);
  padding: 100px 0;
  width: 100%;
  height: 100%;
}
.newsletter-form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  outline: none;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-box {
  padding: 40px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-bronze);
}
.contact-detail {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-detail i {
  font-size: 1.2rem;
  color: var(--accent-bronze);
  margin-top: 5px;
}

.form-control {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: var(--bg-dark);
  border: 1px solid #334155;
  color: var(--text-light);
  font-family: var(--font-body);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-bronze);
}

/* --- FOOTER --- */
footer {
  background: var(--bg-accent);
  padding: 80px 0 30px;
  border-top: 1px solid #1e293b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--accent-bronze);
  padding-left: 5px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: #1e293b;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: 0.3s;
}
.social-links a:hover {
  background: var(--accent-bronze);
}
.copyright {
  text-align: center;
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- RESPONSIVE CSS --- */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .intro-grid,
  .contact-grid,
  .stats-grid,
  .feature-grid,
  .portfolio-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .intro-img {
    height: 400px;
    order: -1;
  }
  .stats-section {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .top-contact {
    display: none;
  } /* Hide top info on mobile */
  .top-bar .container {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Mobile Navigation Style */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid var(--accent-bronze);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a,
  .nav-links .btn-bronze {
    display: block;
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
  }

  /* Class to trigger opening menu */
  .nav-links.active {
    max-height: 500px;
  }
}
.logo img {
  height: 80px;
  width: 270px;
  margin-right: 10px;

  
}

.logo2 img {
  height: 100px;
  width: 0px;
  margin-right: 10px;

}
