/* ===== COMMON ===== */
: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);
}

.container{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

h2{
  font-size:clamp(36px,4vw,70px);
  margin-bottom:14px;
}

/* ===== ABOUT ===== */

.about-section{
  padding-top:120px;
}

.about-content{
  position:relative;
}

.about-tag{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}

.about-title{
  font-size:clamp(42px,5vw,80px);
  margin:10px 0 20px;
}
 


.about-image{
  /* border:1px solid var(--border); */
  /* padding:20px; */
}

.about-image img{
  width:100%;
  transition:.4s ease;
}

.about-image:hover img{
  transform:scale(1.05);
}

/* ===== 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;
}


/* ===== 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;
  }
}


.container{
  max-width:1200px;
  margin-inline:auto;
  padding-inline:20px;
  padding-block:80px;
  overflow:hidden;   /* 🔥 KEY */
}




.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;
  }
}



/* ABOUT vertical divider */
.about-section .row{
  position: relative;
}

/* vertical line */
.about-section .row::after{
  content:"";
  position:absolute;
  top:50%;
  left:41.5%;              /* image (5/12) ke baad */
  transform:translateY(-50%);
  width:1px;
  height:60%;
  background:rgba(255,255,255,0.6);
}

/* mobile par line hide */
@media(max-width:991px){
  .about-section .row::after{
    display:none;
  }
}
