:root {
  --primary: #FF6700;
  --dark: #0F172A;
  --light: #F8F9FA;
  --text: #1E293B;
}

html{
    scroll-behavior: smooth;
}

body.dark {
  --light: #0F172A;
  --text: #F8F9FA;
  background: #0F172A;
  color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: white;
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: 0.3s;
}

body.dark .header {
  background: #1e293b;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo  {
  color: var(--primary);
  font-size: 25px;
  font-weight: 900;
}

.logo  span{
  color: black;
  font-size: 25px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

#themeToggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,103,0,0.7), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  left: -100px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e85a00;
}

.section {
  padding: 100px 0;
  margin-bottom: 100px;
}

.service-grid {
  display: flex;
  gap: 30px;
}

.service-card {
  background: var(--light);
  padding: 40px;
  text-align: center;
  flex: 1;
  border-radius: 8px;
  transition: 0.3s;
}

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

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* MOBILE */
@media(max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .service-grid {
    flex-direction: column;
  }

}

.bg-light { background: #f4f4f4; }

.grid-3 {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}

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

.process-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  text-align: center;
}

.process-grid span {
  font-size: 40px;
  color: var(--primary);
  font-weight: bold;
}

.stats {
  background: var(--primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.founder img {
  width: 20%;
  border-radius: 10px;
  float: right;
  position: relative;
  top: -40px;
}

@media(max-width: 768px){
  .grid-3, .process-grid, .about-grid {
    flex-direction: column;
  }
}

/* CONTACT SECTION */

.contact-section {
  background: var(--light);
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 36px;
}

.contact-right {
  flex: 1.2;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

body.dark .contact-form {
  background: #1e293b;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.full-width {
  width: 100%;
}

.full-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
}

#formMessage {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}

/* MOBILE FIX */
@media(max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}

/* FOOTER */

.footer {
  background: #0F172A;
  color: white;
  padding-top: 70px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-col {
  flex: 1;
}

.footer-logo span {
  color: var(--primary);
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer p {
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a i {
  margin-right: 8px;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.7;
}

/* MOBILE */
@media(max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* DEVELOPMENT MARQUEE */

.dev-banner {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #FF6700, #ff8533);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  z-index: 2000;
  font-size: 14px;
  font-weight: 500;
}

.dev-marquee {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: scrollBanner 18s linear infinite;
}

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

/* PUSH HEADER DOWN */
.header {
  top: 36px; /* adjust if needed */
}