* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #2b2b2b;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px; /* header height */
}

@media (max-width: 768px) {
  .clients-track img {
    height: 28px;
  }
}


/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #1f1f1f;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #0f0f0f; /* your header bg */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

body {
  padding-top: 80px; /* same as header height */
}


.header nav a {
  color: #bbb;
  margin: 0 15px;
  text-decoration: none;
}
.logo img {
  height: 60px;      /* adjust: 30px–45px is ideal */
  width: auto;
}

.logo-frame {
  width: 120px;
  height: 40px;
  border: none;
}


.header nav a.active,
.header nav a:hover {
  color: #ff6a00;
}

.socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #ff6a00;
  transform: translateY(-3px);
}

.projects {
  padding: 80px 6%;
  background: linear-gradient(135deg, #06203c, #04192f);
}

.section-head .tag {
  color: #5da9ff;
  font-size: 14px;
  letter-spacing: 2px;
}

.section-head h2 {
  font-size: 42px;
  margin: 10px 0 40px;
}
.about {
  padding: 100px 6%;
  background: radial-gradient(circle at right, #0a2540, #020b16);
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

.about-content .tag {
  display: inline-block;
  background: #123a63;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #FF6A00;
}

.about-content p {
  color: #cfd8e3;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.clients {
  overflow: hidden;
  background: #0b0b0b;
  padding: 30px 0;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.clients-track img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.clients-track img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  
  100% {
    transform: translateX(-50%);
  }
}
animation: marquee 30s linear infinite;


/* Animation */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.stat-box {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  width: 140px;
}

.stat-box h3 {
  font-size: 28px;
  color: #FF6A00
;
}

.stat-box span {
  font-size: 13px;
  color: #aaa;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #1e90ff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}


/* horizontal scroll container */
.horizontal-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

/* hide scrollbar (clean UI) */
.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #1e90ff;
  border-radius: 10px;
}

/* project card */
.project-card {
  min-width: 360px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 20px;
  scroll-snap-align: start;
  position: relative;
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-card h3 {
  margin-bottom: 5px;
}

.project-card p {
  color: #555;
  font-size: 14px;
}

.project-card .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #1e90ff;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}



.btn-primary {
  background: #ff6a00;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("assets/background-logo-jishesh.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 15px 0;
}

.hero-content p {
  max-width: 500px;
  color: #ddd;
}

.intro {
  color: #ff6a00;
  letter-spacing: 2px;
}

/* SERVICES SECTION */
.services {
  padding: 80px 6%;
  background: #121212;
}

/* header stays same */
.services .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.services .section-head a {
  color: #ff6a00;
  text-decoration: none;
  font-size: 14px;
}

/* horizontal scroll */
.service-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
}

/* scrollbar */
.service-scroll::-webkit-scrollbar {
  height: 6px;
}
.service-scroll::-webkit-scrollbar-thumb {
  background: #ff6a00;
  border-radius: 10px;
}

/* cards */
.service-card {
  min-width: 340px;
  background: #1f1f1f;
  color: #fff;
  padding: 30px;
  border-radius: 14px;
  scroll-snap-align: start;
  transition: 0.3s;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #bbb;
}

.service-card:hover {
  background: #ff6a00;
  color: #000;
}


/* CONTACT */
.contact {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  background: #111;
  border: 1px solid #333;
  padding: 12px;
  color: #fff;
  border-radius: 8px;
}
.contact-img img {
  width: 80%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-left: auto;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}


/* FOOTER */
.footer {
  background: #0f0f0f;
  color: #ccc;
  padding: 60px 8% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3,
.footer h4 {
  color: #ff8c1a; /* ORANGE */
  margin-bottom: 15px;
}

.footer p {
  line-height: 1.7;
  font-size: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #ff8c1a;
}

.footer-socials a {
  margin-right: 12px;
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
}

.footer-socials a:hover {
  color: #ff8c1a;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  margin-right: 10px;
  color: #ccc;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #ff8c1a;
  color: #fff;
  border-color: #ff8c1a;
}
