/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --green-blue-crayola: hsla(240, 1%, 17%, 0.948);
  --prussian-blue: hsl(202, 72%, 15%);
  --eerie-black: hsl(210, 11%, 15%);
  --dark-orange: hsl(203, 100%, 97%);
  --alice-blue: hsl(203, 100%, 97%);
  --light-gray: hsl(0, 0%, 80%);
  --indigo-dye: hsl(202, 64%, 26%);
  --cultured-1: hsl(0, 0%, 94%);
  --cultured-2: hsl(0, 0%, 95%);
  --cultured-3: hsl(0, 0%, 95%);
  --plutinum: hsl(0, 0%, 91%);
  --black_60: hsla(0, 0%, 0%, 0.6);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 24%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-1: 6rem;
  --fs-2: 5rem;
  --fs-3: 4rem;
  --fs-4: 3rem;
  --fs-5: 2.2rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;
  --fs-10: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * shadow
   */
   
  --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0px 40px 60px hsla(202, 75%, 47%, 0.7);
  --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
time,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--onyx);
  font-size: 1.6rem;
  line-height: 1.7;
  
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 12px; }

::-webkit-scrollbar-track { background-color: var(--cultured-2); }

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
  border: 2px solid var(--cultured-2);
}

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.2;
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-3);
  text-transform: uppercase;
}

.h2,
.h3 { color: var(--prussian-blue); }

.h2 { font-size: var(--fs-4); }

.h3 { font-size: var(--fs-5); }

.img-holder {
  background-color: var(--light-gray);
  aspect-ratio: var(--width) / var(--height);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  color: var(--dark-orange);
  text-transform: uppercase;
  font-size: var(--fs-6);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  letter-spacing: 3px;
  margin-block-end: 10px;
}

.section-text { line-height: 1.4; }

.btn {
  position: relative;
  color: var(--white);
  background-color: var(--dark-orange);
  max-width: max-content;
  font-size: var(--fs-9);
  letter-spacing: 1px;
  padding-block: 10px;
  padding-inline: 15px 50px;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  transition: var(--transition);
}

.btn::before {
  top: 50%;
  right: 15px;
  width: 25px;
  height: 1px;
  background-color: var(--white);
}

.btn::after {
  top: -6px;
  right: -6px;
  bottom: -6px;
  width: 20px;
  border: 2px solid var(--dark-orange);
  z-index: -1;
}

.btn:is(:hover, :focus)::before { width: 33px; }

.btn:is(:hover, :focus)::after { width: 40px; }

.grid-list {
  display: grid;
  gap: 30px;
}

.btn-link {
  color: var(--dark-orange);
  font-size: var(--fs-7);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.btn-link > * {
  transform: translateX(-22px);
  transition: var(--transition);
}

.btn-link:is(:hover, :focus) > * { transform: translateX(0); }

.w-100 { width: 100%; }





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-contact { display: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 15px;
  padding: 15px 100px;
  z-index: 4;
  transition: var(--transition);
}

.header.active { background-color: var(--green-blue-crayola); }

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}




  .logo-container {
    display: flex;
    align-items: center;
  }
  

  .logo-container img {
    width: 75px !important;
    height: 70px !important;
  }
  
  .logo-text{
    font-family: var(--ff-oswald);
    color: var(--white);
    font-size: 25px !important;
    padding-left: 0px !important;
      font-weight: 600;
     
  }

.nav-open-btn {
  color: var(--white);
  font-size: 35px;
}

.nav-open-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  visibility: visible;
  transform: translateX(300px);
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-end: 1px solid var(--plutinum);
  padding: 30px 20px;
}

.navbar-top .logo {
  color: var(--onyx);
  font-size: 3rem;
}

.nav-close-btn { font-size: 25px; }

.nav-close-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--plutinum); }

.navbar-link {
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  transition: var(--transition);
}

.navbar-link:is(:hover, :focus) {
  background-color: var(--cultured-1);
  color: var(--dark-orange);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_60);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  place-content: center;
  padding-block-start: calc(var(--section-padding) + 85px);
  z-index: 1;
}

.hero-content {
  background-color: transparent;
  color: var(--white);
  text-align: center;
  padding: 0px;
}

.hero-title .span {
  color: var(--dark-orange);
  font-size: 60px;
  letter-spacing: 1.8px;
  font-weight: var(--fw-600);
}

.hero-text { margin-block: 20px 15px; }

.btn-outline {
  max-width: max-content;
  margin-inline: auto;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  border: 1px solid var(--white);
  padding: 8px 20px;
  transition: var(--transition);
}

.btn-outline:is(:hover, :focus) {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  animation: move 2s ease-in-out infinite alternate;
}

.hero .shape-1 {
  top: 100px;
  left: 30px;
}

.hero .shape-2 {
  bottom: 80px;
  right: 30px;
}

.hero-btn{
  width: 160px;
  height: 0px;
  text-align: center;
  margin-top: 0px;
  
}
.hero-btn a{
  border: 3px solid #ffffff;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 10px;
  
}
.hero-btn a:hover{
  background-color: transparent;
  color: white;
  border: 3px solid red;
  transition: all 0.3s ease-in-out;
  
}
@keyframes move {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
  position: relative;
  box-shadow: var(--shadow-2);
  max-width: 300px;
  margin-block-end: 60px;
  background-color: white;
}

.about .abs-img-2 { display: none; }

.about .abs-img-1 {
  position: absolute;
  bottom: 40px;
  right: 0;
  animation: move 2s ease-in-out infinite alternate;
}

.about :is(.section-title, .section-text) { margin-block-end: 20px; }

.about-list { margin-block-end: 40px; }

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-text { font-size: var(--fs-8); }

.about-icon {
  min-width: max-content;
  color: black;
  margin-block-start: 8px;
}

.about-item:not(:last-child) { margin-block-end: 10px; }





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service { background-color: var(--alice-blue); }

.service :is(.section-subtitle, .section-title, .section-text) { text-align: center; }

.service .section-title { margin-block-end: 20px; }

.service .section-text { margin-block-end: 50px; }

.service-card {
  background-color: var(--white);
  padding: 30px;
  border: 20px solid var(--cultured-3);
  transition: var(--transition);
}

.service-card:is(:hover, :focus-within) { border-color: var(--dark-orange); }

.service-card .card-icon { margin-block-end: 30px; }

.service-card .card-title .span {
  display: inline-block;
  color: #363637;
  font-size: var(--fs-3);
  margin-inline-end: 15px;
}

.service-card .card-text { margin-block: 10px 20px; }




/*-----------------------------------*\
  #Product List
\*-----------------------------------*/
.title-wrapper{
  padding-bottom: 30px;
}
#container {
  display: flex;
}

#filters {
  flex: 0 0 200px; /* Fixed width for filter section */
}

#products {
  flex: 1; /* Take remaining space */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 0px;
}

.product {
  width: calc(33.33% - 20px); /* Adjust width based on number of products per row */
  margin: 10px;
}

.product-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.product-card:hover {
  background-color: #e5e7e9;
}

.product img {
  max-width: 100%;
  border-radius: 10px;
  height: 300px;
}

.product-info {
  text-align: center;
}
.product-info h3{
  color: rgba(35, 35, 35, 0.697);
  padding-top: 12px;
}
#filters{
  display: flex;
  flex-direction: column;
  max-width: 400px;
}
.filter-container {
  display: flex;
  flex-direction: row; 
  max-height: 555px; 
  padding: 10px;
  background-color: rgba(188, 190, 194, 0.232);
}


.filter-container::-webkit-scrollbar {
  height: 10px;
  
}

.filter-container::-webkit-scrollbar-thumb {
  background-color: rgba(125, 120, 120, 0.5);
  border-radius: 4px;
}

.filter-container::-webkit-scrollbar-track {
  background: rgba(6, 6, 6, 0.238);
}

.filter-btn {
  width: 150px;
  height: 20px;
  padding: 10px 5px;
  margin: 5px;
  cursor: pointer;
  border: none;
  background-color: #f0f0f0;
  border-radius: 5px;
  
}


.filter-btn.active {
  background-color:#1e90d2; /* Change to your desired active color */
  color: white; /* Change to contrast color for better readability */
}


.product-card-btn-list {
  display: flex;
  justify-content: center ;
  margin-top: 10px;
}

.product-card-btn {
  padding: 5px 15px;
  margin: 0 5px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: black;
  border: 1px solid gray;
  font-size: 16px;
  cursor: pointer;
  
}

.product-card-btn:hover {
  background-color:#1e90d2;
  color: white;
  transition: all 0.4s ;
}


/*-----------------------------------*\
  #Why Should Choose Us
\*-----------------------------------*/
.why-choose-us-image {
  z-index: -1;
  animation: move 2s ease-in-out infinite alternate;
}

/*-----------------------------------*\
  #Request Info Form
\*-----------------------------------*/

.modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  
  
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 0px;
  padding: 0px;
  font-size: 24px;
  color: #333;
}

.modal-content label {
  display: block;
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  color: #555;
}

.modal-content input,
.modal-content textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
}

.modal-content textarea {
  height: 70px;
  resize: vertical;
}

.modal-content .submit-btn {
  background-color: #363637;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
  margin: 0px;
  text-transform: uppercase;
  transition: background-color 0.3s;
  border: 2px solid  #363637;
}

.modal-content .submit-btn:hover {
  background-color: white;
  border: 2px solid  #363637;
  color: #363637;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #1e90d2;
}

.close:hover {
  color: #ea0b0b;
}


#messageBox {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  display: none;
  text-align: center;
}
#messageBox.success {
  background-color: #4CAF50; /* Green */
  color: white;
}
#messageBox.error {
  background-color: #f44336; /* Red */
  color: white;
}

/* FAQ Sections  */

.faq-sec { 
  display: grid;
  gap: 100px;
  grid-template-columns: 1fr 1fr;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/
.blog{
  padding-top: 40px;
}

.blog :is(.section-subtitle, .section-title, .section-text) { text-align: center; }

.blog .section-text { margin-block: 20px 50px; }

.blog-card .card-content { position: relative; }

.blog-card .card-meta {
  background-color: var(--prussian-blue);
  color: var(--white);
  text-align: center;
  font-size: var(--fs-5);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  line-height: 1.5;
  max-width: max-content;
  margin-inline: auto 20px;
  margin-block: -80px 20px;
  padding: 20px 25px;
  box-shadow: -8px 8px 0 var(--dark-orange);
}

.blog-card .card-meta .span {
  color: var(--dark-orange);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  line-height: 0.75;
}

.blog-card .card-text { margin-block: 15px; }

/*-----------------------------------*\
  #FAQ SECTION
\*-----------------------------------*/

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question::after {
  content: "+"; /* Default icon */
  font-size: 20px;
  transition: transform 0.5s;
}

.faq-question[aria-expanded="true"]::after {
  content: "-"; /* Change to minus when expanded */
}

.faq-answer {
  display: none;
  padding: 10px;
  font-size: 14px;
  color: white;
  background-color: #363637;
}


/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter { background-color: var(--dark-orange); }

.newsletter .img-holder {
  background-color: transparent;
  margin-block-end: 20px;
  max-width: max-content;
}

.newsletter .section-title { margin-block-end: 20px; }

.email-field {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: var(--fs-9);
  height: 65px;
  padding-inline: 20px;
  margin-block-end: 10px;
  outline: none;
  transition: var(--transition);
}

.email-field:focus { box-shadow: 0 2px 2px hsla(0, 0%, 0%, 0.4); }

.newsletter-btn {
  background-color: #1e90d2;
  color: var(--white);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-700);
  padding: 8px 20px;
  width: 300px;
}


/* Subscribe thank  */


.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-field {
    padding: 10px;
    margin-bottom: 10px;
    width: 300px;
    font-size: 16px;
}

.newsletter-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#thank-you-message {
    margin-top: 20px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    background-color: rgb(252, 255, 252);
}

.hidden {
    display: none;
}
/* ....................................... */
/* Add this CSS */
#thank-you-popup {
  display: none; /* Initially hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  background-color: white;
  z-index: 1000; /* Ensure it's above other elements */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: rgba(63, 63, 63, 0.862);
  justify-content: center;

}

#popup-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999; /* Ensure it's below the pop-up but above other content */
}
.thank-you-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-icon img{
  width: 130px;
  height: 130px;
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: #363637;
  color: white !important;
  color: var(--prussian-blue);
  
}

.footer-top {
  display: grid;
  gap: 40px;
}

.footer .logo {
  color: var(--prussian-blue);
  font-weight: var(--fw-800);
  font-size: 3.2rem;
}

.footer-text { margin-block: 10px 30px; }

.social-list {
  display: flex;
  gap: 10px;
}

.social-link {
  background-color: white;
  color: blue;
  font-size: 20px;
  padding: 12px;
  transition: var(--transition);
  border-radius: 50%;
}

.social-link:is(:hover, :focus) { background-color: blue; color:white ; transition: 0.5s ease-in-out; }

.footer-list-title {
  font-size: var(--fs-6);
  max-width: max-content;
  padding-block-end: 10px;
  border-block-end: 3px solid var(--dark-orange);
  margin-block-end: 20px;
}

.footer-link { padding-block: 6px; }

.footer-bottom {
  padding-block: 40px;
  border-block-start: 1px solid var(--prussian-blue);
  font-size: var(--fs-9);
  color: white;
}

.copyright-link { display: inline-block; }


/*-----------------------------------*\
  #WHATSAPP
\*-----------------------------------*/

/* Styling for the floating WhatsApp button */
/* Styling for the floating WhatsApp button */
#whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s;
  animation: upDown 2s infinite;
  z-index: 100;
}

#whatsapp-float:hover {
  transform: scale(1.1);
}

#whatsapp-float i {
  font-size: 30px;
}

@keyframes upDown {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.hero-contact{
  display: flex;
  justify-content: center;
  align-items: center;
}



/*-----------------------------------*\
  #MEDIA QUERISE
\*-----------------------------------*/

/**
 * responsive for larger than 400px screen
 */

@media (min-width: 300px) {

  /**
   * REUSED STYLE
   */
   .header {
    padding-block: 15px;
    padding: 15px 0px;
  }

  

  .btn {
    font-size: var(--fs-7);
    padding-inline: 30px 60px;
  }

  /* HEADER LOGO */

  .logo-container img {
    width: 32px;
    height: 33px;
  }
  
  .logo-text{
    font-size: 22px !important;
    padding-left: 10px;
      font-weight: 600;
     
  }

  /**
   * HEADER
   */

  .header-contact {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
    line-height: 1.2;
    margin-inline-start: auto;
  }

.filter-btn {
  width: 150px;
  height: 60px;
  padding: 5px 5px;
  margin: 10px;
  cursor: pointer;
  border: none;
  background-color: #f0f0f0;
  border-radius: 5px;
  
}



  .header .contact-label {
    text-transform: uppercase;
    font-size: var(--fs-9);
  }

  .header .contact-number {
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    letter-spacing: 1px;
  }

  .header .contact-icon {
    font-size: 26px;
    opacity: 0.6;
  }
  .contact-whatsapp {
    font-size: 40px;
    opacity: 0.6;
    color: greenyellow;
    padding-left: 10px;
  }
.contact-number{
  font-size: 25px;
  margin-left: 0px;
  padding: 10px 10px 10px 5px;
}

.hero-title .span { font-size: 20px; } 




  /**
   * ABOUT
   */

   .about-image {
    z-index: -1;
    animation: move 2s ease-in-out infinite alternate;
  }

  .about .abs-img-2 {
    display: block;
    position: absolute;
    width: 400px;
    bottom: 0;
    left: 50px;
    z-index: -1;
  }

  .about .abs-img-1 { right: -200px; }

  /* Product List  */
  #container {
    display: grid;
  }
  
  #filters {
    flex: 0 0 200px; /* Fixed width for filter section */
  }
  
  #products {
    flex: 1; /* Take remaining space */
    display: grid;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .product {
    width: calc(100% - 5%); /* Adjust width based on number of products per row */
    margin: 10px;
  }
  /* #filters{

    display: flex;
    flex-direction: row;
  } */
  #filters{
    display: flex;
    flex-direction: row;
  }
  .filter-container {
    display: flex;
    flex-direction: row; 
    overflow-y: auto;
    overflow-x: auto;
    max-height: 555px; 
    padding: 10px;
  }

  .filter-btn {
    width: 200px;
    height: 60px;
    padding: 5px 5px;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    
  }
  
  .faq-sec { 
    display: flex;
    flex-wrap: wrap;
  }
  #infoFormModal{
    width: 100%;
  }

}





/**
 * responsive for larger than 640px screen
 */

@media (min-width: 640px) {

  /**
   * REUSED STYLE
   */

   .header {
    padding-block: 15px;
    padding: 15px 0px;
  }

  .h1 { --fs-3: 5rem; }

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  /* HEADER LOGO  */

  .logo-container img {
    width: 50px;
    height: 50px;
  }
  
  .logo-text{
    font-size: 25px !important;
    padding-left: 20px;
      font-weight: 600;
     
  }
  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header .logo { font-size: 1rem; }



  /**
   * HERO
   */

  .hero { justify-content: flex-start; }

  .hero .shape-1 { left: 45px; }

  .hero-content {
    background-color: transparent;
    text-align: left;
  }

  .hero-title .span { font-size: 30px; } 

  .hero-text { max-width: 30ch; }

  .btn-outline { margin-inline: 0; }

  /* Product List  */
  #container {
    display: grid;
  }
  
  #filters {
    flex: 0 0 200px; /* Fixed width for filter section */
  }
  
  #products {
    flex: 1; /* Take remaining space */
    display: grid;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  /* #filters{
    display: flex;
    flex-direction: row;
  } */
  

  #filters{
    display: flex;
    flex-direction: row;
  }
  .filter-container {
    display: flex;
    flex-direction: column; 
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 555px; 
    padding: 10px;
  }
  .filter-btn {
    width: 200px;
    height: 60px;
    padding: 5px 5px;
    margin: 5px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    
  }
  
  .faq-sec { 
    display: flex;
    flex-wrap: wrap;
  }
}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */
   .header {
    padding-block: 15px;
    padding: 15px 0px;
  }

  .container { max-width: 720px; }

  .h1 { --fs-3: 6rem; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HERO
   */

   .hero-title .span { font-size: 40px; } 

  .hero-text {
    font-size: var(--fs-7);
    max-width: 40ch;
    margin-block-end: 20px;
  }

  .btn-outline {
    font-size: var(--fs-7);
    padding: 0px 0px;
    
  }



  /**
   * FEATURES
   */

  .feature-card::before { --fs-1: 10rem; }



  /**
   * PROJECT
   */

  .project-list { gap: 80px; }

  .project-item { min-width: calc(50% - 40px); }



  /**
   * NEWSLETTER
   */

  .newsletter { margin-block-start: 110px; }

  .newsletter .container { position: relative; }

  .newsletter .newsletter-banner {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin-block-end: 0;
  }

  .newsletter-content {
    max-width: 355px;
    margin-inline-start: auto;
  }

  .newsletter .section-title { --fs-4: 4rem; }

  .newsletter-btn {
    font-size: var(--fs-5);
    padding: 10px 30px;
    background-color:  #363637;
  }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }


  /* Product List  */
  #container {
    display: flex;
  }
  
  #filters {
    flex: 0 0 200px; /* Fixed width for filter section */
  }
  
  #products {
    flex: 1; /* Take remaining space */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .product {
    width: 100%; /* Adjust width based on number of products per row */
    margin: 10px;
  }
  #filters{
    display: flex;
    flex-direction: column;
  }
  .filter-container {
    display: flex;
    flex-direction: column; 
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 555px; 
    padding: 10px;
  }
  .filter-btn {
    width: 200px;
    height: 60px;
    padding: 5px 5px;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    
  }

  .faq-sec { 
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
  }
 
  
}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */
   .header {
    padding-block: 15px;
    padding: 15px 100px;
  }

  :root {

    /**
     * typography
     */

    --fs-4: 4.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */
  
  .container { max-width: 960px; }

  .h1 { --fs-3: 10rem; }

  .section-subtitle { --fs-6: 3rem; }

  .section-text {
    max-width: 70ch;
    margin-inline: auto;
  }

  .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */
  
  .nav-open-btn,
  .navbar-top,
  .navbar-link > ion-icon { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 5px;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link { color: var(--white); }

  .navbar-link:is(:hover, :focus) { background-color: transparent; }

  .header-contact { margin-inline-start: 0; }



  /**
   * HERO
   */
  
  .hero { grid-template-columns: 1fr; }

  .hero-content { padding: 0; }

  .hero-title .span { font-size: 60px; } 



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner { margin-block-end: 0; }

  .about .abs-img-1 { right: -100px; }

  .about :is(.section-title, .section-text) { margin-block-end: 35px; }



  /**
   * FEATURE
   */

  .feature .title-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: self-end;
  }

  .feature .section-text { margin-block-end: 0; }

  .feature-list { margin-block-start: 120px; }

  .feature-card { padding-block-start: 80px; }

  .feature-card::before {
    --fs-1: 16rem;
    position: absolute;
    top: -90px;
    left: 20px;
  }



  /**
   * PROJECT
   */

  .project-item { min-width: calc(33.33% - 53.33px); }



  /**
   * BLOG
   */
   .blog{
    margin-bottom: 0px;
   }

  .blog-list { grid-template-columns: 1fr 1fr; }



  /**
   * NEWSLETTER
   */

  .newsletter { padding-block: 30px; }

  .newsletter .newsletter-banner { bottom: -30px; }

  .newsletter-content {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }



  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
    justify-items: self-end;
  }

  .copyright { text-align: center; }

  /* Product List  */
  #container {
    display: flex;
  }
  
  #filters {
    flex: 0 0 200px; /* Fixed width for filter section */
  }
  
  #products {
    flex: 1; /* Take remaining space */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    
  }
  .product {
    width: calc(50% - 20px); /* Adjust width based on number of products per row */
    margin: 10px;
  }
  #filters{
    display: flex;
    flex-direction: column;
  }
  .filter-container {
    display: flex;
    flex-direction: column; 
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 555px; 
    padding: 10px;
  }

  .filter-btn {
    width: 150px;
    height: 60px;
    padding: 5px 5px;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    
  }
 
  .faq-sec { 
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
  }
  
}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */
   .header {
    padding-block: 15px;
    padding: 15px 100px;
  }


  .container { max-width: 1180px; }

  .h1 { --fs-3: 12rem; }



  /**
   * HEADER
   */

  .header .contact-number { --fs-6: 3rem; }



  /**
   * HERO
   */

  .hero {
    padding-block-start: 150px;
    background-position: left;
  }

  .hero-title .span { font-size: 60px; } 

  .hero-text { --fs-7: 2.4rem; }



  /**
   * ABOUT
   */

  .about-banner { max-width: 370px; }

  .about .abs-img-2 { width: max-content; }



  /**
   * NEWSLETTER
   */

  .newsletter-content {
    max-width: 840px;
    grid-template-columns: 0.8fr 1fr;
  }



  /**
   * FOOTER
   */

  .footer-top { padding-block: 60px; }
  

  /* Product List  */
  #container {
    display: flex;
  }
  
  #filters {
    flex: 0 0 200px; /* Fixed width for filter section */
  }
  
  #products {
    flex: 1; /* Take remaining space */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .product {
    width: calc(33.33% - 20px); /* Adjust width based on number of products per row */
    margin: 10px;
  }
  #filters{
    display: flex;
    flex-direction: column;
  }
  .filter-container {
    display: flex;
    flex-direction: column; 
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 555px; 
    padding: 10px;
  }
  .filter-btn {
    width: 150px;
    height: 60px;
    padding: 5px 5px;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    
  }
  
  .faq-sec { 
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
  }
}


