@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');

:root{
   --purple:#8e44ad;
   --red:#c0392b;
   --orange:#f39c12;
   --black:#333;
   --white:#fff;
   --light-color:#666;
   --light-white:#ccc;
   --light-bg:#f5f5f5;
   --border:.1rem solid var(--black);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
.blog-section {
  padding: 50px;
  background: #f9f9f9;
}
.blog-section ul li {
  margin: 15px 0;
  font-size: 18px;
}
.blog-post {
  padding: 50px;
  line-height: 1.8;
}

*{
   font-family: 'Rubik', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   transition:all .2s linear;
}

*::selection{
   background-color: var(--purple);
   color:var(--white);
}

*::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

*::-webkit-scrollbar-track{
   background-color: transparent;
}

*::-webkit-scrollbar-thumb{
   background-color: var(--purple);
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
}

section{
   padding:3rem 2rem;
}

.empty{
   padding:1.5rem;
   text-align: center;
   border:var(--border);
   background-color: var(--white);
   color:var(--red);
   font-size: 2rem;
}

.message{
   position: sticky;
   top:0;
   margin:0 auto;
   max-width: 1200px;
   background-color: var(--white);
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   z-index: 10000;
   gap:1.5rem;
}

.message span{
   font-size: 2rem;
   color:var(--black);
}

.message i{
   cursor: pointer;
   color:var(--red);
   font-size: 2.5rem;
}

.message i:hover{
   transform: rotate(90deg);
}

.title{
   text-align: center;
   margin-bottom: 2rem;
   text-transform: uppercase;
   color:var(--black);
   font-size: 4rem;
}
.btn,
.btn1,
.option-btn,
.delete-btn,
.white-btn{
   display: inline-block;
   margin-left: 30%;
   margin-right: -30%;
   margin-top: 2rem;
   margin-bottom: 3%;
   padding:1rem 3rem;
   cursor: pointer;
   color:var(--white);
   font-size: 1.8rem;
   border-radius: .5rem;
   text-transform: capitalize;
}
.searchbtn{
   display: inline-block;
  
   margin-top: 2rem;
   margin-bottom: 3%;
   padding:1rem 3rem;
   cursor: pointer;
   color:var(--white);
   font-size: 1.8rem;
   border-radius: .5rem;
   text-transform: capitalize;
}
/*
.btn, 
.option-btn,display: inline-block;
   margin-left: 30%;
   margin-right: -30%;
   margin-top: 2rem;
   margin-bottom: 3%;
   padding:1rem 3rem;
   cursor: pointer;
   color:var(--white);
   font-size: 1.8rem;
   border-radius: .5rem;
   text-transform: capitalize;
.delete-btn,
.white-btn,
.btn1 {
    display: inline-block;
    padding: 1rem;
    margin: 20px 195px  ; /* Adds spacing between buttons 
    margin-right: -45%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 0.5rem;
    text-transform: capitalize;
}
*/

/* Wrap buttons inside a flex container */
.btn-container {
    display: flex;
    justify-content: center; /* Center align */
    gap: 50px; /* Space between buttons */
    margin-top: 10px; /* Adjust spacing as needed */
}


.btn1{
   background-color: var(--purple);
}
.btn1:hover:hover
{
   background-color:#752b75;
}
.btn:hover, 
.searchbtn:hover,
.option-btn:hover,
.delete-btn:hover{
   background-color:#752b75;
}

.white-btn,
.btn,
.searchbtn{
   background-color: var(--purple);
}

.option-btn{
   background-color: var(--orange);
}

.delete-btn{
   background-color: var(--red);
}

.white-btn:hover{
   background-color: var(--white);
   color:var(--black);
}

.heading{
   min-height: 30vh;
   display: flex;
   flex-flow: column;
   align-items: center;
   justify-content: center;
   gap:1rem;
   background: url(../images/banner.jpg) no-repeat;
   background-size: cover;
   background-position: center;
   text-align: center;
}

.heading h3{
   font-size: 5rem;
   color:var(--black);
   
}
.heading span{
   color: #752b75;
}

.heading p{
   font-size: 2.5rem;
   color:var(--light-color);
}

.heading p a{
   color:var(--purple);
}

.heading p a:hover{
   text-decoration: underline;
}

@keyframes fadeIn {
   0%{
      transform: translateY(1rem);
      opacity: .2s;
   }
}

.form-container{
   min-height: 100vh;
   background-color: var(--light-bg);
   display: flex;
   align-items: center;
   justify-content: center;
   padding:2rem;
}

.form-container form{
   padding:2rem;
   width: 50rem;
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
   background-color: var(--white);
   text-align: center;
}

.form-container form h3{
   font-size: 3rem;
   margin-bottom: 1rem;
   text-transform: uppercase;
   color:var(--black);
}

.form-container form .box{
   width: 100%;
   border-radius: .5rem;
   background-color: var(--light-bg);
   padding:1.2rem 1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border:var(--border);
   margin:1rem 0;
}

.form-container form p{
   padding-top: 1.5rem;
   font-size: 2rem;
   color:var(--black);
}

.form-container form p a{
   color:var(--purple);
}

.form-container form p a:hover{
   text-decoration: underline;
}

.header .header-1{
   background-color: var(--light-bg);
}

.header .header-1{
   background-color: var(--light-bg);
}

.header .header-1 .flex{
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1200px;
   margin:0 auto;
}

.header .header-2 {
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   position: relative;
   z-index: 1000;
   height: 70px; /* Fixed height */
   display: flex;
   align-items: center;
   justify-content: center;
}

.header .header-2.active {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
}

.header .header-2 .flex {
   width: 100%;
   max-width: 1200px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 2rem;
}


.header .header-1 .flex .share a{
   font-size: 2.5rem;
   margin-right: 1.5rem;
   color:var(--black);
}

.header .header-1 .flex .share a:hover{
   color:var(--purple);
}

.header .header-1 .flex p{
   font-size: 2rem;
   color:var(--light-color);
}

.header .header-1 .flex p a{
   color:var(--purple);
}

.header .header-1 .flex p a:hover{
   text-decoration: underline;
}

.header .header-2 .flex .logo {
   
   color:var(--purple);
}

.header .header-2 .flex .navbar a{
   margin:0 1rem;
   font-size: 2rem;
   color:var(--light-color);
}

.header .header-2 .flex .navbar a:hover{
   color:var(--purple);
   text-decoration: underline;
}

.header .header-2 .flex .icons > *{
   font-size: 2.5rem;
   color:var(--black);
   cursor: pointer;
   margin-left: 1.5rem;
}
.header .header-2 .flex .icons .support{
   background-color: #ffbf00;
   width: 13rem;
   border-radius: 20px;
   height: 4rem;
   text-align: center;
   justify-content: center;
   align-items: center;
   
   
}

.header .header-2 .flex .icons > *:hover{
   color:var(--purple);
}

#menu-btn{
   display: none;
}

.header .header-2 .flex .user-box{
   position: absolute;
   top:120%; right:2rem;
   background-color: var(--white);
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
   padding:2rem;
   text-align: center;
   width: 30rem;
   display: none;
   animation: fadeIn .2s linear;
}

.header .header-2 .flex .user-box.active{
   display: inline-block;
}

.header .header-2 .flex .user-box p{
   font-size: 2rem;
   color:var(--light-color);
   margin-bottom: 1.5rem;
}

.header .header-2 .flex .user-box p span{
   color:var(--purple);
}

.header .header-2 .flex .user-box .delete-btn{
   margin-top: 0;
}
.header .header-2 .flex .logo img {
   height: 40px; /* Adjust as needed */
   width: auto; /* Maintains aspect ratio */
   max-width: 150px; /* Optional: Limits max width */
}


.home{
   min-height: 70vh;
   background:linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url(../images/home-bg.jpg) no-repeat;
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: center;
   justify-content: center;
}

.home .content{
   text-align: center;
   width: 60rem;
}

.home .content h3{
   font-size: 5.5rem;
   color:var(--white);
   text-transform: uppercase;
}

.home .content p{
   font-size:1.8rem;
   color:var(--light-white);
   padding:1rem 0;
   line-height: 1.5;
}

.products .box-container{
   max-width: 1300px;
   margin:0 auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, 40rem);
   align-items: flex-start;
   gap:1.5rem;
   justify-content: center;
}

.products .box-container .box{
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   padding-left: 0%;
   
   border:var(--border);
   position: relative;
}

.products .box-container .box .image{
   height: 22.4rem;
   border-top-left-radius: .5rem;
   border-top-right-radius: .5rem;
   object-fit: fill;
}

.products .box-container .box .name{
   padding:2rem ;
   font-size: 2rem;
   color:var(--black);
   font-weight: 500;
   left: 4rem;
   margin-top: -2%;
   
   
}
.products .box-container .box .language{
   
   position: absolute;
   top:26rem; left:1rem;
   border-radius: .5rem;
   padding:1rem;
   font-size: 1.5rem;
   color:var(--black);
   font-weight: 400;
   
}


.products .box-container .box .qty{
   width: 100%;
   padding:1.2rem 1.4rem;
   border-radius: .5rem;
   border:var(--border);
   margin:1rem 0;
   font-size: 2rem;
}

.products .box-container .box .price{
   position: absolute;
   top:30rem; left:1rem;
   border-radius: .5rem;
   padding:1rem;
   font-size: 2rem;
   color:var(--black);
   font-weight: 500;
   
}

.about .flex{
   max-width: 1200px;
   margin:0 auto;
   display: flex;
   align-items: center;
   flex-wrap: wrap;
}

.about .flex .image{
   flex:1 1 40rem;
}

.about .flex .image img{
   width: 100%;
}

.about .flex .content{
   flex:1 1 40rem;
   padding:2rem;
   background-color: var(--light-bg);
}

.about .flex .content h3{
   font-size: 3rem;
   color:var(--black);
   text-transform: uppercase;
}

.about .flex .content p{
   padding:1rem 0;
   line-height: 2;
   font-size: 1.7rem;
   color:var(--light-color);
}

.home-contact{
   background-color: var(--black);
}

.home-contact .content{
   max-width: 60rem;
   text-align: center;
   margin:0 auto;
}

.home-contact .content h3{
   font-size: 3rem;
   text-transform: uppercase;
   color:var(--white);
}

.home-contact .content p{
   padding:1rem 0;
   line-height: 1.5;
   color:var(--light-white);
   font-size: 1.7rem;
}

.reviews{
   background-color: var(--light-bg);
}

.reviews .box-container{
   max-width: 1200px;
   margin:0 auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   align-items: center;
   gap:1.5rem;
   justify-content: center;
}

.reviews .box-container .box{
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   padding:2rem;
}

.reviews .box-container .box img{
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
}

.reviews .box-container .box p{
   padding:1rem 0;
   line-height: 2;
   color:var(--light-color);
   font-size: 1.5rem;
}

.reviews .box-container .box .stars{
   background-color: var(--light-bg);
   display: inline-block;
   margin:.5rem 0;
   border-radius: .5rem;
   border:var(--border);
   padding:.5rem 1.5rem;
}

.reviews .box-container .box .stars i{
   font-size: 1.7rem;
   color:var(--orange);
   margin:.2rem;
}

.reviews .box-container .box h3{
   font-size: 2rem;
   color:var(--black);
   margin-top: 1rem;
}

.authors .box-container{
   max-width: 1200px;
   margin:0 auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   align-items: center;
   gap:1.5rem;
   justify-content: center;
}

.authors .box-container .box{
   position: relative;
   text-align: center;
   border:var(--border);
   box-shadow: var(--box-shadow);
   overflow: hidden;
   border-radius: .5rem;
}

.authors .box-container .box img{
   width: 100%;
   height: 40rem;
   object-fit: cover;
}

.authors .box-container .box .share{
   position: absolute;
   top:0; left:-10rem;
}

.authors .box-container .box:hover .share{
   left: 1rem;
}

.authors .box-container .box .share a{
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.5rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   display: block;
   margin-top: 1rem;
   color:var(--black);
}

.authors .box-container .box .share a:hover{
   background-color: var(--black);
   color:var(--white);
}

.authors .box-container .box h3{
   font-size: 2.5rem;
   color:var(--black);
   padding:1.5rem;
   background-color: var(--white);
}

.contact form{
   margin:0 auto;
   background-color: var(--light-bg);
   border-radius: .5rem;
   border:var(--border);
   padding:2rem;
   max-width: 50rem;
   margin:0 auto;
   text-align: center;
}

.contact form h3{
   font-size: 2.5rem;
   text-transform: uppercase;
   margin-bottom: 1rem;
   color:var(--black);
}

.contact form .box{
   margin:1rem 0;
   width: 100%;
   border:var(--border);
   background-color: var(--white);
   padding:1.2rem 1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.contact form textarea{
   height: 20rem;
   resize: none;
}

.search-form form{
   max-width: 1200px;
   margin:0 auto;
   display: flex;
   height: 5rem;
   gap:2rem;
   font-size: 1rem;
}

.search-form form .searchbtn {
   margin-top: 1%;
   width: 10rem;
   height: 3.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   font-size: 1.6rem; /* You can adjust size if needed */
   line-height: normal; /* Ensure line-height does not mess with vertical alignment */
   padding: 0; /* Reset padding if necessary */
}



.search-form form .box{
   width: 100%;
   padding:1.2rem 1.4rem;
   border:var(--border);
   font-size: 2rem;
   color:var(--black);
   background-color: var(--light-bg);
   border-radius: .5rem;
}

.profile-container,.description-container, .social-media-container, .skills-container {
   background-color: whitesmoke;
   padding: 2rem;
   border-radius: 15px;
   text-align: center;
   margin: 0 auto;
   max-width: 1200px;
   width: 90%;
   color: #000;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   margin-bottom: 2rem
}


.profile-img {
   width: 180px;
   height: 180px;
   border-radius: 50%;
   object-fit: cover;
   object-position: center top;
   margin: 0 auto 1rem;
   border: 5px solid #fff;
   box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.profile-info h2 {
   font-size: 2rem;
   margin-bottom: 0.5rem;
}

.profile-info p {
   font-size: 1.5rem;
   opacity: 0.9;
}

/* Social Media Section */
.social-media-container {
   background: #fff;
   padding: 1.5rem;
   border-radius: 15px;
   margin: 1.5rem auto;
   max-width: 1200px;
   width: 90%;
   display: flex;
   flex-direction: column;
   align-items:left;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   margin-bottom: 3rem;
}

.social-media-container h2 {
   font-size: 2rem;
   margin-bottom: 2rem;
   color: #333;
   text-align:left;
}

.social-box-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   gap: 20px;
   margin-bottom: 1rem
}

.social-box {
   background: #f9f9f9;
   padding: 1rem;
   border-radius: 10px;
   flex: 1;
   text-align: center;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-box img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   margin-bottom: 0.5rem;
   box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.social-box i {
   font-size: 2.5rem;
   margin-bottom: 0.5rem;
   transition: transform 0.3s ease;
}

.social-box i:hover {
   transform: scale(1.2);
}

.instagram i {
   color: #e4405f;
}

.youtube i {
   color: #ff0000;
}

.social-box h3 {
   font-size: 2rem;
   margin-bottom: 0.3rem;
   color: #333;
}

.social-box p {
   font-size: 1.5rem;
   color: #666;
   margin-top: 1rem;
}

.social-btn {
   display: inline-block;
   background: #a777e3;
   color: #fff;
   padding: 0.5rem 1rem;
   border-radius: 5px;
   text-decoration: none;
   font-weight: bold;
   margin-top: 1rem;
   transition: background 0.3s ease;
   font-size: 1.5rem;
   margin-bottom: 0.5rem;
}

.social-btn:hover {
   background: #6e8efb;
}
.description-container {
   background: #fff;
   padding: 2rem;
   text-align: left;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   margin-bottom: 4rem;
}

.description-container h2 {
   font-size: 2rem;
   margin-bottom: 1rem;
   color: #333;
}

.description-container p {
   font-size: 1.5rem;
   color: #666;
   line-height: 1.6;
}
.skills-container {
   text-align: left;
}

.skills-container h2 {
   font-size: 2rem;
   margin-bottom: 1.5rem;
   color: #333;
}

.skills-box-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 30px;
   margin-bottom: 1rem;
   margin-top: 2rem;
}

.skills-box {
   background: #f9f9f9;
   padding: 1.5rem;
   border-radius: 10px;
   flex: 1 1 calc(33.333% - 20px);
   text-align: center;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   min-width: 250px;
}

.skills-box i {
   font-size: 3rem;
   margin-bottom: 0.5rem;
   transition: transform 0.3s ease;
}

.skills-box-container :hover {
   transform: scale(1.1);
}

.skills-box h3 {
   font-size: 1.8rem;
   margin-bottom: 0.5rem;
   color: #333;
}

.skills-box p {
   font-size: 1.4rem;
   color: #666;
   line-height: 1.6;
}




@media (max-width: 768px) {
   .profile-img {
       width: 140px;
       height: 140px;
   }

   .social-box-container {
      flex-direction: column;
      gap: 15px;
   }
}
@media (max-width: 768px) {
   .skills-box-container {
      flex-direction: column;
      align-items: center;
   }
}








 




/* media queries  */

@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   #menu-btn{
      display: inline-block;
   }

   .header .header-2 .flex .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      background-color: var(--white);
      border-top: var(--border);
      border-bottom: var(--border);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .header-2 .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .header .header-2 .flex .navbar a{
      display: block;
      font-size: 2.5rem;
      margin:2rem;
   }

   .home .content h3{
      font-size: 3.5rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .heading h3{
      font-size: 3.5rem;
   }

   .title{
      font-size: 3rem;
   }

}









