:root {
    --pry-color: #3f0e40;
    --light-bg-color: #f5f5f5;
    --white: #ffffff;
    --rad: 10px;
/* 
    font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #242424;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

html, body {
    font-family: Futura Bk BT Book;
    /* font-family: Cera Round Pro DEMO; */
    background-color: var(--light-bg-color);
    margin: 0;
    padding: 0;

}

/* @font-face {
  font-family: "Futura Bk BT Book";
  src: url("../media/Futura Bk BT Book.ttf") format("truetype");
} */

#header {
    /* border: 1px solid red; */
    width: 100%;
    height: 70px;
    box-shadow: 0px 5px 5px #3f0e4013;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.header_wrap {
    width: 93%;
    margin: auto;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_wrap a {
    text-decoration: none;
    color: #3f0e40;
}


.back-drop {
    position: fixed;
    background: rgba(244, 184, 255, 0.188);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    -webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px)
}

.back-drop.bk-active {
  display: block;
}

#main {
    width: 95%;
    margin: auto;
    margin-bottom: 60px;
   /* border: 1px solid red; */
}


/* for smaller screens */
@media screen and (max-width: 306px) {
    
  #main, #header {
      width: 290px;
  }

}

/* for larger screens */
@media only screen and (min-width: 1200px) {
    
  #main, .footer{
      width: 1120px;
  }

}

#site-id {
    width: 44px;
    height: 44px;
    /* border: 1px solid red; */
    cursor: pointer;
    /* background-image: url("../img/lotuslogo-01.svg"); */
}

#site-id img {
    width: 100%;
}

.pry-nav  {
    width: 463px;
    /* border: 1px solid rebeccapurple; */
    margin: auto;
    display: none;
}

.pry-nav.open  {
    display: block;
    box-shadow:  2px 2px 3px #3f0e4015, 
                 -2px -2px 3px #3f0e4015;;
}

 
.pry-nav ul {
    /* border: 1px solid red; */
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    text-align: center;
    padding: 0;
}

.pry-nav ul li {
    /* border: 1px solid red; */
    cursor: pointer;
    text-align: left;
}



/* SVG Styling */
.nav {
    width: 44px;
    height: 44px;
    /* border: 1px solid rebeccapurple; */
    cursor: pointer;
    /* background-image: url("../img/lotuslogo-01.svg"); */
}

.nav img {
    width: 100%;
}

.st0{
    fill:#c740ec;
    /* transform: rotate(45deg); */
}

/* Ham Nav Animation */

.active {
    transition: all 200ms ease;
}

.bar1.active {
  transform: translateY(0.3rem) rotate(45deg);
  transform-origin: 50% 50%;
  
}
.bar2.active {
  opacity: 0;
}

.bar3.active {
  transform: translateY(-0.4rem) rotate(-45deg);
  transform-origin: 50% 50%;
}



/* for small screens */
@media screen and (max-width: 760px) {
    
    .pry-nav {
       
        height: 100vh;
        position: absolute;
        top: 100px;
        left: 7%;
        background-color: white;
        border-top-left-radius: 24px;
        /* border: 1px solid #3f0e40; */
    }

    .pry-nav ul {
        display: flex;
        flex-direction: column;
    }

    .pry-nav ul li {
        /* margin: 20px 0; */
        padding: 20px;
        /* background-color: #e7cef1; */
    }

    .pry-nav ul li a:hover {
        background-color: #e7cef1;
        border: 1px solid red;
    }

}

/* for large screens */
@media screen and (min-width: 760px) {
    .nav, .back-drop {
        display: none;
    }
    
    .pry-nav {
       display: block;
    }
}


/* LANDING PAGE: responsiveness == gracefulDegredation */

.landing {
    /* border: 1px solid red; */
    width: 100%;
    height: 540px;
    display: grid;
    place-items: center;
    background: linear-gradient(45deg, #fadffd, #d8a2f0);
}

.landing-text {
    width: 100%;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

/* for small screens */
/* graceful degradation */
@media screen and (max-width: 760px) {

    .landing {
        flex-direction: column-reverse;
        margin: auto;
    }

    .product {
        flex-direction: column;
    }

    .landing-art {
        /* display: none; */
        width: 96%;
        height: fit-content;
    }
    
   .landing-text {
        width: 100%;
        text-align: center;
    }

}


button {
    width: 100%;
    height: 44px;
    background-color: #3f0e40;
    background: linear-gradient(45deg, #da5fea, #c655f7);
    color: #fbe6ff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 200ms ease-in;
}

button a {
    text-decoration: none;
    color: #fbe6ff;
}

button:hover {
    background: linear-gradient(45deg, #fadffd, #d8a2f0);
    color:  #3f0e40; 
    border: 1px solid var(--pry-color);
}

/* Button types */
/* Action button */
.section_btn {
    width: 100px;
    margin-top: 0;
    border-radius: 30px;
    margin-inline-end: 12px;
    
}




.landing-text button {
    /* width: 400px; */
}

.section {
    /* text-align: center; */
    /* border: 1px solid rebeccapurple; */
    /* box-shadow: 0px 5px 5px #3f0e4013; */
    height: 70px;
    margin-block: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section h1 {
    font-weight: 800;
}

.service-box {
    /* width: 90%; */
    /* height: 300px; */
    border: 1px solid rebeccapurple;
    margin: auto;
    display: flex;
    justify-content: space-around;

}


.service {
    width: 28%;
    /* height: 350px; */
    /* border: 1px solid rebeccapurple; */
    background-color: var(--white);
    margin-bottom: 30px;
    padding: 20px;
    list-style-type: none;
    border-radius: var(--rad);
    box-shadow:  2px 2px 3px #3f0e4015,
                 -2px -2px 3px #3f0e4015;
    text-align: center;
    /* cursor: pointer; */
    box-sizing: content-box;

}

/* .service:hover {
    transform: scale(1.04);
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
} */

.service.blog {
    text-align: left;
    height: auto;
    cursor: pointer;
}

.service.blog  button{
    width: 100%;
    margin-top: 0px;
}

.blog img {
    width: 100%;
}

.product {
    text-align: left;
    /* box-sizing: border-box; */
    cursor: pointer;
}

.service.product button {
    /* margin-top: 250px; */
    width: 100%;
}

.service-icon {
    width: 200px;
    margin: auto;
    /* background-color: #d99ce5; */
}


/* products */
.product-img {
    width: 100%;
    height: 314x;
    /* border: 1px solid red; */
    
}

.product-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.product p {
    margin: 0;
    margin-top: 6px;
}


/* for small screens */
@media screen and (max-width: 760px) {

    .service-box {
        flex-direction: column;

    }

    .service {
        width: 80%;
        margin: auto;
        margin-bottom: 23px;

    }

}


.service ul li {
    font-size: 1rem;
    list-style-type: none;
    margin: 15px 0;
    cursor: pointer;
}

.service ul li:first-child {
    font-size: 1.6rem;
    list-style-type: none;
}


/* Reel COntainer */
.reel-container {
    width: 100%;
    /* max-height: 500px; */
    background-color: white;
    box-sizing: border-box;
    padding: 24px;
    border-radius: 40px;
}

.reel-container video {
    width: 100%;
    border-radius: 30px;

}

.tech-stack {
    height: fit-content;
    /* border: 1px solid rebeccapurple; */
    display: grid;
    /* grid-template-columns: 100px 100px 100px 100px 100px; */
    grid-template-columns: repeat(8, auto);
    /* grid-row: inherit; */
    gap: 1rem;
    overflow: hidden;
}

.stack {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    /* border: 1px solid rebeccapurple;  */
    border-radius: 4px;
    box-shadow:  1px 1px 5px #3f0e4015,
                 -1px -1px 5px #3f0e4015;
    /* height: 40px; */
    cursor: pointer;

}

.stack img {
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}



/* Gallery */

.portfolio {
    border: 1px solid #3f0e40;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    /* box-sizing: border-box; */
}

.portfolio-box {
    width: 49%;
    height: 400px;
    border: 1px solid #3f0e40;
    padding: 30px;
}


.portfolio-img{
    border: 1px solid #3f0e40;
    width: 49%;
    background-image: url("img/ibrfolio.jpg");
 
}




/* FOOTER */
.footer-container {
    width: 100%;
    background-color: var(--pry-color);
}

.footer {
    background-color: var(--pry-color);
    color: #fbe6ff;
    height: auto;
    /* margin-top: 30px; */
}


.foot-header {
    /* height: 70px; */
    background-color: #3f0e40;
    color: #fbe6ff;
    /* margin-top: 30px; */
    padding: 20px;
}


.service.footer {
    background-color: none;
    text-align: left;
    box-shadow:  none;

}


#foot-id {
    width: 42px;
    /* height: 70px; */
    /* border: 1px solid rebeccapurple; */
    /* margin: 1.2%; */
    margin: auto;
    /* float: left; */
    cursor: pointer;
}


.foot-header p{
    /* float: left; */
    text-align: center;
    margin-top: 25px;

}


.blog-btn {
    width: 120px;
    margin: 0;
}


.horizontal_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
    row-gap: 12px;
}

.grid_item {
    background-color: var(--white);
    padding: 20px;
    list-style-type: none;
    border-radius: var(--rad);
    box-shadow:  2px 2px 3px #3f0e4015,
                 -2px -2px 3px #3f0e4015;
    /* text-align: center; */
    /* cursor: pointer; */
    box-sizing: content-box;
}

.grid_item p {
    margin-bottom: 0;
}


/* Components */
.bento-container {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 280px;
    gap: 1rem;
    padding: 0 1rem;
    /* border: 1px solid red; */
}

.bento {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
  }

  .bento:hover {
    transform: scale(1.02);
  }

  .bento h2 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: var(--accent);
  }

  .bento p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  /* Varying height using grid-row span */
  .tall {
    grid-row: span 2;
  }

  .extra-tall {
    grid-row: span 3;
  }

  .wide {
    grid-column: span 2;
  }

  @media (max-width: 768px) {
    .wide {
      grid-column: span 1;
    }
  }
