/* lear */
/* CSS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.body
{
    background-color: #000;
}

.new{
    color: #fff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: larger;
    font-weight: 600;
    font-style: oblique;
}
.par_new{
    width: 90%;
    height: 60px;
    padding: 15px;
    border: 5px 5px solid #ff9800;
    border-radius: 20px;
    background-color: #ff5722;
    margin: auto;
    cursor: pointer;

}

.numbers
{
    width: 100%;
    height: 20vh;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 20px;
    padding: 16px;
    background-color: #000;
    color: goldenrod;
    font-size: larger;
    font-style: oblique;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    font-style:italic;
    
}
.hello
{
    color:goldenrod ;
}
.noborder{
    border: none;
    margin: 20px;
    display: block;
    margin: 0 auto;
}
.parentOfIcon
{
    display: block;
    margin: auto;
}
.icons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}
.icons span
{
    padding: 6px;
    width: 45px;
    height: 45px;
    background: rgb(41, 119, 214);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: inherit;
}
.icons span a .fa-facebook-f {
    color: #fff;
    
}
.icons span a .fa-whatsapp {
    color: rgb(23, 222, 27);
}
body{
    background-color: #f8f8ff;
}

header{
    text-align: center;
    /* background-image:url(Untitled\ design\ \(6\).jpg) ; */
}

h1{
    margin: 1em auto;
    font-size: 2.4em;
    letter-spacing: 2px;
    color: #113;
    display: inline-block;
}

h1::after{
    content: '';
    width: 40%;
    height: 2px;
    display: block;
    margin: 5px auto auto;
    background-color: goldenrod;
}

ul{
    list-style: none;
}

ul li{
    display: inline-block;
    margin: auto 5px;
}

ul li button{
    padding: 6px 12px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: transparent;
    color: goldenrod;
    border-color: goldenrod;
    cursor: pointer;
}

main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    margin: 3em auto;
    grid-gap: 3em;
}

.container{
    display: flex;
    gap: 1em;
}

img{
    width: 50%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 3px solid goldenrod;
}

.box{
    width: 50%;
}

.box > div{
    display: flex;
    justify-content: space-between;
    letter-spacing: 2px;
}

.box > div h3{
    color: #fff;
}

.box > div p{
    color: goldenrod;
}

.box hr{
    border: none;
    background-color: goldenrod;
    height: 1px;
    margin: 10px auto 1em;
}
.logo
{
    width: 150px;
    height: 150px;
}
.box p{
    line-height: 22px;
    color: #fff;
}

@media screen and (max-width: 1300px){
    main{
        grid-template-columns: 1fr;
    }

    .container{
        flex-direction: column;
        max-width: 550px;
        margin: auto;
    }

    img{
        width: 100%;
    }

    .box{
        width: 100%;
    }
}

.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, goldenrod, #ff5722);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Hover effect */
  .order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  }
  
  /* Click effect */
  .order-btn:active {
    transform: scale(0.96);
  }
  
  /* Light shine animation */
  .order-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    transition: all 0.6s;
  }
  
  .order-btn:hover::before {
    left: 100%;
  }
  
  /* Mobile optimization */
  @media (max-width: 480px) {
    .order-btn {
      font-size: 16px;
      padding: 12px 24px;
    }
  }
  
  #scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
  }
  
  /* Hover */
  #scrollTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
  
  /* Show button */
  #scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    #scrollTopBtn {
      width: 46px;
      height: 46px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
  }
  
