
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#fce9e9;
  color:#222;
}

.d1st{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 5%;
  background: linear-gradient(hwb(229 2% 61%), #5776ff);
}

.logo img{
  width:100px; 
  border-radius: 12px;
}

.D2nd ul{
  display:flex;
  gap:25px;
  list-style:none;
  padding: 15px 30px;
  
}

.D2nd ul li a{
  text-decoration:none;
  color:white;
  font-size:22px;
  transition:0.3s;
  
}

.D2nd ul li a:hover{
  color:#dd0b71;
  border: solid rgb(188, 11, 11) 2px;
  border-radius: 10px;
  padding: 5px;
  background-color: white;
}

.menu-toggle{
  display:none;
  font-size:28px;
  color:white;
  cursor:pointer;
}

.close-menu{
  display: none;
}

.taiye1{
  position:relative;
}

.taiye2{
  height:100vh;
  background:url('images/loom\ background.webp')center/cover no-repeat;
}

.taiye2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.taiye2{
  position: relative;
}

#taiyetext{
  position: relative;
  z-index: 2;
}

#taiyetext{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:white;
}


#taiyetext h1{
  font-size:50px;
  font-weight:bold;
  display:block;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.9;
}

#taiyetext p{
  font-size:25px;
  margin-top:10px;
  line-height: 1.9;
}

.btn {
  background: gold;
  color: black;
  padding: 12px 25px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 50px;
  
  border: groove rgb(188, 52, 52) 7px;
}

.btn:hover {
  background: white;
  color: black;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* dark overlay */
}

.hero-text {
  position: relative;
  z-index: 2;
}


.hero-text {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
@media (max-width:768px){

  .taiye2{
    height: 50vh; /* reduce height */
    background-position: center;
    
  }

  #taiyetext h1{
    font-size: 22px; /* reduce from 50px */
    font-weight: 700;
    line-height: 1.9;
  }

  #taiyetext p{
    font-size: 17px; /* reduce from 25px */
    line-height: 1.9;
  }

  #taiyetext{
    width: 90%;
  }

  .btn{
    padding: 10px 20px;
    font-size: 8px;
    margin-top: 50px;
  }

}

/* SLIDER CONTAINER */
.carousel {
  width:90%;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 20px;
  
}

.track {
  display: flex;
  gap:10px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* 👇 THIS IS THE MAGIC */
.track img {
 width: calc(90% /12);
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .track img {
    width: calc(80% / 12);
    height: 250px;
  }
}

.hh{
  text-align:center;
  margin:40px 0;
}

.hh p{
  font-size:35px;
  font-weight:bold;
}

.sodiq{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  width:90%;
  margin:auto;
  align-items:center;
}

.sodiq1, .sodiq2{
  flex:1;
}

.sodiq2 img{
  width:100%;
  border-radius:10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.8);
  margin-top: 30px;
}


.sodiq1{
  padding:20px;
  border-radius:10px;

}

.ff{
  background:#fabcb4;
}

.ss{
  background:#f7c5be;

}


.sodiq1 h1{
  text-align:center;
  margin-bottom:15px;
}

.sodiq1 ul{
  list-style:none;
}

.sodiq1 ul li{
  margin:10px 0;
}

.lekan1{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  width:90%;
  margin:60px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.8);
}


.lekan1 iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 11/ 11;
  border-radius: 10px;
  display: block;
}

.lekan1 img{
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 10px;
}


.lekan1 h3{
  text-align:center;
  font-size:15px;
  margin-top:10px;
}
.ajani,
.muminat{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  width:90%;
  margin:auto;
  
  margin-top: 40px;
}


.ajani div,
.muminat div{
  background:rgb(245, 213, 213);
  padding:10px;
  border-radius:10px;
  text-align:center;
  transition:0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.8);
}

.ajani div:hover,
.muminat div:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.ajani img,
.muminat img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:10px;
  transition:0.4s;
 
}

.ajani img:hover,
.muminat img:hover{
  transform:scale(1.05);
}

.ajani h2,
.muminat h2{
  text-align:center;
  margin-top:10px;
  font-size:16px;
}

.ajj h1,
.mm h1,
.aw h1{
  text-align:center;
  margin:40px 0;
  font-size:30px;
}

.aweni,
.aweni2,
.sadia{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  width:90%;
  margin:auto;
   box-shadow: 0 6px 18px rgba(0,0,0,0.8);
}

.aweni img,
.aweni2 img,
.sadia img{
  width:100%;
  height:550px;
  object-fit:cover;
  border-radius:10px;
  transition:0.4s;
}

.aweni img:hover,
.aweni2 img:hover,
.sadia img:hover{
  transform:scale(1.05);
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.aweni{

      margin-top: 70px;

}

footer{
  background: linear-gradient(135deg, #525252, #412a2a);
  color:white;
  margin-top:50px;
}
footer ul li{
  margin: 6px 0;
}

.ft1{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  width:90%;
  margin:auto;
  padding:40px 0;
}

.ft3{
  text-align:center;
}

.ft3 ul{
  list-style: none;   
  padding: 0;         
  margin: 0;
}

.ft3 h1{
  margin-bottom:10px;
  color: gold;
}

.ft3 a{
  color:white;
  text-decoration:none;
  transition: 0.3s;
}

.ft3 a:hover{
  color:gold;
}

.ft-contact{
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.8;
  }

.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .D2nd{
    display:none;
    width:100%;
  }

  .D2nd ul{
    flex-direction:column;
    background:#0c0c34;
    padding:10px;
  }

  .D2nd.active{
    display:block;
  }

  #taiyetext a{
    font-size:28px;
  }

  #taiyetext p{
    font-size:16px;
  }

  .sodiq{
    flex-direction:column;
  }
}
/* ABOUT SECTION WRAPPER */
.about{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:25px;
  padding:60px 5%;
  background:rgba(246, 220, 220, 0.9);
  border-radius: 12px;
}

.about-us{
  flex:1;
  min-width:280px;
}

.about-us .container{
  max-width:500px;
}

.about-us h2{
  text-align:left;
  margin-bottom:15px;
  font-size:28px;
}

.about-us p{
  line-height:1.7;
  margin-bottom:15px;
  font-size:18px;
  color:#222;
}
.about2{
  flex:1;
  min-width:280px;
  text-align:center;
}

.about2 img{
  width:100%;
  max-width:500px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  border-radius: 12px;
}

@media (max-width:768px){

  .about{
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    gap: 20px;
  }

  /* TEXT FIRST */
  .about-us{
    order: 1;
    width: 100%;
  }

  .about2{
    order: 2;
    width: 100%;
  }

  .about-us h2{
    text-align: center;
    font-size: 24px;
  }

  .about-us p{
    font-size: 16px;
    line-height: 1.6;
  }

  .about2 img{
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

}

  .serv1{
    margin-left:0;
  }/* SERVICE SECTION */
.service{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:40px;
  padding:60px 5%;
  background:#ef836f;
}

.serv1{
  flex:1;
  min-width:280px;
}

.serv1 p{
  font-size:18px;
  line-height:1.6;
}

.serv{
  flex:1;
  min-width:280px;
  text-align:center;
}

.serv img{
  width:100%;
  max-width:500px;
  height:auto;
  border-radius:15px;
}

@media (max-width: 768px){

  .service{
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .serv{
    order: 1;
    width: 100%;
  }

  .serv1{
    order: 2;
    width: 100%;
  }

  .serv img{
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .serv1 p{
    font-size: 16px;
    line-height: 1.6;
  }

}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* CONTACT SECTION */
.contact{
  padding:60px 5%;
  text-align:center;
  background:#f9f9f9;
}

.contact h2{
  font-size:32px;
  margin-bottom:10px;
}

.contact p{
  color:#555;
}

.contact-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
  margin-top:40px;
}

.contact-info{
  flex:1;
  min-width:250px;
  max-width:350px;
  text-align:left;
  line-height:1.6;
}

.contact-form{
  flex:1;
  min-width:280px;
  max-width:400px;
  display:flex;
  flex-direction:column;
  gap:15px;
  background:rgb(245, 213, 213);
  padding:25px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  outline:none;
  transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:gold;
}

.contact-form button{
  padding:12px;
  background:black;
  color:white;
  border:none;
  cursor:pointer;
  border-radius:6px;
  transition:0.3s;
}

.contact-form button:hover{
  background:gold;
  color:black;
}


.WhatsApp{
  text-align:center;
  margin-top:30px;
}

.WhatsApp2{
  display:inline-block;
  font-size:18px;
  padding:10px 20px;
  border-radius:30px;
  background:#25D366;
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.WhatsApp2:hover{
  background:#128C7E;
  transform:scale(1.05);
}

@media (max-width:768px){

  .contact-container{
    flex-direction: column;
    gap: 20px;
  }

  .contact-info,
  .contact-form{
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea{
    width: 100%;
    font-size: 14px;
  }

  .contact-form button{
    width: 100%;
  }

}

.branches {
  padding: 60px 20px;
  background: #f5dede;
  text-align: center;
}

.branches h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.branches .subtitle {
  color: #777;
  margin-bottom: 40px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.branch-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

.branch-card:hover {
  transform: translateY(-5px);
}

.branch-card h3 {
  margin-bottom: 15px;
  color: #b68d40;
}

.branch-card p {
  margin-bottom: 8px;
  color: #444;
}


.careers {
  padding: 60px 20px;
  background: #fff0f0;
}

.careers .container {
  max-width: 1100px;
  margin: auto;
}

.careers h2 {
  text-align: center;
  font-size: 32px;
}

.careers .subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.career-text h3 {
  margin-bottom: 15px;
}

.career-text p {
  margin-bottom: 15px;
  color: #444;
}

.career-text ul {
  list-style: none;
  padding: 0;
}

.career-text li {
  margin-bottom: 10px;
}

.career-form {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
}

.career-form h3 {
  margin-bottom: 15px;
}

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.career-form button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.career-form button:hover {
  background: #b68d40;
}

.partners {
  padding: 60px 20px;
  background: #fdebeb;
  text-align: center;
}

.partners h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.partners .subtitle {
  color: #777;
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.partner-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-card img {
  width: 80px;
  margin-bottom: 15px;
}

.partner-card h3 {
  margin-bottom: 10px;
  color: #b68d40;
}

.partner-card p {
  color: #444;
  font-size: 14px;
}

.bttn  {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 15px;
  border-radius: 15px;
  text-decoration-line: none;
  border: solid greenyellow 4px;
}


@media (max-width: 768px) {
  .careers-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px){

  /* PRODUCTS */
  .ajani,
  .muminat{
    grid-template-columns: repeat(2, 1fr);
  }

  /* GALLERY */
  .aweni,
  .aweni2,
  .sadia{
    grid-template-columns: repeat(2, 1fr);
  }

  
  .keny{
    grid-template-columns: repeat(2, 1fr);
  }

  .lekan1{
    grid-template-columns: repeat(2, 1fr);
  }

}@media (max-width: 768px){

  .ajani img,
  .muminat img{
    height: 180px;
  }

  .aweni img,
  .aweni2 img,
  .sadia img{
    height: 200px;
  }

}
@media (max-width:768px){

  .ft1{
    grid-template-columns: 1fr;   /* single column */
    padding:15px 10px;            /* reduce height */
    gap: 10px;
  }

  .ft3{
    margin-bottom:10px;
    text-align: left;
  }

  .ft3 h1{
    font-size:15px;
    margin-bottom:5px;
    font-weight: 600;
    color: gold;
  }

  .ft3 a:hover{
  color: gold;
}
  .ft3 a{
    font-size:13px;
    margin:2px 0;
    line-height:1.4;
    opacity: 0.9;
  }

  .ft3 p{
    margin:3px 0;
    font-size:13px;
  }

  .ft3 ul{
   list-style: none;
    padding: 0;
    margin: 0;
  }

   .ft3 ul li{
    margin: 3px 0;
  }

  .ft-contact{
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width:768px){

  .ft1{
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    text-align:left;
  }

}
@media (max-width:768px){

  .D2nd{
    top: 60px;          /* move it closer to header */
    width: 180px;       /* smaller width */
    padding: 5px 0;     /* reduce inside spacing */
  }

  .D2nd ul{
    padding: 5px;
    gap: 2px;           /* reduce space between items */
  }

  .D2nd ul li a{
    padding: 8px 10px;  /* smaller height */
    font-size: 14px;    /* smaller text */
    line-height: 1.2;
  }

  .close-menu{
  text-align: right;
  font-size: 20px;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-menu:hover{
  color: gold;
}

}


@media (max-width: 768px) {

    /* HEADER LAYOUT */
    .dist {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    .logo img {
        width: 45px;
    }

    .menu-toggle {
        font-size: 24px;
        color: white;
        cursor: pointer;
    }

    /* MENU PANEL */
    .D2nd {
    position: fixed;

    top: 70px;          /* push below header */
    right: -100%;       /* hidden */

    width: 70%;
    max-width: 250px;
    height: auto;

    padding: 20px;

    /* 🔥 REAL GLASS EFFECT */
    background: rgba(77, 134, 233, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 15px;

    /* ✨ soft border glow */
    border: 1px solid rgba(255,255,255,0.15);

    /* ✨ floating shadow */
    box-shadow: 0 10px 30px rgba(234, 231, 231, 0.3);

    transition: 0.4s ease;
    z-index: 999;
}

    /* SHOW MENU */
    .D2nd.active {
        right: 10px;
    }

    /* MENU LIST */
    .D2nd ul {
        list-style: none;
        padding: 0;
        margin-top: 10px;
    }

    .D2nd li {
        margin: 5px 0;
    }

    
    .D2nd a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.D2nd a:hover {
    background: rgba(255,255,255,0.1);
}
.close-menu {
    font-size: 22px;
    color: white;
    text-align: right;
    cursor: pointer;
    margin-bottom: 10px;
}

    .dist {
        display: flex;
        align-items: center;
        justify-content: center; /* center everything */
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        width: 45px;
    }


.bttn  {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 5px;
  border-radius: 15px;
  text-decoration-line: none;
  border: solid greenyellow 2px;
}


}

