@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
  text-decoration: none;
  list-style: none;
}
*:root {
    --primary: #009d7e;
    --primary-clour: #08408e;
    --primary-light: #e8f0ff;

    --main-bg: #000000;
    --second-bg: #0f0f0f;

    --text-white: #ffffff;
    --text-black: #292826;

    --fast: .4s ease-in-out;
    --slow: .7s ease-in-out;
}

/* Global Styles */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100; /* Make sure it stays on top */
}
  
.whatsapp-icon img {
    width: 100px; /* Adjust size as needed */
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
  
.whatsapp-icon img:hover {
    transform: scale(1.1);
}
  
h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}
h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}
h4 {
  font-size: 20px;
  color: #222;
}
h6 {
  font-weight: 700;
  font-size: 12px;
}
p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}
.section-m1 {
  margin: 40px 0;
}

body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
}
/* header */
#header {
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    padding: 20px 150px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    z-index: 999;
}
.home-logo {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background-color: #ffffffb4;
    border-radius: 25px;
}
.home-logo img {
    width: 300px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .home-logo {
        right: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(50%) translateY(0);
    }
    .home-logo img {
        width: 150px;
    }
}

.logo h6 {
    width: 50px;
    color: #474747;
    font-size: 1.4rem;
    letter-spacing: 2px;
}
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a{
    font-size: 18px;
    font-weight: 600;
    color: #474747;
    transition: var(--fast);
}
#navbar li a:hover,
#navbar li a.active, 
#mobile a i.active {
    color: var(--primary) !important;
}
#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 40%;
    height: 3px;
    border-radius: 5px;
    background-color: var(--primary);
    position: absolute;
    bottom: -4px;
    left: 20px;
}
#mobile {
    display: none;
    align-items: center;
}
#mobile i{
    color: #474747;
    padding-left: 20px;
    font-size: 1.5rem;
}
#close {
    display: none;
    position: absolute;
    top: 30px;
    left: 30px;
}
#close i {
    color: #474747;
    font-size: 1.5rem;
}


/* hero section */
.slider{
    height: 100vh;
    position: relative;
    background-image: url(Assets/Background/thubneil04.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 25%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
    color: var(--text-white);
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h2{
    font-size: 150px;
    font-weight: 600;
    line-height: 12rem;
    margin: 0;
    color: var(--text-white);
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item .content p{
    font-size: 1.2rem;
    color: var(--text-white);
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button {
    display: none;
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
    display: none;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}








#feature {
    min-height: 50vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
}




/* feature-products section */
#product1 {
    text-align: center;
}
.pro-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 8rem 5px 8rem;
    flex-wrap: wrap;
    user-select: none;
}
#product1 .pro {
    position: relative;
    width: 22%;
    min-width: 220px;
    padding: 10px 12px;
    border: 1px solid #f3f3f3;
    border-radius: 25px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: var(--fast);
}
#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
}
#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}
#product1 .pro .des {
    text-align: start;
    padding: 10px 10px;
}
#product1 .pro span {
    font-size: 15px;
    font-weight: 600;
    color: #5c5c5c;
}
#product1 .pro .des h5 {
    padding: 7px 0 2px 0;
    color: var(--text-black);
    font-size: 16px;
}
#product1 .pro .des i {
    padding-top: 5px;
    font-size: 14px;
    color: #ff9900;
}
#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}
#product1 .cart{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 60px;
    background-color: var(--primary-light);
    font-weight: 600;
    color: var(--primary);
    border:  1px solid #e7e7e7;
    position: absolute;
    bottom: 20px;
    right: 15px;
}
#product1 .pro p {
    font-size: 1.2rem;
    font-weight: 600;
}


/* banner section */
#banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-image: url(Assets/Banner/b2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 40vh;
}
#banner h4 {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
}
#banner h2 {
    color: var(--text-white);
    font-size: 3.5rem;
    font-weight: 600;
    padding: 20px 0;
}
#banner span {
    color: var(--primary);
}
button.normal {
    display: inline-block;
    align-self: center;
    width: auto;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    color: var(--text-white);
    background-color: var(--primary);
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    outline: none;
    transition: var(--fast);
}
button.normal:hover {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}


/* 2nd banner section */
#sm-banner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 150px;
}
#sm-banner .banner-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-image: url(Assets/Banner/b17.jpg);
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
    border-radius: 10px;
    padding: 40px;
    transition: var(--fast);
}
#sm-banner .banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color var(--fast);
    border-radius: 10px;
    z-index: 1;
}
#sm-banner .banner-box:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}
#sm-banner .banner-box {
    position: relative;
    z-index: 2;
}
#sm-banner .banner-box:nth-child(2) {
    background-image: url(Assets/Banner/b10.jpg);
}
#sm-banner .banner-box h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 15px;
}
#sm-banner .banner-box h2 {
    color: var(--text-white);
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 700;
    padding-bottom: 15px;
}
#sm-banner .banner-box span {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 15px;
}
button.white {
    display: inline-block;
    width: auto;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 11px 30px;
    color: var(--text-white);
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid var(--text-white);
    outline: none;
    transition: var(--fast);
}
#sm-banner .banner-box:hover {
    background-image: opasity;
}
#sm-banner .banner-box:hover button.white {
    background-color: var(--primary);
    color: var(--text-white);
    border: 2px solid transparent;
}



/* 3rd banner section */
#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 150px;
}
#banner3 .banner-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-image: url(Assets/Banner/b7.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-width: 30%;
    height: 30vh;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--fast);
}
#banner3 .banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    border-radius: 10px;
    z-index: 1;
}
#banner3 .banner-box:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}
#banner3 .banner-box * {
    position: relative;
    z-index: 2;
}
#banner3 .banner-box:nth-child(2) {
    background-image: url(Assets/Banner/b4.jpg);
}
#banner3 .banner-box:nth-child(3) {
    background-image: url(Assets/Banner/b18.jpg);
}
#banner3 h2 {
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.5rem;
}
#banner3 h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
}






.newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(Assets/Banner/b14.png);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
    padding: 4rem 8rem !important;
}
.newstext h4 {
    font-size: 4rem !important;
    font-weight: 400;
    color: var(--text-white);
}
.newstext p {
    font-size: 1.2rem !important;
    font-weight: 400;
    color: var(--text-white);
}
.newstext p span {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: #ffa600;
}
.newsletter input {
    height: 3.150rem;
    padding: 0 1.25em;
    font-size: 16px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid transparent;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.newsletter .form {
    display: flex;
    width: 25% !important;
}
.newsletter .sign-up {
    font-size: 1.3rem;
    background-color: #16a085;
    color: var(--text-white);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    white-space: normal;
    user-select: none;
    outline: none;
    border: none;
    width: 40% !important;
    cursor: pointer;
}


#page-header {
    background-image: url(Assets/Banner/b1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    width: 100%;
    height: 35vh;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
}
#page-header2 {
    background-image: url(Assets/Banner/b19.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    height: 35vh;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
}
#page-header3 {
    background-image: url(Assets/Banner/b02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    height: 35vh;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
}
#page-header h2,
#page-header2 h2,
#page-header3 h2,
#page-header4 h2 {
    color: var(--text-white);
    font-size: 4rem;
    font-weight: 600;
}
#page-header p,
#page-header2 p,
#page-header3 p,
#page-header4 p {
    color: var(--text-white);
    font-size: 1rem;
    letter-spacing: 2px;
}




#blog {
    padding: 150px 150px 0 150px;
}
#blog .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 140px;
}
#blog .blog-img {
    width: 40%;
    margin-right: 40px;
}
#blog img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
#blog .blog-details {
    width: 50%;
}
#blog .blog-details h4 {
    font-size: 30px;
}
#blog .blog-details p {
    font-size: 22px;
    max-width: 750px;
}
#blog .blog-details a {
    text-decoration: none;
    font-size: 16px;
    color: var(--main-bg);
    font-weight: 700;
    position: relative;
    transition: var(--fast);
}
#blog .blog-details a:hover {
    color: var(--primary);
}
#blog .blog-details a::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--main-bg);
    position: absolute;
    top: 4px;
    right: -60px;
    transition: var(--fast);
}
#blog .blog-details a:hover::after {
    background-color: var(--primary);
}
#blog .blog-box h1 {
    position: absolute;
    top: -60px;
    left: 0;
    font-size: 7.5rem;
    font-weight: 600;
    color: #b4b4b4;
    z-index: -9;
}




.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    flex-direction: row;
}
  
.left, .right {
    flex: 1;
}
  
.left-image {
    width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.left-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.right h3 {
    font-size: 3.5rem;
}
.right p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 80%;
}

  

#prodetails {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}
#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}
.small-img-group {
    display: flex;
    justify-content: space-between;
}
.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}
#prodetails .single-pro-details {
    width: 50%;
    padding-top: 50px;
}
#prodetails .single-pro-details h2 {
    color: var(--text-black);
    padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h4 {
    padding-top: 15px;
    color: var(--text-black);
    font-size: 26px;
}
#MainImg {
    border-radius: 10px;
}
#thumbnails img {
    margin-top: 4px;
    border-radius: 15px;
}
#prodetails .single-pro-details h6 {
    color: var(--text-black);
    font-size: 16px;
}
#prodetails .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}
#prodetails .single-pro-details input {
    width: 50px;
    height: 45px;
    padding-left: 10px;
    font-size: 18px;
    margin-right: 10px;
}
#prodetails .single-pro-details input:focus {
    outline: none;
}
#prodetails .single-pro-details button {
    background-color: #088178;
    color: var(--text-white);
}
#prodetails .single-pro-details h5{
    font-size: 2rem;
    padding: 40px 0 5px 0;
}
#prodetails .single-pro-details p {
    line-height: 25px;
    max-width: 750px;
}



.button {
    display:inline-flex;
    justify-content: center;
    background-color: var(--text-black);
    font-size: 1rem;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4rem;
    transition: .4s ease;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  }
  .button:hover {
    background-color: var(--text-white);
    color: var(--text-black);
  }
.section_title {
    font-size: 4rem;
    margin-bottom: 2rem;
}
.contact {
    margin: 2rem 1.5rem 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }
  .contact_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    width: 100%;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .left-panel {
    background: #181818;
    flex: 1 1 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary-light);
  }
  .left-panel h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--primary-light);
  
  }
  .left-panel p {
    color: var(--primary-light);
  
  }
  .right-panel {
    flex: 1 1 400px;
    padding: 40px;
    background: #ffffff;
  }
  .right-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
  }
  form {
    display: flex;
    flex-direction: column;
  }
  form input,
  form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #a0a0a0;
    border-radius: 12px;
    font-size: 16px;
  }

  .feedback {
    min-height: 70vh;
    padding: 100px 0;
  }
  .feedback-container {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
    user-select: none;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .testimonials-item {
    background-color: #e9e9e9;
    padding: 30px;
    border-radius: 25px;
    min-height: 350px;
    cursor: default;
  }
  .testimonials-item .info-box {
    display: flex;
    align-items: center;
  }
  .testimonials-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-right: 20px;
    vertical-align: middle;
  }
  .testimonials-item .name {
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-black);
  }
  .testimonials-item .job {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-black);
  }
  .testimonials-item p {
    margin-top: 1rem; 
    pointer-events: none;
    color: var(--text-black);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
  }
  .testimonials-item .rating {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    color: #181818;
  }
  .testimonials-item .swiper-pagination {
    position: relative;
  }


/* Footer Styling */
.footer {
    padding: 20px 20px 0px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    cursor: default;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1500px;
    margin: auto;
}
.footer-section {
    flex: 1 1 220px;
    margin: 20px;
}
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}
.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}
.footer-section img {
    margin-top: 0.5rem;
    width: 35%;
}
.footer-section a:hover {
    color: #7d7d7d;
}
.social-icons, i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    user-select: none;
}
footer p {
    font-size: 14px;
}
footer strong {
    font-weight: 600
}
.footer .copyright  {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
footer .copyright a {
    color: #777;
    font-size: 14px;
    font-weight: 600;
} 




#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img {
    width: 70px;
}
#cart table td{
    width: 100px;
    text-align: center;
}
#cart table tbody tr td {
    padding-top: 15px;
}
#cart table tbody td {
    font-size: 22px;
    font-weight: 600;
}
#cart h2 {
    text-align: center;
    margin-bottom: 28px;
    font-weight: 600;
}
#cart h3 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 2rem;
    font-weight: 600;
}
#cart-items-container {
    margin-bottom: 30px;
}
.cart-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: none;
}
.cart-item-img {
    width: 200px;
    height: 200px;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-details {
    flex: 1;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.quantity-controls input {
    width: 50px;
    padding: 10px;
    border: 2px solid #acacac;
    border-radius: 10px;
}
.remove-btn {
    background: var(--primary-clour);
    color: white;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}
#cart-total {
    border: 2px solid #acacac;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 2rem;
    border-radius: 15px;
    width: 60%;
    margin-left: auto;
    margin-right: auto; /* Or simply use margin: 20px auto; */
}
#cart-total table {
    width: 100%;
    margin-bottom: 20px;
}
#checkout-btn {
    display: block;
    margin: 20px auto; /* centers the button */
    width: auto !important; /* ensures it's not full width */
    padding: 10px 20px; /* optional: adds spacing */
    color: var(--primary);
    border-radius: 10px;
    background-color: transparent;
    border: 2px solid var(--primary);
}
#checkout-btn:hover {
    color: var(--text-white);
    background-color: var(--primary);
    border: 2px solid transparent;
}








#checkout-btn {
    width: 100%;
}
#checkout-form {
    max-width: 800px;
    margin: 0 auto;
}
#checkout-form h2 {
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 10px;
    outline: none;
    background-color: transparent;
    font-size: 16px;
    border: 1px solid #ddd;

}
#order-summary {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
}
.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#cart, #checkout-form {
    flex: 1;
    overflow-y: auto; /* Allow scrolling within the content if needed */
    padding-bottom: 20px; /* Add some padding at the bottom */
}
.footer {
    margin-top: auto;
}
#cart-items-container {
    max-height: 50vh; /* Adjust this value as needed */
    overflow-y: auto;
    margin-bottom: 30px;
}
#cart-total tr td {
    font-size: 2rem;
}
#checkout-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box; /* Include padding in width calculation */
}
#checkout-form .normal {
    display: block;
    margin: 20px auto; /* centers the button */
    width: auto !important; /* ensures it's not full width */
    padding: 10px 20px; /* optional: adds spacing */
    color: var(--primary);
    border-radius: 10px;
    background-color: transparent;
    border: 2px solid var(--primary);
}
#checkout-form .normal:hover {
    color: var(--text-white);
    background-color: var(--primary);
    border: 2px solid transparent;
}


.thank-you-container  h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
}
.thank-you-container  .sinhala {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
}
.thank-you-container  p,a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-black);
    line-height: 24px;
}


@media (max-width: 1025px) {
    .section-p1 {
        padding: 30px 60px;
      }


    #header {
        padding: 20px 80px;
    }

    .pro-container {
        padding: 20px 2rem 5px 2rem;
    }
    #product1 .pro {
        width: 45%;
    }


    #banner {
        height: 40vh;
        padding: 10px;
    }
    #sm-banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px 40px;
    }
    #sm-banner .banner-box {
        height: 40vh;
    }

    #banner3 {
        padding: 0 40px;
    }
    #banner3 .banner-box {
        width: 30%;
        padding: 20px;
    }

    .newsletter {
        padding: 2rem 4rem !important;
    }
    .newsletter .form {
        width: 60% !important;
    }
    .newsletter .sign-up {
        width: 40% !important;
    }



}

@media (max-width: 768px) {

        .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .left, .right {
      width: 100%;
    }
  
    .left-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
      
    .left-image img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    .right h3 {
        font-size: 2.5rem;
        text-align: center;
    }
    .right p {
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    button.white {
        display: inline-block;
        width: auto;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 11px 30px;
        color: var(--text-white);
        background-color: transparent;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid var(--text-white);
        outline: none;
        transition: var(--fast);
    }
    button.normal {
        display: inline-block;
        align-self: center;
        width: auto;
        font-size: .8rem;
        font-weight: 600;
        padding: 15px 30px;
        color: black;
        background-color: var(--text-white);
        border-radius: 5px;
        cursor: pointer;
        border: none;
        outline: none;
        transition: var(--fast);
    }


    .sidebar {
        width: 100%;
    }
    .scroll-icon {
        display: none;
    }
    .slider .list .item .content h2{
        font-size: 5rem;
        line-height: 7rem;
        margin: -1rem;
    }
    .slider .item:nth-child(1) .content h2 { /* Target the first h2 */
        font-size: 3rem;
    }
    .slider .item:nth-child(5) .content h2 { /* Target the second h2 */
        font-size: 3rem;
    }

    
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: var(--primary-light);
        padding: 100px 0 0 10px;
        transition: .4s ease-in-out;
    }
    #navbar.active {
        right: 0px;
    }
    #navbar li{
        margin-bottom: 25px;
    }
    #mobile {
        display: flex;
        align-items: center;
    }
    #close {
        display: block;
    }
    #navbar li:nth-child(5) {
        display: none;
    }
    



    .pro-container {
        padding: 20px 0rem 5px 0rem;
    }
    #product1 .pro {
        width: 45%;
    }



    #banner {
        height: 30vh;
        padding: 5px;
    }
    #sm-banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px 40px;
    }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 40vh;
        padding: 30px;
    }
    #sm-banner .banner-box h4 {
        font-size: 1rem;
    }
    #sm-banner .banner-box h2 {
        font-size: 3rem;
    }
    #sm-banner .banner-box span {
        font-size: 1rem;
    }




    #banner3 {
        padding: 0 40px;
    }
    #banner3 .banner-box {
        width: 30%;
        padding: 20px;
    }
    #banner3 h2 {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    #banner3 h3 {
        font-size: 1rem;
    }
    





    .newsletter {
        padding: 2rem 2rem !important;
    }
    .newsletter .form {
        width: 90% !important;
    }
    .newsletter .sign-up {
        font-size: 1rem;
        width: 30% !important;
    }
    .newstext h4 {
        font-size: 2rem !important;
        font-weight: 400;
        color: var(--text-white);
    }
    .newstext p {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }
    .newstext p span {
        font-size: 1rem !important;
    }
    .newsletter input {
        font-size: 18px;
    }





    #blog {
        padding: 100px 20px 0 20px;
    }
    #blog .blog-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img {
        width: 100%;
        margin-right: 0px;
    }
    #blog img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    #blog .blog-details {
        width: 90%;
    }
    #blog .blog-details h4 {
        font-size: 26px;
    }
    #blog .blog-details p {
        font-size: 18px;
        max-width: 800px;
    }
    #blog .blog-details a {
        text-decoration: none;
        font-size: 16px;
        color: var(--main-bg);
        font-weight: 700;
        position: relative;
        transition: var(--fast);
    }
    #blog .blog-details a:hover {
        color: var(--primary);
    }
    #blog .blog-details a::after {
        content: "";
        width: 50px;
        height: 2px;
        background-color: var(--main-bg);
        position: absolute;
        top: 4px;
        right: -60px;
        transition: var(--fast);
    }
    #blog .blog-details a:hover::after {
        background-color: var(--primary);
    }
    #blog .blog-box h1 {
        position: absolute;
        top: -60px;
        left: 0;
        font-size: 7.5rem;
        font-weight: 600;
        color: #b4b4b4;
        z-index: -9;
    }


    #prodetails {
        display: flex;
        flex-direction: column;
    }
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 30px;
    }
    #prodetails .single-pro-details {
        width: 100%;
        padding-top: 50px;
    }
    #prodetails .single-pro-details h4 {
        font-size: 22px;
    }
    #prodetails .single-pro-details h6 {
        font-size: 14px;
    }
    #prodetails .single-pro-details input {
        width: 50px;
        height: 45px;
        padding-left: 10px;
        font-size: 18px;
        margin-right: 10px;
    }
    #prodetails .single-pro-details h5{
        font-size: 1rem;
    }
    #prodetails .single-pro-details p {
        line-height: 18px;
        max-width: 750px;
    }
    #prodetails .single-pro-details h2 {
        font-size: 28px;
        padding: 20px 0 1dvh 0;
    }
    #prodetails .single-pro-details h4 {
        color: var(--text-black);
        font-size: 18px;
    }
    #cart-total {
        width: 100%;
    }
    #cart-items-container {
        max-height: 60vh;
    }
    .cart-item {
        flex-direction: column;
        gap: 10px;
    }
    .cart-item-img {
        width: 100%;
        height: auto;
    }
    .thank-you-container  h2 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--primary);
    }
    .thank-you-container  p,a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-black);
        line-height: 22px;
    }
}

@media (max-width: 550px) {

    .section-p1 {
        padding: 15px 5px;
      }
    .pro-container {
        padding: 0 0px;
    }
    .pro-container {
        padding: 0px 5px 0px 5px;
    }
    #product1 .pro {
        width: 10%;
    }
#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

    #product1 .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    bottom: 20px;
    right: 10px;
}
#product1 .pro p {
    font-size: 0.8rem;
    font-weight: 700;
}
    #header {
        padding: 15px 30px;
    }

    #banner {
        height: 60vh;
    }


    #sm-banner {
        flex-direction: column;
        gap: 20px; /* Vertical space between stacked banners */
        padding: 40px 20px;
    }
    #sm-banner .banner-box {
        height: 40vh; /* Reduce height for small screens */
        padding: 20px; /* Less padding to fit better */
    }
    #sm-banner .banner-box h2 {
        font-size: 2rem;
    }
    #sm-banner .banner-box h4,
    #sm-banner .banner-box span {
        font-size: 1rem;
    }
    button.white {
        font-size: 1rem;
        padding: 10px 20px;
    }


    #banner3 {
        flex-direction: column;
        align-items: center;
        padding: 0 20px; /* Reduce padding for smaller screens */
    }
    #banner3 .banner-box {
        width: 100%; /* Make banners take full width */
        min-width: unset; /* Remove min-width restriction */
        height: 25vh; /* Reduce height */
        padding: 15px; /* Adjust padding */
    }
    #banner3 h2 {
        font-size: 1.2rem;
    }
    #banner3 h3 {
        font-size: 1.5rem;
    }


    #page-header h2,
    #page-header2 h2,
    #page-header3 h2,
    #page-header4 h2 {
        color: var(--text-white);
        font-size: 3rem;
        font-weight: 600;
    }
    #page-header p,
    #page-header2 p,
    #page-header3 p,
    #page-header4 p {
        color: var(--text-white);
        font-size: 0.9rem;
        letter-spacing: 2px;
}



    .newsletter {
        padding: 2rem 2rem !important;
    }
    .newsletter .form {
        width: 80% !important;
    }
    .newsletter .sign-up {
        width: 50% !important;
    }


    #cart h3 {
        font-size: 1.5rem !important;
    }
    #cart-total {
        width: 100% !important;
    }
    #cart table tbody td {
        font-size: 16px !important;
    }

} 

@media (max-width: 420px) {
  /* .pro-container {
    justify-content: space-between;
    padding: 0 20px 0 20px;
    gap: 10px;
  }

  #product1 .pro {
    width: 100%;
  }
  #product1 .pro img {
    width: 100%;
    border-radius: 20px;
} */

}

/* 1 column for screens smaller than 390px */
@media (max-width: 389px) {
  .pro-container {
    padding: 0 10px;
    justify-content: center;
  }

  #product1 .pro {
    width: 100%;
  }
}

/* 2 columns for screens 390px to 550px */
@media (max-width: 550px) {
  .pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5px;
  }

  #product1 .pro {
    width: 48%;
    margin-bottom: 15px;
    min-width: 180px;
    padding: 5px 5px;
  }
  #product1 .pro span {
    font-size: 13px;
}
#product1 .pro .des h5 {
    padding: 7px 0 2px 0;
    font-size: 14px;
}
#product1 .pro .des i {
    font-size: 14px;
}
#product1 .pro .des h4 {
    font-size: 12px;
}
#product1 .cart{
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 10px;
}
#product1 .pro p {
    font-size: 0.7rem;
}

h1 {
  font-size: 40px;
  line-height: 55px;
  color: #222;
}
h2 {
  font-size: 32px;
  line-height: 40px;
  color: #222;
}
h4 {
  font-size: 15px;
  color: #222;
}
h6 {
  font-weight: 700;
  font-size: 12px;
}
p {
  font-size: 14px;
  color: #465b52;
  margin: 15px 0 20px 0;
}
.section_title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

}
