/* ==========================================

   FEATURES

=======================================*/
/* featuer section */
.features {
   position: relative;
   border-bottom: 1.5px solid #f2f2f2;
}

.features .title h3 {
   font-size: 1.5rem;
   letter-spacing: 1px;
   color: var(--black);
   text-transform: uppercase;
}

.features .content {
   max-width: 100%;
   margin: 10rem auto;
}

.features .content .feature-cards {
   width: 100%;
   /* background: gold; */
   padding: 2rem;
   display: grid;
   /* grid-template-columns: repeat(2, 50rem); */
   grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
   justify-content: center;
   align-items: center;
   grid-gap: 2rem;
}

.features .content .feature-cards .card {
   position: relative;
   /* width: 100%; */
   height: 100%;
   /* max-width: 50rem; */
   width: 100%;
   /* height: auto; */
   /* max-height: 40rem; */
   display: flex;
   align-items: stretch;
   /* flex-direction: column; */
   gap: 2rem;
   /* margin: 1.5rem 0; */
   transition: all 0.4s ease-in-out;
}

.features .content .feature-cards .card:hover {
   transform: translateY(-10px);
   cursor: pointer;
}

.features .content .card .card-icon {
   min-width: 8rem;
   width: 8rem;
   height: 8rem;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   border: 2px solid rgba(255, 255, 255, 0.4);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 3rem;
   color: var(--yellow);
   backdrop-filter: blur(10px);
   box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
   z-index: 1;
   transition: all 0.4s ease-in-out;
}
.features .content .card .card-icon .icon{
   width: 4rem;
   height: 4rem;
}
.features .content .feature-cards .card:hover .card-icon {
   background: var(--brand-gradient);
   color: #fff;
}

.features .card .card-text {
   background: rgba(255, 255, 255, 0.2);
   border-radius: 10px;
   padding: 1rem 2rem;
   /* width: 100%; */
   backdrop-filter: blur(15px);
   box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
   /* text-align: center; */
   display: flex;
   flex-direction: column;
   align-items: start;
   flex: 1;
   transition: all 0.3s ease-in-out;
}

.features .card .card-text .heading {
   font-size: 1.9rem;
   color: #333;
   text-transform: capitalize;
   font-weight: 500;
   transition: all 0.4s ease;
}

.features .content .feature-cards .card:hover .card-text .heading {
   background: var(--brand-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   color: transparent;
}

.features .card .card-text p {
   font-size: 1.8rem;
   color: gray;
   font-weight: 400;
   line-height: 2.5rem;
   margin: 1rem 0;
}

.features .card .card-text .btn {
   width: auto;
   background: var(--brand-gradient);
   text-align: center;
   border-radius: 25px;
   font-size: 1.6rem;
   padding: 1rem 2rem;
   margin-top: auto;
}

.features .content .feature-image {
   width: 100%;
   /* background: #555; */
   position: relative;
   text-align: center;
}

.features .content .feature-image img {
   width: 50rem;
}

/* ------------ ENDS ------------- */

/* ==========================================

   STORAGE BLOCK

======================================*/
/*storage block*/
.storage-block {
   position: relative;
   padding: 60px 100px;
   width: 100%;
   height: auto;
   background: #222;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 2rem;
   justify-content: center;
   align-items: center;
   overflow: hidden;
}

.storage-block .col {
   width: 100%;
}
.storage-block .icon-box{
   margin-bottom: 1.2rem;
   text-align: center;
}
.storage-block .icon-box .icon{
   text-align: center;
   /* font-size: 7rem; */
   width: 9rem;
   height: 9rem;
   color: white;
}

.storage-block .content h3 {
   letter-spacing: 1px;
   font-size: 1.7rem;
   color: var(--main-heading);
   text-transform: uppercase;
}

.storage-block .content p {
   letter-spacing: 1px;
   line-height: 1.8;
   font-size: 1.7rem;
   font-weight: medium;
   text-transform: capitalize;
   color: var(--text-muted);
   font-weight: 500;
   margin: 1rem 0;
}

.storage-block .content .btn {
   margin: 10px 0;
   width: 10rem;
   padding: 1rem;
   font-size: 1.5rem;
   text-align: center;
   background: var(--brand-gradient);
   transition: 0.4s ease;
}

.storage-block .content .btn:hover {
   transform: scale(1.1);
}
/* ------------ ENDS ------------- */


/* ==========================================

   PARALLAX

======================================*/
.parallax {
   position: relative;
   background: url("../images/parallax.jpg") center center no-repeat fixed;
   background-size: cover;
   width: 100%;
   height: auto;
   padding: 15px;
}

.parallax .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
}

.parallax .content {
   z-index: 1;
}

.small-parallax {
   /*background:url("../images/small_parallax.jpg") center center no-repeat fixed;
  background-size: cover;*/
   background: #f2f2f2;
   border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
   padding: 10px;
   text-align: center;
}

.small-parallax p {
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 0.9rem;
   color: var(--black);
   font-weight: 600;
}

.small-parallax p span {
   color: var(--orange);
}
/* ------------ ENDS ------------- */

/* ==========================================

   SHORT INFO

=====================================*/
.short-info {
   width: 100%;
   min-height: 320px;
   position: relative;
   padding: 50px;
   display: flex;
   flex-direction: column;
   background: var(--green3);
}

.short-info .content {
   position: relative;
   width: 50%;
}

.short-info .sub-heading {
   color: #f2f2f2;
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.short-info .break {
   margin: 10px 0;
}

.short-info p {
   letter-spacing: 1px;
   font-size: 0.9rem;
   color: #f2f2f2;
   text-align: justify;
   margin: 10px 0;
   line-height: 25px;
}

.short-info .btns {
   margin: 10px 0;
   position: absolute;
   bottom: 0px;
   right: 20px;
   /*transform: translateX(-100%);*/
}

.short-info .read-more {
   display: block;
   color: #fff;
   margin-left: 10px;
}
/* ------------ ENDS ------------- */
/* ==========================================

   COLOR PALETTE

======================================*/
/* colour pallete */

.pallete {
   /* padding: 100px; */
   border-bottom: 1.5px solid #f2f2f2;
   background: #f2f2f2;
}

/*
.pallete .title h2 {
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 5px;
}
*/
.tabs {
   overflow: hidden;
}

.tabs .tab-btns {
   display: grid;
   grid-template-columns: repeat(2, auto);
   grid-gap: 5px;
   justify-content: center;
   align-items: center;
}

.tabs .tab-btns button {
   position: relative;
   width: 10rem;
   background: none;
   padding: 1rem;
   border: 2px solid var(--yellow);
   color: var(--yellow);
   font-size: 1.5rem;
   transition: all ease-in 0.6s;
}

.tabs .tab-btns button.active {
   background: var(--brand-gradient);
   color: #fff;
}

.tabs .tab-container .tab-content {
   transition: all ease 0.6s;
   display: none;
   /* visibility: hidden; */
}

.tabs .tab-container .tab-content.active {
   display: block;
   /* visibility: visible; */
}

.pallete .solid-content,
.pallete .gradient-content,
.color-scheme-modal .scheme-content {
   margin: 50px 0;
}

.pallete .scheme-content .title {
   margin: 20px 0;
}

.pallete .scheme-content p {
   color: var(--black);
   text-align: center;
   margin: 100px 0;
   font-size: 1.5rem;
   text-transform: uppercase;
}

.color-card {
   position: relative;
   width: 27rem;
   height: auto;
   padding: 2rem 1rem;
   background: #fff;
   border-radius: 15px;
   color: #fff;
   font-size: 1.5rem;
   /* perspective: 1000px; */
   box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2),
      -6px -6px 15px rgba(255, 255, 255, 0.2);
   transition: 0.4s ease-in-out;
}

.color-card:hover {
   transform: translateY(-10px);
   cursor: pointer;
}

.color-card .color-body {
   position: relative;
   width: 16rem;
   height: 16rem;
   border-radius: 10%;
   background: #f2f2f2;
   border: 10px solid var(--card-color);
   box-shadow: 10px 10px 15px var(--box-shadow1), -10px -10px 15px #ffffff;
   margin: 1rem auto;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
   text-align: center;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
   font-size: 1.5rem;
   /* border-radius: 5px 5px 0 0; */
   transition: 0.4s ease;
}

.color-card:hover .color-body {
   box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1),
      -6px -6px 15px rgba(255, 255, 255, 0.2);
   transform: scale(1.1);
}

.color-card .color-body .color-view {
   position: absolute;
   bottom: -20px;
   right: -20px;
   background: var(--green3);
   border: none;
   outline: none;
   color: #fff;
   font: 1rem;
   width: 4.5rem;
   height: 4.5rem;
   border-radius: 50%;
   padding: 5px;
   color: #fff;
   border: 5px solid #fff;
}

.color-card .add-storage {
   position: absolute;
   top: 0.6rem;
   right: 1rem;
   color: #555;
   font-weight: 500;
   z-index: 1;
   font-size: 1.3rem;
   letter-spacing: 1px;
   text-transform: capitalize;
   cursor: pointer;
}

/* .color-body::before,
.mini-container .content .image-icon::before,
.tabs .tab-btns button::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  opacity: 0;
  width: 70px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skew(-30deg);

} */

/*.color-body:hover::before,*/
/*
.tabs .tab-btns button:hover::before {
   animation: shiningGlow 2s 0.3s ease-in-out forwards;
}

.mini-container .content .image-icon::before {
   animation: shiningGlow 4s 0.6s ease-in-out infinite;
}

.shining-glow {
   animation: shiningGlow 3s 0.4s ease-in forwards;
}

@keyframes shiningGlow {
   0% {
      right: -100%;
      opacity: 0;
   }
   
   50% {
      right: 100%;
      opacity: 1;
   }
   
   100% {
      right: -100%;
      opacity: 0;
   }
}
*/
.color-card .color-text {
   position: relative;
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 5px 10px;
}

.color-card .copy {
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   font-size: 1.5rem;
   text-transform: capitalize;
   color: #04dd9b;
   width: 10rem;
   background: var(--brand-gradient);
   padding: 0.6rem 1rem;
   border-radius: 20px;
   border: none;
   color: #fff;
   font-weight: 600;
   cursor: pointer;
   box-shadow: 0 0 0 2px #f2f2f2;
   transition: 0.6s;
}

.color-card .copy:hover {
   letter-spacing: 1px;
}

.color-card .color-text label {
   text-transform: uppercase;
   color: #04011d;
   font-weight: 600;
}

.color-card .color-text .color-code {
   position: relative;
   padding: 5px 0;
   border: none;
   outline: none;
   color: var(--text-muted);
   font-size: 1.5rem;
   font-weight: 500;
   width: auto;
   height: auto;
   background: none;
   margin: 1rem 0;
   text-align: center;
   resize: none;
}

.color-card .color-text .color-code.highlight {
   background: dodgerblue;
   color: #fff;
   font-weight: 500;
   padding: 1rem;
   border-radius: 5px;
}

.gradient-content .gradient-card {
   height: auto;
}

.gradient-card .color-text {
   flex-direction: column;
   align-items: center;
}

.gradient-card .color-text .gradient-view {
   background: var(--pink1);
   padding: 10px 10px;
   color: #fff;
   border-radius: 5px;
   font-size: 1rem;
   letter-spacing: 1px;
   font-weight: 500;
   text-transform: capitalize;
   transition: all ease-in 0.6s;
   outline: none;
   cursor: pointer;
   margin: 10px 0;
}

.gradient-card .color-text .gradient-view:hover {
   background: none;
   border: 1.5px solid var(--pink1);
   color: var(--pink1);
}
.pallete .content .btns .btn {
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   background: var(--brand-gradient);
}
/* ------------ ENDS ------------- */
/* ==========================================

   HOW IT WORKS

======================================*/
.how-it-works-section .steps-container {
   
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   justify-content: center;
   grid-gap: 2rem;
   margin: 5rem 0;
}

.steps-container .step {
   background-color: #fff;
   border-radius: 10px;
   padding: 30px;
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
   /* max-width: 300px; */
   width: 100%;
   text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-container .step:hover {
   transform: translateY(-10px);
   cursor: pointer;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps-container .step .step-icon {
   font-size: 5rem;
   margin-bottom: 20px;
   color: var(--yellow);
}
.steps-container .step .step-icon .icon{
   width: 7rem;
   height: 7rem;
}
.steps-container .step .step-title {
   font-size: 2rem;
   font-weight: 500;
   margin-bottom: 15px;
   color: #333;
}

.steps-container .step .step-description {
   font-size: 1.7rem;
   color: #777;
   font-weight: 400;
   line-height: 2.5rem;
}
/* ------------ ENDS ------------- */


/* ==========================================

   CREATE COLOR

======================================*/
/*  create color section   */
.create-color {
   position: relative;
}

.create-color .content {
   width: 100%;
   margin: 10rem auto;
}

.create-color .create-group {
   width: 100%;
}

.create-color .create-group .create-color-box {
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.create-color .create-color-box .display-color-card {
   width: 100%;
   display: grid;
   grid-template-columns: repeat(2, auto);
   grid-gap: 2rem;
   justify-content: center;
   align-items: center;
}

.create-color .display-color-card .display-color {
   width: 30rem;
   height: 25rem;
   background: linear-gradient(to right bottom,
         rgb(30, 116, 232),
         rgb(46, 198, 169));
   border-radius: 10px;
   transition: all ease-in 0.6s;
}

.create-color .display-color-angles {
   position: relative;
   width: 30rem;
   display: grid;
   grid-template-columns: repeat(3,1fr);
   /* justify-content: flex-start; */
   gap: 1rem;
}

.create-color .display-color-angles .btn {
   width: 100%;
   height: 5rem;
   border-radius: 5px;
   /* margin: 1rem; */
   background: var(--brand-gradient);
   /* box-shadow: 6px 6px 15px rgba(0, 0, 0, .2), -6px -6px 15px rgba(255, 255, 255, 0.2); */
   font-size: 1.8rem;
   color: #fff;
   cursor: pointer;
   transition: all ease-in 0.6s;
}

.create-color .display-color-angles .btn:hover {
   transform: scale(1.1);
   
   color: #fff;
   border: none;
}

.create-color .display-color-angles .btn:focus {
   background: var(--card-color);
   box-shadow: inset 6px 6px 15px rgba(0, 0, 0, 0.2),
      inset -6px -6px 15px rgba(255, 255, 255, 0.2);
   color: var(--main-heading);
}

.create-group #col2 .display-color {
   width: 30rem;
   height: 20rem;
   background: linear-gradient(to right bottom,
         rgb(30, 116, 232),
         rgb(46, 198, 169));
   border-radius: 10px;
   transition: all ease-in 0.6s;
}

.create-color .create-color-box .color-input-group {
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 20px 0;
   position: relative;
}

.create-group .color-input-group .color-input-box {
   display: flex;
   flex-direction: column;
}

.create-group .color-input-group .color-input-box label {
   font-size: 1.2rem;
   color: #040d11;
   font-weight: 500;
   margin-bottom: 2px;
   text-transform: uppercase;
}

.color-input-group input[type="color"] {
   -webkit-appearance: none;
   background-color: transparent;
   width: 7rem;
   height: 5rem;
   position: relative;
   transition: all ease-in 0s;
   cursor: pointer;
   border: none;
   outline: none;
}

.color-input-group input[type="color"]::-webkit-color-swatch {
   border-radius: 5px;
   border: none;
   outline: none;
}

.color-input-group #color-input2 {
   margin-left: 10px;
}

.create-color .color-input-group .color-gen-btn {
   display: flex;
   flex-direction: column;
}

.create-color .color-input-group .color-gen-btn label {
   font-size: 1.2rem;
   font-weight: 500;
   color: #040d11;
   text-transform: uppercase;
   margin-bottom: 1rem;
}

.create-color .color-input-group .generate-btn {
   /* width: 10rem; */
   /* height: 4rem; */
   border-radius: 5px;
   font-size: 1.7rem;
   border: none;
   outline: none;
   background: var(--brand-gradient);
   padding: 1.3rem 1.6rem;
   color: #fff;
   margin-left: 10px;
   letter-spacing: 1px;
   text-transform: capitalize;
   font-weight: 600;
}

.create-group .angle-btn {
   transition: all ease-in 0.6s;
}

.create-group .angle-btn span {
   display: inline-block;
}

.create-group .btn5 span {
   transform: rotate(40deg);
}

.create-group .btn6 span {
   transform: rotate(40deg);
}

.create-group .btn7 span {
   transform: rotate(40deg);
}

.create-group .btn8 span {
   transform: rotate(40deg);
}

.create-color .content .code-box {
   position: relative;
   width: 70%;
   height: auto;
   margin: 0 auto;
   border-radius: 10px;
   padding: 1rem;
   box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2),
      -6px -6px 15px rgba(255, 255, 255, 0.2);
}

.create-color .content .code-box .group {
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   width: 100%;
   height: 200px;
   border-radius: 10px;
}

.create-color .content .code-box .group .textarea-group label {
   color: #555;
   font-size: 1.6rem;
   text-transform: uppercase;
   font-weight: 500;
}

.code-box .group textarea {
   background: #fff;
   padding: 50px 20px;
   border: none;
   outline: none;
   width: 100%;
   height: 100%;
   resize: none;
   border-radius: 10px;
   font-size: 1.5rem;
}

.code-box .color-code {
   font-size: 1.7rem;
   font-weight: 500;
   color: var(--text-muted);
   margin: 1.5rem 0;
}

.code-box .color-code.highlight {
   background: dodgerblue;
   padding: 1rem;
   color: #fff;
}

.code-box .btns {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   flex-wrap: nowrap;
   margin: 1rem 0;
}

.code-box .btns .btn {
   padding: 1rem;
   width: 10rem;
   font-size: 1.6rem;
}

.code-box .add-btn {
   position: absolute;
   top: 1rem;
   right: 1rem;
   border: none;
   outline: none;
   width: 10rem;
   background: var(--yellow);
   color: #fff;
   /* margin: 10px 0; */
   border-radius: 20px;
   cursor: pointer;
}

.code-box .btns .copy-code {
   background: var(--green2);
}


.code-box .copy-code.active {
   background: none;
   border: 1.5px solid var(--green3);
   color: var(--green3);
}
/* ---------- ENDS ---------------- */

/* ==========================================

   COLOR COLLECTION

======================================*/
/* color collection */

.color-collection .content {
   width: 100%;
   margin: 50px auto;
}

/* ---------- ENDS ---------------- */


/* ==========================================

   COLOR PICKER

======================================*/
/* color picker  */
.color-range {
   background: #f2f2f2;
   /* padding: 100px; */
}

.color-range .color-picker {
   text-align: center;
   width: 60%;
   padding: 2rem;
   margin: 0 auto;
   background-color: var(--card-color);
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   justify-content: center;
   align-items: center;
   grid-gap: 2rem;
}

.color-picker .slider {
   width: 100%;
   margin: 10px;
}

.color-picker .color-picker-box {
   width: 100%;
   height: 25rem;
   margin-top: 20px;
   border-radius: 8px;
   background-color: rgb(0, 0, 0);
   transition: background-color 0.3s ease-out;
   animation: fadeColor 0.5s ease-out;
}

/* Animation effect to make the color change smooth */
@keyframes fadeColor {
   0% {
      opacity: 0;
   }
   
   100% {
      opacity: 1;
   }
}

.color-range .color-picker .color-code-box {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 2em;
   margin: 2rem 0;
}

.color-code-box .color-code {
   border: 1.5px solid #eee;
   width: 100%;
   padding: 1rem;
   font-size: 1.5rem;
   color: #222;
   outline: none;
   transition: 0.4s;
}

.color-code-box .copy {
   padding: 1rem;
   font-size: 1.5rem;
   border-radius: 5px;
   transition: 0.4s;
}
/* ---------- ENDS ---------------- */

/* ==========================================

   ABOUT

======================================*/
.about {
   position: relative;
   height: auto;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   /* grid-gap: 2rem; */
   align-items: center;
   border-bottom: 1.5px solid #f2f2f2;
   /* background: ; */
}

.about .image {
   text-align: center;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.about .image img {
   width: 50%;
}

.about .text {
   width: 100%;
   height: 100%;
   background: #222;
   /* box-shadow: 6px 6px 15px rgba(0, 0, 0, .2), -6px -6px 15px rgba(255, 255, 255, 0.2); */
   padding: 2rem;
}

.about .text h3 {
   font-size: 2rem;
   font-weight: 500;
   text-transform: capitalize;
}

.about .text .text-group {
   margin: 2rem 0;
}

.about .text .text-group h4 {
   font-size: 1.7rem;
   color: #f2f2f2;
   font-weight: 500;
   text-transform: capitalize;
}

.about .text .text-group p {
   font-size: 1.7rem;
   font-weight: 400;
   color: gray;
   line-height: 2.5rem;
   margin: 1rem 0;
}
.about .text .text-group .btn{
   background: var(--secondary);
}
/* ---------- ENDS ---------------- */


/* ==========================================

   FAQ

======================================*/
.faq-section {}


.highlight {
   color: #f39c12;
}

.faq-subtitle {
   font-size: 18px;
   color: #555;
   margin: 10px 0 40px;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}

/* FAQ Cards */
.faq-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.faq-card {
   /* height: 20rem;
  max-height: auto; */
   display: flex;
   flex-direction: column;
   justify-content: center;
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   border-radius: 12px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   padding: 2rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.faq-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.faq-header .faq-title {
   font-size: 2rem;
   color: #555;
   font-weight: 500;
}

.faq-icon {
   font-size: 24px;
   color: #f39c12;
}

.faq-card p {
   margin-top: 10px;
   color: #444;
   font-size: 1.8rem;
   text-align: left;
}

.faq-card p .highlight {
   color: #f39c12;
   font-weight: bold;
}

.faq-section .more-btn {
   position: relative;
   left: 50%;
   transform: translateX(-50%);
   background: var(--brand-gradient);
   padding: 1rem 2rem;
   font-size: 1.5rem;
   text-transform: capitalize;
   font-weight: 500;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* ---------- ENDS ---------------- */


/* ==========================================

   TEMPLATE PROMOTION

=====================================*/
.template-promotion {
   
   background-color: #f8f8f8;
   /* text-align: center; */
}

.template-promotion .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}



/* Template details container (image + info) */
.template-details {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   align-items: center;
   gap: 20px;
   /* align-items: center; */
}

/* Template image */
.template-image {
   width: 45%;
}

.template-image img {
   width: 100%;
   border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   object-fit: cover;
}

/* Template info section */
.template-info {
   width: 45%;
}

.template-info h3 {
   font-size: 28px;
   color: #222;
   margin-bottom: 15px;
}

.template-info p {
   font-size: 1.9rem;
   color: #222;
   font-weight: 400;
   text-align: left;
   margin-bottom: 20px;
   line-height: 2;
}

.template-info p span.highlight {
   color: var(--yellow);
   font-weight: 500;
}

.template-info ul {
   margin-bottom: 30px;
   padding-left: 20px;
   list-style-type: disc;
}

.template-info ul li {
   margin-bottom: 1rem;
   font-size: 1.7rem;
   color: gray;
}

.cta-button {
   display: inline-block;
   background: var(--brand-gradient);
   color: white;
   padding: 15px 30px;
   font-size: 18px;
   border-radius: 5px;
   text-align: center;
   text-decoration: none;
   margin-top: 20px;
}

.cta-button:hover {
   background-color: #0056b3;
}

/* ---------- ENDS ---------------- */

/* ==========================================

   SHOP PROMOTION

=====================================*/
/* Shop Promotion Section Base */
.shop-promotion {
   max-width: 1200px;
   margin: 5rem auto;
   padding: 0 20px;
   font-family: inherit;
}

.shop-header {
   text-align: center;
   margin-bottom: 3rem;
}

.shop-header h2 {
   font-size: 2rem;
   color: #2c2c2c;
   margin-bottom: 0.5rem;
}

.shop-header .highlight {
   color: #f0a500;
   /* Matching your orange/yellow color theme accent */
}

.shop-header p {
   color: #666;
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.5;
   font-size: 1.6rem;
}

/* Template Responsive Grid Layout */
.shop-promotion .template-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-bottom: 3rem;
}

/* Card Styling (Matches your FAQ card aesthetic) */
.shop-promotion .template-card {
   background: #ffffff;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-promotion .template-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.shop-promotion .card-image-box {
   background: #f8f9fa;
   /* padding: 1.5rem; */
   /* width: 100%; */
   /* height: 25rem; */
   aspect-ratio: 16/9;
   display: flex;
   align-items: center;
   justify-content: center;
   border-bottom: 1px solid #eee;
}

.shop-promotion .card-image-box img {
   /* max-width: 100%; */
   width: calc(100% - 2rem);
   height: calc(100% - 2rem);
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
   border: 5px solid #fff;
   display: block;
}

.shop-promotion .card-content {
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

.shop-promotion .card-content h3 {
   font-size: 1.7rem;
   color: #333;
   margin-bottom: 0.75rem;
}

.shop-promotion .card-content p {
   font-size: 1.4rem;
   color: #666;
   line-height: 1.6;
   margin-bottom: 1.5rem;
   flex-grow: 1;
   /* Keeps the buttons aligned perfectly across uneven descriptions */
}

.shop-promotion .card-content p a {
   color: dodgerblue;
   font-weight: 500;
}

.shop-promotion .card-content p a.active {
   color: dodgerblue;
   text-decoration: underline;
}

.shop-promotion .card-content p a.inactive {
   color: tomato;
}

/* Button Styling (Using your established gradient aesthetic) */
.shop-promotion .shop-btn {
   display: inline-block;
   text-align: center;
   background: linear-gradient(135deg, #f0a500, #e67e22);
   color: #fff;
   text-decoration: none;
   padding: 0.75rem 1.5rem;
   border-radius: 8px;
   font-weight: bold;
   font-size: 1.5rem;
   transition: opacity 0.2s;
}

.shop-promotion .shop-btn:hover {
   opacity: 0.9;
}

/* Main Shop Button at the bottom */
.shop-promotion .shop-footer-action {
   text-align: center;
}

.shop-promotion .visit-shop-btn {
   display: inline-block;
   padding: 1rem 2.5rem;
   background-color: #222;
   color: #fff;
   text-decoration: none;
   font-weight: bold;
   border-radius: 30px;
   font-size: 1.5rem;
   transition: background-color 0.2s;
}

.shop-promotion .visit-shop-btn:hover {
   background-color: #444;
}


/* ==========================================

   FOOTER

======================================*/
/*    footer section   */
.footer {
   background-color: #000;
   color: #fff;
   padding: 50px;
}

.footer-container {
   max-width: 1300px;
   margin: 5rem auto;
}

.footer .footer-container .row {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   /* First column is larger */
   gap: 2rem;
}

.footer .logo {
   font-size: 2.3rem;
   font-weight: bold;
   color: rgba(255, 255, 255, 0.4);
}

.footer .row .col p {
   font-size: 1.7rem;
   color: gray;
   font-weight: 400;
   line-height: 2.5rem;
   margin: 1rem 0;
}

.footer .heading {
   font-size: 2rem;
   color: var(--yellow);
   text-transform: capitalize;
   font-weight: 500;
}

.footer ul {
   margin: 1rem 0;
}

.footer ul li {
   margin: 1rem 0;
}

.footer ul li a {
   display: inline-block;
   font-size: 1.6rem;
   color: gray;
   font-weight: 500;
   text-transform: capitalize;
   transition: 0.4s ease;
}

.footer ul li a:hover {
   text-decoration: underline;
   color: var(--gold);
}

.footer .social-icons {
   display: flex;
   align-items: center;
   gap: 2rem;
}

.footer .social-icons a {
   position: relative;
   display: inline-block;
   width: 4rem;
   height: 4rem;
   border-radius: 5px;
   background: rgba(255, 255, 255, 0.2);
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2.5rem;
   color: var(--yellow);
   transition: 0.4s ease;
}
.footer .social-icons a .icon{
   width: 3rem;
   height: 3rem;
}
.footer .social-icons a.twitter {
   color: dodgerblue;
}

.footer .social-icons a.youtube {
   color: tomato;
}

.footer .social-icons a.patreon {
   color: #fff;
}

.footer .social-icons a.pinterest {
   color: red;
}

.footer .social-icons a:hover {
   transform: translateY(0px);
   background: var(--brand-gradient);
   color: #fff;
}

.footer .copyright {
   text-align: center;
   font-size: 1.6rem;
   color: #666;
}


/* ---------- ENDS ---------------- */
