* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {   
    scroll-behavior: smooth;
}

body {
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Main Scroll Button Container */
#scrollToTopBtn {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #009C99;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

#scrollToTopBtn.show {
  bottom: 30px;
  opacity: 1;
}

/* Pulsing Ring (style) */
#scrollToTopBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 255, 246, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 1.5s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

#scrollToTopBtn:hover {
  background-color: #009C99;
}

/* Styling the Navigational Bar of the main page*/
#hero-video-background {
    height: 100vh;
    color: #fff;
    position: relative;
    margin-top: 0;
}

#hero-video-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 37, .8);
    z-index: -1;
}

#hero-video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#video1.active,
#video2.active {
  opacity: 1;
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 70px;
}

nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav a.active {
  color: #009C99;
  font-weight: 700;
  border-radius: 5px;
}

nav a:hover {
    color: #009C99;
}

nav li:first-child {
    margin-right: auto;
}

nav li:first-child:hover {
    opacity: 70%;
}

.comp-logo {
    inline-size: 130px;
}

.home-btn {
    color: #009C99;
}

.home-btn:hover {
    opacity: 70%;
}

.hero-text {
    margin-left: 15%;
    margin-top: 20%;
    line-height: 4rem;
}

.hero-text p:nth-child(1) {
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
}

.hero-text p:nth-child(2) {
    font-size: 1rem;
    font-size: clamp(1rem, 0.8717948717948718rem + 0.547008547008547vw, 1.2rem);
}

#hero-highlight {
    color: #009C99;
}

/* Styling the contact button on the nav menu list*/
#nav-button1 {
    background-color: #009C99;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition-duration: 0.4s;
    border: 2px solid #009C99;
    color: #fff;
    margin-right: 30px;
}

#nav-button1:hover {
    color:#009C99;
    background-color: #fff;
}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.page-transition.fade-out {
  opacity: 0;
}


/* Background color for the main products content on the products page*/
.products-section1 {
    margin: auto;
    max-width: 80%;
    padding-bottom: 90px;
    border-width: 80%;
}

/* Header below the hero section */
.craft-hearder h1{
    text-align: center;
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
    padding-top: 5rem;
}

.craft-hearder #quality{
    background-color: #009c99b0;  /*#D7A86E*/
    padding: 10px 10px;
    border-radius: 10px;
    color: #fff;
}

.craft-description {
    text-align: center;
    padding-top: 40px;
    font-size: 1.2rem;
    opacity: 50%;
    line-height: 1.4rem;
}

/* Styling the Products on the products Page */
.products-head {
    text-align: center;
    padding-top: 40px;
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
    padding-bottom: 10px;
}

.products-head h3::after {
    content: '';
    display: block;
    width: 220px;
    height: 5px;
    background-color: #009C99;margin: auto;
    margin-top: 10px;
}

.products-section {
    padding: 0 1rem 8rem 1rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
  
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    column-gap: 20px;
    row-gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: start;
}

.product-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    column-gap: 10px;
    row-gap: 3rem;
    max-width: 830px;
    width: 100%;
    justify-content: center;
    align-items: start;
    margin-top: 2rem;
}
  
.product-card {
    background-color: rgba(250, 235, 215, 0.482);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 400px;
}
  
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
  
.product-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}
  
.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1f1f1f;
}
  
.product-card .pencil {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #444;
    text-align: center;
}
  
.pencil-image {
    border-top: 7px solid #009C99;
}
  
.pencil p {
    line-height: 2rem;
}
  
.pencil p img {
    width: 12px;
    height: auto;
}
  
.pencil h3 img {
    width: 24px;
    height: auto;
}
  
.pencil h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
}
  
.product-card .usb {
    /* margin-bottom: 1rem; */
    font-size: 0.95rem;
    color: #444;
    text-align: center;
}
  
.usb-image {
    border-top: 7px solid #db36a4;
}

.usb p {
    line-height: 2rem;
}

.usb p img {
    width: 12px;
    height: auto;
}
  
.usb h3 img {
    width: 14px;
    height: auto;
}
  
.usb h3 {
    padding-top: 11px;
    font-size: 1.4rem;
}
  
.bold-us {
    font-weight: 700;
}
  
.charcoal-image {
    border-top: 7px solid #96C93D;
}

.charcoal h3 {
    padding-top: 10px;
}
.charcoal h3 img {
    width: 12px;
    height: auto
}
  
.charcoal p img {
    width: 12px;
    height: auto
}

.charcoal p {
    line-height: 2rem;
}
  
.charcoal h3 {
    font-size: 1.4rem;
}
  
.product-card blockquote {
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
    padding-left: 1rem;
}
  
.product-card blockquote img {
    width: 12px;
    height: auto;
}

.product-card .quote-light {
    padding-bottom: 20px;
}
  
@media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .product-grid2 {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .product-grid:nth-child(3) {
      
    }
}
  
@media (max-width: 600px) {
    .section-title {
      font-size: 1.5rem;
    }
    .product-card h3 {
      font-size: 1rem;
    }
    .product-card ul, .product-card blockquote {
      font-size: 0.9rem;
    }
    .product-card {
      justify-content: center;
      align-items: center;
    }
    /* .products-section{
      margin-left: 3.5rem;
    } */
}

/* Styling the Products request button */
.product-purchase-form {
    background: #EEAECA;
    background: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    width: 100%;
    max-width: 860px;
    margin: auto;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    padding-top: 2rem;
}

.product-purchase-form p{
    line-height: 1.4rem;
}

.product-purchase-form h1{
    font-size: 1.6rem;
    font-size: clamp(1.6rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
}

/* Request Button */
.request-btn {
    background: #009c94;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px;
    transition-duration: 0.4s;
}
  
.request-btn:hover {
    background: #04040452;
    color: black;
}

/* Popup Form Container */
.form-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 650px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    overflow-y: auto;
    max-height: 98vh;
    text-align: left;
}
  
/* Form Container */
.form-container h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}
  
.form-container label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 600;
    color: #444;
}
  
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 7px;
    border: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.95rem;
}
  
.form-container input:focus,
.form-container textarea:focus {
    border: 1px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}
  
/* Product Quantity Group */
.product-qty > div {
    margin-bottom: 12px;
}
  
.product-qty label {
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
  
/* Textarea */
textarea {
    resize: vertical;
    min-height: 90px;
}
  
/* Submit Button */
.submit-btn {
    background: #009c94;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 20px;
    cursor: pointer;
    transition-duration: 0.4s;
}

.submit-btn:hover {
    opacity: 80%;
}
  
/* Close Button (Top) */
.form-close {
    position: absolute;
    top: 14px;
    right: 20px;
    background-color: #dc3545;
    color: white;
    font-size: 22px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
}
  
.form-close:hover {
    opacity: 0.75;
}
  
/* Alert Box */
.alert-box {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}
  
.alert-close {
    position: absolute;
    top: 8px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

/* Global Impact descriptions */
.globe-intro {    
    text-align: center;
    padding: 60px 0px 20px 0px;
}

.globe-intro h3 {
    font-size: 1rem;
    font-size: clamp(1rem, -0.28205128205128216rem + 5.47008547008547vw, 3rem);
    padding-bottom: 1rem;
}

.globe-intro p {
    line-height: 1.4rem;
    font-size: 1.2rem;
    opacity: 60%;
}

/* Styling the sustainable header and descriptions */
.sustainable-section {
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    column-gap: 1rem;
    padding-bottom: 60px;
    position: relative;
    padding: 2rem;
    margin: auto;
}

.eco-friendly,
.recycling,
.sustainability-goal {
    width: 42%;
    height: 180px;
    padding: 0 10px;
    font-size: 1.1rem;
}

.eco-friendly h3,
.recycling h3,
.sustainability-goal h3 {
    text-align: center;
    padding-bottom: 20px;
}

.eco-friendly img,
.recycling img,
.sustainability-goal img {
    margin: auto;
    display: block;
    padding-bottom: 15px;
    width: 80px;
}

.sustainable-section p {
    line-height: 1rem;
    text-align: center;
}

.float-icon {
    position: absolute;
    right: 90px;
    opacity: 10%;
    animation: blink 1s steps(1, start) infinite;
}

@keyframes blink {
    /* 0% { opacity: 1; } */
    50% { opacity: 0; }
    100% { opacity: 30%; }
}

.float-icon2 {
    position: absolute;
    left: 100px;
    top: 190px;
    /* z-index: -1; */
    animation: blink 1s steps(1, start) infinite;
}

/* Styling the details of the products descriptions */
.section1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in center */
    padding: 40px 80px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #d7a86e52;
}

.section2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in center */
    padding: 40px 80px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.section3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in center */
    padding: 40px 80px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #d7a86e52;
}

.section4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in center */
    padding: 40px 80px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.section5 {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in center */
    padding: 40px 80px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #d7a86e52;
    margin-bottom: 8rem;
}

.image-container {
    flex: 1 1 50%;
    padding: 10px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.display-row-usb {
    padding-top: 5px;
    width: 100%;
    display: flex;
}

.display-row-usb img {
    display: inline;
    width: 50%;
}

.content {
    flex: 1 1 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-inner {
    max-width: 600px;
    margin: 0 auto;
}

.content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.content h3 {
    color: #0097a7;
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section1,
    .section2 {
      flex-direction: column;
      align-items: stretch;
      padding: 20px;
    }

    .image-container,
    .content {
      flex: 1 1 100%;
      padding: 10px 0;
    }

    .content {
      align-items: center;
      text-align: center;
    }

    .content h2 {
      font-size: 1.6rem;
    }

    .content h3 {
      font-size: 1.2rem;
    }
    
}

/* design on top of the footer */
.design-part {
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202, 0.5) 0%, rgba(34,193,195,1) 100%);
    max-width: 100%;
    height: 0.5rem;
}

/* Styling the footer on the Products page */
.service-contact-container {
    max-width: 100%;
    position: relative;
}

.service-contact-container .footer-background-image img {
    position: absolute;
    object-fit: cover;
    object-position: center;
    max-width: 50%;
    left: 40%;
    top: 10%;
    margin: auto;
    z-index: -1;
}

.service-contact-container .footer-background-image img:nth-child(1) {
    left: 0%;
}

.service-contact-container .footer-background-image img:nth-child(2) {
    right: 0%;
    bottom: 0;
}

.service-contact-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 255, 251, 0.229);
    z-index: -2;
}

.service-contact-form {
    max-width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 200px;
}

.form-1,
.form-2 {
    padding-top: 70px;
    padding-bottom: 70px;
}

/*Styling the social media buttons on the main home page*/
.social-media-btn {
    display: flex;
    align-items: center;
    column-gap: 5px;
    flex-wrap: wrap;
}

.fa {
    padding: 15px;
    font-size: 20px;
    inline-size: 48px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 12px;
    z-index: -100;
}
  
.fa:hover {
    opacity: 0.7;
}
  
.social-media-btn .fa-facebook {
    background: #3B5998;
    color: white;
}
  
.social-media-btn .fa-twitter {
    background: #55ACEE;
    color: white;
}

.social-media-btn .fa-instagram {
    background: #e41717;
    color: white;
}

.social-media-btn a img {
    width: 47px;
    vertical-align: middle;
    padding-bottom: 3px;
    border-radius: 7px;
}

.social-media-btn .fa-whatsapp {
    color: white;
    background-color: rgb(21, 171, 21);
    padding: 14px;
}

.social-media-btn .fa-youtube {
  background: #bb0000;
  color: white;
}

.form-1 #support-us {
    margin-top: 10px;
}
.form-1 {
    margin-right: 40px;
}

.form-1 #intouch{
    text-decoration: underline;
    text-decoration-color: #009C99;
}

.form-1 h3{
    line-height: 0.2rem;
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 15px;
}

.form-1 p {
    line-height: 2rem;
}

.form-1 a {
    text-decoration: none;
    color: black;
    font-size: 1.6rem;
    font-weight: bolder;
}

.anchor-contact a{
    font-size: 1.1rem;
    font-weight: 100;
    text-decoration: underline;
    transition-duration: 0.4s;
    color: #5d5757;
}

.anchor-contact a:hover {
    color: #009C99;
}

.first-input input::placeholder {
    padding-top: 10px;
    padding-left: 5px;
    color: #8C8C8C;
    opacity: 0.5;
    font-size: 20px;
    outline: #8C8C8C;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.first-input input[type=text]:focus,
.first-input input[type=email]:focus,
.first-input input[type=tel]:focus {
    outline: 1px solid #009C99;
}

textarea:focus {
    outline: 1px solid #009C99;
}

.first-input {
    padding-right: 30px;
}

input[type="email"],
input[type="text"],
input[type="tel"] {
    padding: 20px 0 20px 20px;
    font-size: 17px;
    color: #8C8C8C;
    border: none;
    padding-right: 20px;
    background-color: #fff;
    outline: 1px solid #009C99;
}

input[type="email"],
input[type="text"] {
    margin-bottom: 20px;
}

input[type="text"],
input[type="tel"] {
    margin-right: 20px;
}

.services-row {
    margin-bottom: 20px;
}

select {
    width: 25%;
    font-size: 17px;
    padding: 1rem 1.5rem;
    background-color: #fff;
    color: #8C8C8C;
    border: none;
    outline: 1px solid #009C99;
}

.general-services {
    width: 47.5%;
    padding: 18px 1px;
    color: #8C8C8C;
    border: none;
    font-size: 1rem;
    outline: 1px solid #009C99;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23009C99" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    text-indent: 0.7rem;
}

.form-2 textarea {
    width: 99.5%;
    height: 150px;
    background-color: #fff;
    border: none;
    color: #8C8C8C;
    font-size: 20px;
    padding-top: 20px;
    padding-left: 28px;
    outline: 1px solid #009C99;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-request {
    width: 200px;
    height: 60px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    background-color: #009C99;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    transition-duration: 0.4s;
}

.btn-request:hover {
    background-color: black;
    color: #009C99;
}

.last-stand {
    padding-top: 40px;
    background-color: black;
}

.last-stand p {
    color: #8C8C8C;
    text-align: center;
    margin: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}