@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.julius-sans-one-regular {
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Julius Sans One", sans-serif;
  color: #214344;
  margin:30px;
  text-align: center;
}

  body {
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    background-color: white;
    font-family: 'Poppins', sans-serif;
  }
  
  header {
    color: white;
    padding: 1rem 0;
  }
  
  .navbar {
    max-width: 1100px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    width:100%;
    padding: 0 20px;

  }
  .logo img{
    width:45px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 5rem;
    padding-top: 1rem;  
  }
  .nav-links img{
    width:1rem;
    padding-top: 0.2rem;
  }

  .nav-links a {
    color: #214344;
    text-decoration: none;
    font-size: 0.8rem;
  }
 
@media (max-width: 768px) {
  .nav-links {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;  
  }
  .nav-links a {
    font-size: 0.5rem;
  }

}

  /* Home */
  .hero {
    background: url('imgs/bg.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 5vw;
    color:white;
    font-weight: 900;
    transition: transform 0.2s;
  }
  .CTA{
    border-radius: 10px;
    border-style: none;
    background-color: white;
    padding:1rem;
  }
  .CTA a{
    text-decoration: none;
    color:black;
  }
  .CTA:hover{
    background-color: #11C88E;
    transform: scale(1.05);
  }

  .a-title{
    text-align:center;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .title{
    text-align:center;
    padding-top: 30px;
    padding-bottom: 60px;
  }
  
  .c-slider{
    overflow: hidden;
    width:100%;
    white-space: nowrap;
    padding: 1rem 0;
  }
  .image-row {
    padding: 50px;
    display: flex;
    gap: 7rem; 
    justify-content: center; 
    width: 100%;
    animation: scroll 5s linear infinite;
  }
  @media (max-width: 768px) {
    .image-row {
      animation-duration: 3s;
      gap: 0.5rem; 
    }
    .image-row img {
      min-width: 4rem; 
      height: auto;
    }
    .hero h1{
      font-size: 8vw;
    }

  }
  
  .image-row img {
    width: 9rem; 
    height: auto;
    object-fit: contain;
    transition: filter 0.3s;
  }
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

.customer-reviews{
  overflow: hidden;
  padding:0.2rem;
  margin-right:1rem;
  margin-left:1rem;
}
  .slider {
    display: flex;
    justify-content: center;
    position: relative;
    width: 50rem;    /* set your preferred width */
    height: 7rem;   /* set your preferred height */
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
  }
  @media (max-width: 768px) {
    .slider {
      width: 100%;
      height:8rem;
      position: relative;
        /* set your preferred height */ 
    }
    #slider .card {
      position: absolute;
    }
  }
 .slider .card {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    align-items: center;
    margin:1rem;
  }
  .slider .active {
    opacity: 1;
    z-index: 1;
  }
  /* About */
  .container {
    margin:2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
color:black;
    gap:3rem;
  }
  .v-container{
    display:flex;
    flex-direction: column;
    margin-left:3rem;
    margin-right:3rem;
    gap:1rem;
  }
  .v-container{
    text-align: center;
  }
  .container .card {
    display: flex;
    flex-direction: column;
    flex: 1 1 300px; /* grow, shrink, base width */
    max-width: 900px;
    color:black;
    width:auto;
    height:auto;
    justify-content: center;
    padding-right:1rem;
    padding-left:1rem;
    
  }

  .container .card2{
    flex-direction: column;
    flex: 1 1 300px; /* grow, shrink, base width */
    max-width: 900px;
    width:100%;
    padding:2rem;
  }
  .container .card2 img{
    width:100%;
    border-radius: 20px;
  }
  @media (max-width:768px){
    .container {
      margin:0.5rem;
      gap:1rem;
    }
    .container .card2{
      padding:1rem;
    }
    .v-container{
      margin:1rem;
    }
  }

   /* Products */
  .p-container{
    padding:2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem; /* space between cards */
    justify-content: center;
    background: linear-gradient(135deg, #1A2C2B, #214344, #2F5C54);
    color:white;
    width:100%;
    overflow: hidden;
  }
  .product{
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);  /* translucent white */
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  }
  .product:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }
  .product p{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  .product img{
    width:10rem;
    height:auto;
  }
  @media (max-width: 839px) {

    .p-container{
      gap: 2rem; /* space between cards */
    }
  }
  .cart-button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s;
  }
  .cart-button img{
    width: 1.5rem;
    height: 1.5rem;
  }
  .cart-button:hover {
    transform: scale(1.05);
    background-color: #11C88E;
  }
  .w-container{
    padding:2rem;
    padding-bottom:8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width:1440px;
    gap: 4rem; /* space between cards */
    align-items: center;
    text-align: center;
  }
  .w-container img{
    width:80px;
  }

  .cart-message {
    position: fixed;
    top: 70px; /* adjust if you have a header */
    left: 50%;
    transform: translateX(-50%); 
    background-color: #11C88E;
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    display: none;
    z-index: 1000;
    animation: fadeOut 3s ease forwards;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      display: none;
    }
  }
  
  /* Product Information Page */

  .i-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:1rem;

  }
  .section1{
    display:flex;
    flex-direction: column;
    gap:2rem;
    align-items: center;
  }
  .section1 img{
    width:13rem;
  }
  .section1 p{
    padding-left:5rem;
    padding-right:5rem;
  }
  .medium{
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:1rem;
    font-size: 0.8rem;
    padding:2rem;
  }
  .medium p{
    background-color:#214344 ;
    color:white;
    padding:8px;
    border-radius: 2rem;
  }
  .more-info{
    background-color: #214344;
    width:90%;
    padding:2rem; /*inner */
    color:white;
    margin:8rem; /*outer */
    margin-top: 3rem;
    border-radius: 20px;
    font-size: 14px;
  }
  .more-info button{
    background-color: white;
    font-family: 'Poppins', sans-serif;
    color:black;
    border-radius: 30px;
    border-style: none;
    padding:10px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .more-info button:hover {
    transform: scale(1.05);
    background-color: #11C88E;
  }
  .prefilled{
    font-family: 'Poppins', sans-serif;
  }
  .section2{
    display:flex;
    flex-direction: column;
    gap:2rem;
    align-items: center;
    padding-bottom:2rem;
  }
  .p-img{
    width:10rem;
  }
  .section2 .product:hover{
    transform: scale(1.05);

  }
  .cart2{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border-color: #11C88E;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s;
  }
  .cart2 img{
    width:20px;
  }
  .cart2:hover {
    transform: scale(1.05);
    background-color: #11C88E;
  }

  #i{
    text-align: center;
    padding: 1.5rem;
    background: white;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  @media (min-width: 900px) {
    .i-container {
      grid-template-columns: repeat(3, 1fr);
    }
    .section1{
      grid-column: span 2;
    }
    .section1 img{
      width:20rem;
    }
  }
  /** Service Page **/
  .s-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    padding:5rem;
    gap:4rem;
    width:100%;
  }
  .row1{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:3rem;
    width:100%;
    margin:auto;

  }
  .row2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:3rem;
    margin:auto;

  }
  .s-container .card{
    display:flex;
    flex-direction: column;
    padding:2rem;
    background-color: #214344;
    box-shadow: 0 8px 32px 0 #356163;
    color:white;
    border-radius: 20px;
    text-align:center;
    justify-content: center;

    width:100%
  }
  .info-card{
    padding:1rem;
    text-align: center;
  }
  @media (max-width: 900px) {
    .row1{
      /*display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .row2{
      /*display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  
  }
  @media(max-width:450px){
    .s-container{
      padding:1rem;
    }
  }
/* Contact Page */
  .contact{
    display: flex;
    flex-wrap: wrap;
    gap:3rem;
    margin:3rem;
  }
  .contact .card1{  
    background-color: #214344;
    padding:2rem; /*inner */
    color:white;
    border-radius: 20px;
    font-size: 14px;
    flex: 1 1 400px;
  }
  .map{
    flex: 1 1 400px;
    
  }
  @media (max-width: 768px) {
    .contact{
      margin:1rem;
    }
    .contact .card1{
      padding:1rem;
    }
  
  }
  iframe{
    border:none;
    width:100%;
    border-radius: 20px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
  .card1 button{
    
    background-color: white;
    font-family: 'Poppins', sans-serif;
    color:black;
    border-radius: 30px;
    border-style: none;
    padding:10px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .card1 button:hover {
    transform: scale(1.05);
    background-color: #11C88E;
  }
  .contact .card2{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
  }
  /* Cart */
  .cart{
    display: flex;
    flex-wrap: wrap;
    gap:1rem;
  }
  .cart .quote{  
    background-color: #214344;
    padding:2rem; /*inner */
    color:white;
    margin:4rem; /*outer */
    border-radius: 20px;
    font-size: 14px;
    flex: 1 1 10rem;
    min-width:300px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.required::after {
  content: " *";
  color: red;
}

  .quote button{
    background-color: white;
    font-family: 'Poppins';
    color:black;
    border-radius: 30px;
    border-style: none;
    padding:10px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .quote button:hover {
    transform: scale(1.05);
    background-color: #11C88E;
  }
  .header{
    width:100%;
    gap:17rem;
    padding-left:5rem;
  }
  .cart .items{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    width:100%;
    flex: 1 1 10rem;
  }

  .item-dlt{
    width:0.7rem;
    height: 0.7rem;
    transition: transform 0.2s;
  }
  .item-dlt:hover{
    transform: scale(0.8);
  }
  .item-name{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    width: 250px; 
  }
  .item-img{
    width:9rem;
    height:auto;
  }
  .item-li{
    gap:4rem;
  }
  #cartList{
    width:100%;
    padding:2rem;
  }
  
  #cartList li{
    border-bottom: 1px solid #ddd;
    list-style: none;
  }
  
  .continue{
    text-decoration: none;
    color:black;
    
  }
  @media(max-width:1024px){
    .cart .quote{  
      margin:1rem; /*outer */
    }
  }
  @media(max-width:600px){
    .item-name{
      font-size: 13px;
    }
    .item-img{
      width:5rem;
    }
    .item-li{
      gap:1rem;
    }
  }
  @media(max-width:400px){
    .item-img{
      width:3rem;
    }
    .item-dlt{
      width:0.5rem;
      height: auto;
    }
  }

  /* Footer */
  .site-footer {
    background-color: #214344;
    color: white;
    padding: 2rem 1rem;
    font-size: 14px;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 1rem;
  }
  
  .footer-section {
    flex: 1 1 200px;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
    font-size: 16px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section a {
    color: white;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .footer-section p {
    align-items: center;
  }
  .icon{
    width: 20px;
    height: auto;
    margin-right:30px;
    margin-top:15px;
  }
  .footer-top a img:hover{
    transform: scale(1.3);
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1rem;
  }
  
  .footer-bottom a {
    color: #a0f8c2;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  