html {
  scroll-behavior: smooth;
}

:root{
  --bg:#000;
  --card:#0b0b0b;
  --border:#1f1f1f;
  --text:#fff;
  --muted:#9ca3af;
  --accent:#f97316;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Roboto', sans-serif;
   overflow-x:hidden;
  width:100%;
}

h1,h2,h3,h4,h5,h6{
  font-family:'Lato', sans-serif;
}

p{
  color:var(--muted);
}

.hero-section {
  background: #000;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  color: #ccc;
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 30px;
}

.btn-custom {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #fff;
  color: #000;
}

/* IMAGE GRID */
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 140px);
  gap: 15px;
}

.img-box {
  border-radius: 14px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CUSTOM SHAPES (DESIGN MATCH) */
.img-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.img-2 {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.img-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.img-4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.img-5 {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

.img-6 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .img-1,
  .img-2,
  .img-3,
  .img-4,
  .img-5,
  .img-6 {
    grid-column: auto;
    grid-row: auto;
  }
}









/* ABOUT SECTION */
.about-section {
  background: #000;
  color: #fff;
  padding: 120px 0;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h6 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-block p {
  color: #bfbfbf;
  max-width: 520px;
}

.about-block a {
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
}

/* RIGHT CARDS */
.about-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s;
}

.about-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.about-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 12px;
}

.about-card:hover img {
  transform: scale(1.08);
}

/* PRODUCTS */
.products-section {
  background: #000;
  padding: 120px 0;
}

.products-section h6 {
  color: #f5a623;
  letter-spacing: 1px;
}

.products-section h2 {
  color: #fff;
  margin-bottom: 60px;
}

.product-card {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  transition: 0.4s;
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s;
}

.product-card:hover {
  border-color: #fff;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-images {
    margin-top: 50px;
  }
}

.product-item {
  display: none;
}










/* ===== TESTIMONIAL ===== */
.testimonial{
  font-size:18px;
  color:#ddd;
  border-left:3px solid var(--accent);
  padding-left:20px;
}

.testimonial span{
  display:block;
  margin-top:10px;
  color:var(--muted);
}

.testimonial-img{
  max-width:100%;
  border-radius:10px;
}

/* ===== LOGO SLIDER ===== */
.logo-slider {
  overflow: hidden;
  margin-top: 25px;
}

.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 15s linear infinite;
}

.logo-track img {
  height: 40px;
  opacity: 0.7;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
}

/* continuous animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}





.values{
  text-align:center;
}

.value-grid{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

@media(max-width:992px){
  .value-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .value-grid{
    grid-template-columns:1fr;
  }
}

.value-card{
  padding:48px 32px;
  min-height:320px;
  background:#050505;
  border:1px solid #1f1f1f;
  transition:.3s;
  position:relative;   /* 🔥 REQUIRED */
  overflow:hidden; 
}


/* corner ticks (exact image feel) */
.value-card::before,
.value-card::after{
  content:"";
  position:absolute;
  width:12px;
  height:12px;
  border:1px solid #1f1f1f;
}

.value-card::before{
  top:-1px;
  left:-1px;
  border-right:none;
  border-bottom:none;
}
.value-card h3{
  font-family:'Lato', sans-serif;
  font-size:18px;
  margin-bottom:14px;
}

.value-card p{
  font-size:14px;
  line-height:1.7;
  color:#9ca3af;
}

/* hover – very subtle */


.value-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}

.value-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 35px rgba(249,115,22,.2);
}
.icon{
  width:44px;
  height:44px;
  margin:0 auto 26px;
}

.icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:#e5e7eb;
  stroke-width:1.2;
}




@media (max-width:768px){
  .about-section{
    padding-top:60px;
  }

  .about-title{
    font-size:36px;
    text-align:center;
  }

  .about-content p{
    text-align:center;
    margin:0 auto;
  }

  .about-image{
    padding:12px;
  }
}






.faq-section{
  border-top:1px solid #1f1f1f;
}

.faq-title{
  font-size:38px;
  line-height:1.1;
  margin-bottom:20px;
}

.faq-desc{
  font-size:14px;
  color:#9ca3af;
  max-width:380px;
}

/* RIGHT SIDE */
.faq-item{
  border-bottom:1px solid #1f1f1f;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.faq-question span{
  font-size:18px;
}

.faq-answer{
  display:none;
  padding-bottom:16px;
}

.faq-answer p{
  font-size:13px;
  color:#9ca3af;
}

/* MOBILE FIX */
@media(max-width:991px){
  .faq-title{
    font-size:32px;
  }

  .faq-desc{
    margin-bottom:30px;
  }
}





/* ===== SERVICES ===== */
.service-card{
  background:var(--card);
  border:1px solid var(--border);
  padding:20px;
  transition:.4s ease;
}

.service-card img{
  width:100%;
  margin-bottom:10px;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:var(--accent);
}

.service-modal{
  background:#0b0b0b;
  color:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
}

.service-modal img{
  max-height:300px;
  object-fit:contain;
}

.service-modal p{
  color:#cfcfcf;
  max-width:600px;
  margin:auto;
}


.client{
  text-align:center;
  max-width:700px;
  margin:auto;
  padding:50px 20px;
}



#showMoreBtn {
  background-color: #f97316;
  border: none;
  color: #000;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#showMoreBtn:hover {
  background-color: #d9901c; /* thora dark shade hover par */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

#showMoreBtn:active {
  transform: scale(0.97);
}


h2{
  font-size:clamp(36px,4vw,70px);
  margin-bottom:14px;
}

