
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-evenly;
  padding:15px 40px;
  background:white;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:30px;
}

.menu ul{
  display:flex;
  list-style:none;
  gap:30px;
  
}

.menu ul li a{
  text-decoration:none;
  color:black;
  font-size:18px;
}
.menu ul li a{
  text-decoration:none;
  color:black;
  font-size:18px;
  position:relative;
}

.menu ul li a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:black;
  left:0;
  bottom:-5px;
  transition:0.3s;
}

.menu ul li a:hover::after{
  width:100%;
}

.stt a{
  padding:10px 20px;
  border:1px solid black;
  text-decoration:none;
  color:black;
  border-radius:6px;
}

.stt :hover{
background-color: #000;
color: white;
}



.toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.toggle span{
  width:25px;
  height:3px;
  background:black;
}


@media (max-width:900px){

.menu{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  background:white;
  display:none;
}

.menu ul{
  flex-direction:column;
  align-items:center;
  padding:20px;
}

.menu ul li{
  padding:10px;
}

.menu.show{
  display:block;
}

.toggle{
  display:flex;
}

.stt{
  display:none;
}

}
/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.hero-text {
  max-width: 520px;
  animation: textIn 1s ease forwards;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}
button {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
}
.hero-image {
  animation: imageIn 1s ease forwards;
}
.hero-image img {
  max-width: 450px;
}
@keyframes textIn {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes imageIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    display: none; 
  }
  .hero-text h1 {
    font-size: 36px;
  }
}
/* mmm */
.logo-section {
  max-width: 1200px;
  margin: 30px auto;
  padding:15 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ddd;

}
.logo-section img {
  max-width: 100%;
  height: 28px;
  object-fit: contain;
  margin: auto;
}
.services {
  max-width: 900px;
  padding: 30px 20px;
  margin-left: 100px;
}
.badge {
  display: inline-block;
  background: #b6ff6b;
  color: #000;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.services p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .logo-section {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .logo-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .services p {
    font-size: 14px;
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
   padding-left: 20px;
   padding-right: 20px;
   color: #000;
}
.card {
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 200px;
  padding-left: 30px;
  padding-right: 30px;
}
.card img {
  max-width: 180px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.card.light { background: #f3f3f3;color: #000; }
.card.green { background: #b9ff66; color: #000;}
.card.darkr  { background: #191a23; color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  color: inherit;
}
.btn::before {
  content: "➜";
  background: #000;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
/* Themes */
.light {
  background: #f3f3f3;
  color: #000;
  border: 1px solid #ddd;
}
.green {
  background: #9cff57;
  color: #000;
}
.dark {
  background: #0f141a;
  color: #fff;
}
.dark .btn::before {
  background: #fff;
  color: #000;
}
.desktop-only{
      display:block;
    }
    @media (max-width:900px){
      .desktop-only{
        display:none;
      }
      .cta{
        flex-direction:column;
        text-align:center;
      }
    }
    .cta{
      max-width:1200px;
      margin:40px auto;
      padding:40px;
      background:#f6f6f6;
      border-radius:20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
    }
    .cta-text h2{
      font-size:32px;
      margin-bottom:10px;
    }
      .cta-text span{
        display:block;
        color:#555;
        padding-top: 2px;
        padding-bottom: 5px;
      }
  
      .cta-text
    button{
      padding:12px 20px;
      border:none;
      border-radius:8px;
      background:#111;
      color:#fff;
      cursor:pointer;
    }

    .card-image img{
      width:300px;
      height: 300px;
    }
    /* child */
    .case-wrapper{
  max-width:1200px;
  margin:60px auto;
  padding:0 20px;
}

.case-title{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:30px;
}

.case-title span{
  background:#7CFF00;
  padding:6px 14px;
  border-radius:6px;
  font-weight:bold;
}

.cards1{
  background:#0f1117;
  padding:40px;
  border-radius:20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.child{
  color:#ccc;
  animation: fadeUp .8s ease forwards;
}

.child h4{
  color:#fff;
  margin-bottom:10px;
}

.child a{
  color:#7CFF00;
  text-decoration:none;
  font-size:14px;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .cta{
    flex-direction:column;
    text-align:center;
  }
  .cards1{
    grid-template-columns:1fr;
  }
}   
.accordion{
  max-width:1200px;
  margin:auto;
  padding:20px;
}

.box{
  background:#fff;
  border:1px solid #222;
  border-radius:16px;
  margin-bottom:12px;
  overflow:hidden;
  transition:all 0.4s ease;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
}

.box.active{
  background:#9cff6b;
}

.head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px;
}

.head span{
  font-weight:bold;
}

.head h3{
  flex:1;
  font-size:16px;
}

.head button{
    width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid #555;
  background: #eee;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  color: #000;
   display: flex;
  justify-content: center;
  align-items: center;

}
.head button:hover{
 background: #ccc;
}

.content{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  transition:max-height 0.4s ease, opacity 0.4s ease;
  opacity:0;
}

.box.active .content{
  max-height:150px;
  opacity:1;
  padding-bottom:16px;
}

/* 📱 Mobile */
@media(max-width:900px){
  .head h3{
    font-size:14px;
  }
}
.case-title{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:30px;

}

.team-section {
  padding: 60px 20px;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 25px;
  border: 2px solid #222;
  box-shadow: 0 6px 0 #222;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.card-top {
  display: flex;
  align-items: center;
  position: relative;
}

.profile {
  position: relative;
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.shape {
  position: absolute;
  width: 75px;
  height: 75px;
  background: #8ef05c;
  border-radius: 40% 60% 50% 70%;
  top: -5px;
  left: -5px;
  z-index: 1;
}

.info h3 {
  font-size: 18px;
}

.role {
  font-size: 14px;
  color: #666;
}

.linkedin {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: black;
  color: #8ef05c;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.desc {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.team-btn {
  text-align: right;
  max-width: 1200px;
  margin: 40px auto 0;
}

.team-btn button {
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.team-btn button:hover {
  background: #333;
}

/* Responsive */

@media (max-width: 900px) {
  .team-btn {
    text-align: center;
    }
}
 /* Section */
.testimonials {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

/* Heading */
.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tag {
  background: #7CFF00;
  color: #000;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 6px;
}

.section-head p {
  color: #555;
  font-size: 14px;
}

/* Box */
.testimonial-box {
  margin-top: 40px;
  background: #11141a;
  padding: 40px 20px;
  border-radius: 30px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

/* Card */
.card {
  min-width: 280px;
  background: transparent;
  border: 1px solid #7CFF00;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
}

.card.active {
  background: #161a22;
}

.name {
  display: block;
  margin-top: 15px;
  color: #7CFF00;
  font-weight: bold;
}

.card small {
  color: #aaa;
}

/* Controls */
.controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.controls button {
  background: none;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #555;
  border-radius: 50%;
}

.dots span.active {
  background: #7CFF00;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-box {
    padding: 30px 10px;
  }

  .card {
    min-width: 240px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
/* }. */
}
/*  */
/* SECTION */
.contact-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

/* HEADER */
.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tag {
  background: #7CFF00;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 6px;
}

.section-head p {
  color: #555;
  font-size: 14px;
}

/* BOX */
.contact-box {
  margin-top: 40px;
  background: #f2f2f2;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  gap: 40px;
  overflow: hidden;
}

/* FORM */
.contact-form {
  flex: 1;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.radio-group input {
  display: none;
}

.radio-group span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #000;
  transition: 0.3s;
}

.radio-group input:checked + span {
  background: #7CFF00;
  transform: scale(1.2);
}

/* INPUTS */
label {
  display: block;
  margin: 12px 0 6px;
  font-size: 14px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  resize: none;
  height: 120px;
}

button {
  margin-top: 20px;
  background: #11141a;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.msg {
  margin-top: 10px;
  font-size: 13px;
}

/* IMAGE BACKGROUND */
.image-area {
  flex: 1;
  border-radius: 24px;
  background-image: url("ceramic.jpg"); /* 👈 اپنی ceramic image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: imageFade 1s ease;
}

/* IMAGE ANIMATION */
@keyframes imageFade {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-box {
    flex-direction: column;
  }

  .image-area {
    display: none;   /* 👈 MOBILE پر image غائب */
  }
}
/* HEADER */
.header{
  background:linear-gradient(135deg,#111827,#1f2937);
  padding:30px 8%;
  color:white;
  border-radius: 20px 20px 0 0;
  
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:22px;
  font-weight:bold;
}

.nav-menu{
  display:flex;
  gap:25px;
}

.nav-menu a{
  color:#d1d5db;
  text-decoration:none;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#84cc16;
}

.nav-social i{
  margin-left:15px;
  cursor:pointer;
  transition:0.3s;
}

.nav-social i:hover{
  color:#84cc16;
  transform:scale(1.2);
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* FOOTER */
  .footer{
  background:linear-gradient(135deg,#111827,#1f2937);
  color:white;
  padding:50px 8%;
 
}

.footer-container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
} 
 .azam-box{ 
  background:#84cc16;
  color:black;
  display:inline-block;
  padding:6px 12px;
  border-radius:6px;
  margin-bottom:15px;
  font-weight:bold;
  animation:pulse 2s infinite;
} */

.footer-left p{
  margin-bottom:8px;
  color:#d1d5db;
}

.subscribe-box{
  background:#1f2937;
  padding:20px;
  border-radius:12px;
  display:flex;
  gap:10px;
  transition:0.3s;
}

.subscribe-box:hover{
  transform:translateY(-5px);
}

.subscribe-box input{
  padding:10px;
  border-radius:8px;
  border:1px solid #374151;
  background:#111827;
  color:white;
  outline:none;
}

.subscribe-box button{
  padding:10px 15px;
  border:none;
  border-radius:8px;
  background:#84cc16;
  color:black;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.subscribe-box button:hover{
  background:#a3e635;
}

.footer-bottom{
  border-top:1px solid #374151;
  margin-top:40px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  color:#9ca3af;
}


.footer-bottom a{
  color:#9ca3af;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:#84cc16;
}  

 @keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.1);}
  100%{transform:scale(1);}
} 

 
@media(max-width:768px){

  .nav-menu{
    position:absolute;
    top:70px;
    right:0;
    background:#1f2937;
    flex-direction:column;
    width:200px;
    padding:20px;
    display:none;
  }

  .nav-menu.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .nav-social{
    display:none;
  }

  .footer-container{
    flex-direction:column;
  }

  .subscribe-box{
    flex-direction:column;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
    }} 