*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}
:root{
    --primary: #628061;
    --secondary: #a3d8fc; 
    --color: #DEFCF9;
    --black: #002f56;
    --blue:#628061;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
    --border-radius: 30px 0 30px 0;
}
#header { 
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    background:#eaddc0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top:0;
    left: 0;
}

#navbar{
    display: flex; 
    align-items: center;
    justify-content: center;
}

#navbar.active {
    right: 0px;
}
#mobile{
    display: none; 
    align-items: center;
}
#mobile a {
    text-decoration:none; 
    font-size: 16px;
    font-weight:600;
    color:#000100;
    
}
#mobile i {
    color:#1a1a1a;
    font-size: 24px; 
    padding-left: 20px;
}
#cart-overlay {
    transition: right 0.5s ease-in-out;
    z-index: 1000; /* Ensure cart appears above all content */
}



#close{
    display: none;
}
#navbar li{ 
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration:none; 
    font-size: 16px;
    font-weight:600;
    color:#000100;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color:#095006;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content:"";
    width: 30%; 
    height: 2px; 
    background:#095006;
    position: absolute;
    bottom:-4px;
    left: 20px;
}
.container {
    position: relative;
    width: 100%;
    height: 92vh;
    display: flex;
    overflow: hidden;

}
.slider-wrapper {
    display: flex;
    width: 400%; /* Assuming 3 slides */
    transition: transform 0.6s ease-in-out;
}
.slide-1 {
    background: url('img/saladbiege.png');
    
}
.slide-2 {
    background: url('img/slide2.png');
    
}
.slide-3 {
    background: url('img/slide3.png');
  
}
.slide-4 {
    background: url('img/slide6.png');
    
}


.slide {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    
}
.caption {
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px 0px;
}
.slide-3 .caption1 {
    position: absolute;
    right: -1.5%; /* Moves text to the right */
    left: auto; /* Prevents left overlap */
    width: 40%; /* Keeps text within safe bounds */
    text-align: left; /* Keeps*/
}
.caption1 {
    height: 90vh;
    width:100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
    justify-content: center;
}
.caption1 button{
    background-image: url(img/buttonlatestgreen.png); 
    background-color: transparent;
    color:#f0f1f2;
    border: 0;
    padding: 14px 80px 14px;
    background-repeat: no-repeat; 
    cursor: pointer; 
    font-weight: 700;
    font-size: 15px;
    }
.caption h3 {
    color: #070707;
    text-align: center;
    font-size: 50px;
    padding: 18px;
}

.caption p {
    max-width: 600px;
    width: 90%;
    margin: 0px auto;
    color: #ccc;
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
}
.caption1 h3 {
    font-size: 46px; 
    line-height:64px;
    color: #000000;
    padding-bottom:20px
}
.caption1 h1 {
    font-size: 50px; 
    line-height:64px;
    color: #000000;
}
.caption1 h4 {
    font-size: 50px; 
    line-height:64px;
    color: #000000;
    padding-bottom:55px
}
.caption1 h2 {
    font-size: 46px; 
line-height: 54px; 
color:#000000;
padding-top:40px

}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background: rgba(0, 0, 0, .3);
    border-radius: 50%;
    transition: background 500ms;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow img {
    width: 30px;
}
.arrow:hover {
    background: rgba(0, 0, 0, .4);
}
.l {
    left: 0;
}
.r {
    right: 0;
}
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #095006;
    width: 14px;
    height: 14px;
}
.features {
    text-align: center;
    padding: 80px 10%;
    background-color: #475554;
    
  }
  
  .features h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .features h2 span {
    color: #f7edd8; /* Your brand's green */
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .feature-item {
    background: #f7edd8;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .feature-item i {
    font-size: 50px;
    color: #32721C; /* Matching brand color */
    margin-bottom: 15px;
  }
  
  .feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 1rem;
    color: #555;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background-color: #32721C;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #285a14;
  }
  
  .pricing {
    background-color: #eaddc0;
    text-align: center;
    padding: 60px 0%;
    position: relative;
    z-index: 1;
    
    
   /* background-color: #f5f5f5; 
    padding: 50px 0;
    position: relative;
    z-index: 1; */
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing h2 span {
    color: #32721C;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 20px;
    background: #095006;
    color: white;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    transition: background 0.3s;
}

.category-btn:hover, .category-btn.active {
    background: #32721C;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
}

.plan {
    background: #628061;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.plan ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.plan ul li {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color:#fafafa
}

.plan .price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
    margin: 15px 0;
}

.btn, .confused-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn {
    background: #475554;
    color: white;
}

.btn:hover {
    background: #de8b6f;
}

.confused-btn {
    background: #eaddc0;
    color: #000;
}

.confused-btn:hover {
    background: #de8b6f;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
  }
  
  .original-price-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .original-price {
    font-size: 20px;
    color: #fefdfd;
    font-weight: 500;
    position: relative;
    margin-left: 10px; /* Space for badge */
  }
  
  .original-price:before {
    content: "";
    position: absolute;
    left: -5px; /* Extend line under badge */
    top: 52%;
    width: calc(100% + 5px);
    height: 1.5px;
    background: linear-gradient(90deg, 
               rgba(231,76,60,0.8) 0%, 
               rgba(192,57,43,0.6) 100%);
    transform: rotate(-2deg);
  }
  
  .discount-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    transform: rotate(-5deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
    position: relative;
    margin-right: -5px; /* Overlap slightly */
  }
  
  .discounted-price {
    font-size: 28px;
    color: #f4f4f4;
    font-weight: 700;
    position: relative;
  }
  
  /* Optional "Only" ribbon */
  .discounted-price:after {
    content: "ONLY";
    position: absolute;
    top: -14px;
    left: 0;
    font-size: 10px;
    color: #ffffff;
    font-weight: 600;
    width: 100%;
    text-align: center;
  }


/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .categories {
        flex-direction: column;
    }
}

#category-display {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin: 15px 0;
    color: #000000; /* Your theme color */
    transition: opacity 0.3s ease-in-out;
}

/* end of pricing plans section*/

/*==================== 15. TESTIMONIES ====================*/
.testimonials {
    background-color: #475554; /* Dark background for testimonials */
    padding: 60px 0;
    min-height: 90vh; /* Ensure full screen height */
    position: relative;
    z-index: 2;

}
.section_name{
    font-size: 2.3rem;
    font-family: 'Spectral', serif;
    font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1rem;
    text-align: center;
    margin: .5rem auto;
    padding-top: 3rem;
    border-bottom: 2px solid var(--black);
}
.section_name span{
    color: #ffffff;
}
.sub_heading{
    font-size: 1.4rem;
    font-family: 'Spectral', serif;
    font-weight: 600;
}
.text{
    font-size: 1rem;
    font-family: 'Spectral', serif;
    font-weight: 400;
}
.shp{
    display: none;
}
.obj{
    position: relative;
    opacity: .5;
}
body{
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    text-transform: capitalize;
    color: var(--black);
    
    overflow-x: hidden;
}
.shape1{
    position: absolute;
    top: 35rem;
    left: 90%;
    height: 2rem;
    opacity: 0;
    width: 2rem;
    padding: 2rem;
    clip-path: polygon(0% 0%, 0% 100%, 25% 100%,25% 25%, 
    75% 25%,75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
    background-color: var(--color);
    box-shadow: var(--box-shadow);
    opacity: .5;
}

.shape2{
    position: absolute;
    top: 43rem;
    left: 2%;
    height: 2rem;
    opacity: 0;
    width: 2rem;
    padding: 2rem;
    z-index: 1;
    visibility: visible;
    clip-path: polygon(0% 0%, 0% 100%, 25% 100%,25% 25%, 
    75% 25%,75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
    background-color: var(--color);
    box-shadow: var(--box-shadow);
    opacity: .5;
}
.shape3{
    position: absolute;
    top: 78%;
    left: 80%;
    height: 2rem;
    opacity: 0;
    width: 2rem;
    padding: 2rem;
    z-index: 1;
    clip-path: polygon(0% 0%, 0% 100%, 25% 100%,25% 25%, 
    75% 25%,75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
    background-color: var(--color);
    box-shadow: var(--box-shadow);
    opacity: .5;
}
.shape4{
    position: absolute;
    top: -3%;
    left: -3%;
    height: 2rem;
    opacity: 0;
    width: 2rem;
    padding: 2rem;
    z-index: 1;
    clip-path: polygon(0% 0%, 0% 100%, 25% 100%,25% 25%, 
    75% 25%,75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
    background-color: var(--color);
    box-shadow: var(--box-shadow);
    opacity: .5;
}

.testi_wrapper{
    max-width: 100vw;
    height: 33rem;
    margin: 0 auto;
    color: var(--color);
}
#testimonials .testimonial-slider{
    height: 33rem;
    padding: 2rem 0;
    position: relative;
    
}
.testimonial-slide{
    width: 17rem !important;
    padding: 1rem;
    box-shadow: var(--box-shadow);
    height: 25rem !important;
    justify-content: center;
    
    position: relative;
    background-color: #628061;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    flex-wrap: wrap;
}
.testimonial-slide img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    margin: 1rem auto;
}
.testi_content{
    height: 20rem;
    margin: 0 auto;
    width: 10rem;
    flex-direction: column;
    text-align: center;    
    flex-wrap: nowrap;
}
.testi_content .text{
    text-align: center;
    width: 100%;
    font-size: 14px;
    margin: 0 auto;
    padding: 1rem;
}
.swiper-slide-shadow-left,
.swiper-slide-shadow-right{
    display: none;
}
.testimonial-slider-control{
    position: relative;
    width: 8rem;
    margin: 0 auto;
    bottom: -3rem;
    justify-content: center;  
}
.testimonial-slider-control .swiper-button-next{
    left: 100% !important;
    top: -40px;
    box-shadow: var(--box-shadow);
    transform: translateX(-40%) !important;
    -webkit-transform: translateX(-40%) !important;
    -moz-transform: translateX(-40%) !important;
    -ms-transform: translateX(-40%) !important;
    -o-transform: translateX(-40%) !important;
    color: var(--color) !important;
}
.testimonial-slider-control .swiper-button-prev{
    left: 0% !important;
    top: -40px;
    box-shadow: var(--box-shadow);
    transform: translateX(-60%) !important;
    -webkit-transform: translateX(-60%) !important;
    -moz-transform: translateX(-60%) !important;
    -ms-transform: translateX(-60%) !important;
    -o-transform: translateX(-60%) !important;
    color: var(--color) !important;
}
.testimonial-slider-control .slider-arrow{
    background: var(--blue);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: 42%;
    transform: translateX(-42%);
    -webkit-transform: translateX(-42%);
    -moz-transform: translateX(-42%);
    -ms-transform: translateX(-42%);
    -o-transform: translateX(-42%);
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, .1));
    -webkit-filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, .1));
}
.testimonial-slider-control .slider-arrow::after{
    content: '';
}
.testimonial-slider-control .swiper-pagination{
    position: relative;
    width: 8rem;
    top: -55px;
}
.swiper-pagination .swiper-pagination-bullet{
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, .7));
    -webkit-filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, .7));
    background-color: var(--primary);
}
.swiper-pagination .swiper-pagination-active{
    background-color: var(--primary);
}

/*========================================. newsletter =================================*/
/* Newsletter Section background: linear-gradient(135deg, #eaddc0, #475554);*/
/* Newsletter Section */
/* Newsletter Section */
/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #eaddc0, #475554);
    padding: 60px 20px;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-container {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease-in-out;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-description {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Form Styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.newsletter-input {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* Button Styling */
.newsletter-button {
    background: #628061;
    color: #000;
    font-size: 1rem;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    width: 100%;
    max-width: 200px;
}

.newsletter-button:hover {
    background: #ffdd44;
    transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: row;
        gap: 15px;
    }
    .newsletter-input {
        flex: 1;
        max-width: none;
    }
    .newsletter-button {
        width: auto;
    }
}


/*========================================. footer =================================*/

/* Footer Section */

/* Premium Footer Section */
.footer {
    background: linear-gradient(135deg, #222, #444);
    color: white;
    padding: 50px 20px;
    
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
    padding-left: 30px;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: #ffcc00;
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #de8b6f;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .social-icons a {
        font-size: 1.2rem;
    }
}

/*========================================. media query =================================*/

@media(max-width:820px){
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0; 
        right:-310px;
        height: 100vh; 
        width: 300px;
        background-color:#628061;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1); 
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar li{
    margin-bottom: 25px;
    }
    #mobile{
        display: flex; 
        align-items: center;
    }
    #close{
        display: initial;
        position: absolute;
        top: 30px; left: 30px;
        color:#222;
        font-size:24px;
    }
    #navbar ul {
        display: flex;
        gap: 20px; /* Adjust spacing */
        white-space: nowrap; /* Prevents text from breaking into two lines */
    }
   
    
}

@media (max-width: 1024px) {  /* iPad and Tablets */
    .container {
        position: relative;
        width: 100%;
        height: 50vh;
        display: flex;
        overflow: hidden;
    
    }
    .slide {
        width: 100vw;
        height: 50vh;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;    
    }
    
    .caption1 {
        height: 40vh; /* Reduce this if needed */
        width: 100%;
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        align-items: relative; /* Center text horizontally */
        justify-content: flex-start; /* Center text vertically */
        text-align: center;
        margin: 0; /* Remove unwanted margins */
        padding-top: 150px; /* Ensure no extra space at the top */
    
         
    }
    /* .slide-1 .caption1,
    .slide-2 .caption1,
    .slide-4 .caption1 {

    top: 40% !important;
    } /* Moves text up slightly */
         

    /* .slide-3 .caption1 {
        top: -5%;  /* Move text even higher 
        left : 57%; /* Shift text slightly to the right 
    } */

    /* .slide-1 .caption1 {
        top: 40%;  /* Move text even higher 
        
    } */

 
    

    .caption1 h1, 
    .caption1 h2, 
    .caption1 h3, 
    .caption1 h4 {
        font-size: 2.8vw;
        line-height: 1.3;
        margin: 0;
    }

    .arrow {
        width: 35px;
        height: 35px;
    }

    .arrow img {
        width: 18px;
    }
    .slide-3 .caption1 {
        top: -2%;  /* Move text even higher */
        left : 57%; /* Shift text slightly to the right */
    }
    





    }
    

@media (max-width: 768px) { /* Mobile Screens */

    .container {
        position: relative;
        width: 100%;
        height: 40vh;
        display: flex;
        overflow: hidden;
    }
    .slide {
        width: 100vw;
        height: 40vh;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;    
    }
    .caption1 {
        height: 40vh; /* Reduce this if needed */
        width: 100%;
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        align-items: relative; /* Center text horizontally */
        justify-content: flex-start; /* Center text vertically */
        text-align: center;
        margin: 0; /* Remove unwanted margins */
        padding-top: 60px; /* Ensure no extra space at the top */
    }

    .caption1 h1, 
    .caption1 h2, 
    .caption1 h3, 
    .caption1 h4 {
        font-size: 3.2vw;
        line-height: 1.3;
        margin: 0;
    }

    .arrow {
        width: 35px;
        height: 35px;
    }

    .arrow img {
        width: 18px;
    }
}
@media screen and (max-width: 767px) { 
    .caption1 h1, 
    .caption1 h2, 
    .caption1 h3, 
    .caption1 h4 {
        font-size: 3.5vw;
        line-height: 1.3;
        margin: 0;
    }

    .slide-3 .caption1 {
        /* top: -2%;  Move text even higher */
        left : 55%; /* Shift text slightly to the right */
    }
    .caption1 button {
        margin-top: -40px; /* Move it upwards */
        position: relative; /* Ensure it moves without breaking layout */
    
    }
}
/*========================================. shop.html =================================*/

.diet-plans {
    text-align: center;
    padding: 50px 10%;
    background-color: #eaddc0;
}

.diet-plans h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--black);
}

.diet-plans h2 span {
    color: var(--primary);
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: #628061;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease;
    
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card img {
    width: 100%;
    height: 250px;
    object-fit: fill;
    border-radius: 10px;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    color:#ffffff;
}

.price-range {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    margin: 10px 0;
}

.details-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #475554;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.details-btn:hover {
    background-color: var(--black);
}


  /*========================================. product-details.html =================================*/
  
 /* Product Details Section */
.product-details {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #eaddc0;
  }
  
  .product-container {
    display: flex;
    max-width: 1200px; /* Adjust as needed */
    width: 100%;
    gap: 40px; /* Space between carousel and product info */
  }
  
  /* Carousel Container */
  .carousel-container {
    width: 45%; /* Adjust as needed */
    max-width: 512px; /* Restrict main image size */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  
  .prod-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
  }
  
  .prod-left-arrow {
    left: -30px; /* Move left arrow further away */
  }
  
  .prod-right-arrow {
    right: -30px; /* Move right arrow further away */
  }
  
  .prod-arrow:hover {
    background: var(--black);
  }

  .carousel-wrapper img {
    width: 100%; /* Ensure the image fits within the container */
    height: auto;
    max-width: 512px; /* Restrict image size */
    border-radius: 10px;
    border: 3px solid #000000; /* Add a border to the main image */
    transition: transform 0.3s ease, border-color 0.3s ease; /* Smooth transitions */
  }
  
  .carousel-wrapper img:hover {
    transform: scale(1.1); /* Zoom effect */
    cursor: pointer; /* Indicate clickable */
    border-color: var(--primary); /* Change border color on hover */
  }
  
  /* Modal Styling */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
  }
  
  .close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .close-modal:hover {
    color: #ccc;
  }
  
  /* Thumbnails */
  .thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    margin: 5px;
    border: 2px solid #140000; /* Add a border to the thumbnails */
    border-radius: 5px; /* Rounded corners for thumbnails */
    transition: transform 0.2s, border-color 0.3s ease; /* Smooth transitions */
  }
  
  .thumbnail:hover {
    border-color: var(--primary); /* Change border color on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
  }
  
  .thumbnail.selected {
    opacity: 0.6;
    border: 2px solid var(--black); /* Highlight selected thumbnail */
  }
  
  /* Product Info */
  .product-info {
    width: 55%; /* Adjust as needed */
    max-width: 600px; /* Restrict width */
    padding: 20px;
  }
  
  .product-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .product-info label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
  }
  
  .product-info select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .plan-boxes {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Ensure boxes wrap on smaller screens */
  }
  
  .plan-box {
    padding: 15px;
    background: var(--primary);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    flex: 1; /* Allow boxes to grow and fill space */
    min-width: 120px; /* Minimum width for smaller screens */
    text-align: center;
  }
  
  .plan-box:hover,
  .plan-box.selected {
    background: var(--black);
  }
  
  .selected-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .error-msg {
    color: red;
    font-weight: bold;
    display: none;
  }
  
  /* Buttons */
  .product-info button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    cursor: pointer;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .product-info button:hover {
    background: var(--black);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .product-container {
      flex-direction: column; /* Stack carousel and product info vertically */
      align-items: center;
      gap: 20px; /* Reduce gap between sections */
    }
  
    .carousel-container {
      width: 100%; /* Full width for carousel */
      max-width: 100%; /* Remove max-width restriction */
    }
  
    .product-info {
      width: 100%; /* Full width for product info */
      max-width: 100%; /* Remove max-width restriction */
    }
  }
  
  @media (max-width: 768px) {
    .carousel-container {
      width: 100%; /* Full width for carousel */
    }
  
    .product-info {
      width: 100%; /* Full width for product info */
    }
  
    .plan-boxes {
      flex-direction: column; /* Stack price boxes vertically */
    }
  
    .plan-box {
      width: 90%; /* Full width for price boxes */
    }
  
    .product-info button {
      font-size: 0.9rem; /* Smaller font size for buttons */
      padding: 8px; /* Smaller padding for buttons */
    }
  }
  
  @media (max-width: 480px) {
    .carousel-container {
      width: 100%; /* Full width for carousel */
    }
  
    .product-info {
      width: 100%; /* Full width for product info */
    }
  
    .product-info h2 {
      font-size: 1.5rem; /* Smaller font size for product title */
    }
  
    .product-info label {
      font-size: 1rem; /* Smaller font size for labels */
    }
  
    .product-info select {
      font-size: 0.9rem; /* Smaller font size for dropdown */
    }
  
    .plan-box {
      font-size: 0.9rem; /* Smaller font size for price boxes */
    }
  
    .selected-price {
      font-size: 1.2rem; /* Smaller font size for selected price */
    }
  
    .product-info button {
      font-size: 0.8rem; /* Smaller font size for buttons */
      padding: 6px; /* Smaller padding for buttons */
    }
  }
  .error-msg {
    color: red;
    font-weight: bold;
    display: none; /* Hidden by default */
    margin-bottom: 10px;
    text-transform: none;
  }
  
  
/*========================================. service details =================================*/
/* Service Description Section */
.service-description {
    padding: 40px 20px;
    background-color: #eaddc0; /* Light background for contrast */
    /* Space between product details and service description */
  }
  
  .service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .service-description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
  }
  
  .service-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
  }
  
  .service-description ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
  }
  
  .service-description ul li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
  }
  
  .service-description ul li strong {
    color: var(--primary);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-description {
      padding: 20px 10px;
    }
  
    .service-description h2 {
      font-size: 1.8rem;
    }
  
    .service-description p {
      font-size: 1rem;
    }
  
    .service-description ul {
      margin-left: 20px;
    }
  
    .service-description ul li {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .service-description h2 {
      font-size: 1.5rem;
    }
  
    .service-description p {
      font-size: 0.95rem;
    }
  
    .service-description ul li {
      font-size: 0.9rem;
    }
  }

    /*========================================. cart.html =================================*/
/* Cart Overlay */
#cart-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px; /* Limit width for larger screens */
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for premium look */
    z-index: 1000;
    transition: right 0.5s ease-in-out; /* Smoother transition */
  }
  
  #cart {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure the cart actions are positioned correctly */
    overflow: hidden; /* Prevent content from overflowing */
  }
  
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .cart-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0; /* Remove default margin */
  }
  
  #close-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    font-size: 1.5rem; /* Adjust icon size */
    text-decoration: none; /* Remove underline */
    padding-right: 50px;
  }
  
  #close-cart:hover {
    color: #ff0000; /* Red color on hover */
  }
  
  /* Cart Divider */
  .cart-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 10px 0;
  }
  
  /* Cart Items */
  #cart-items {
    flex: 1;
    overflow-y: auto; /* Make the items scrollable */
    margin-bottom: 20px;
    padding-right: 10px; /* Add padding to prevent scrollbar from overlapping content */
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .cart-item:last-child {
    border-bottom: none;
  }
  
  .cart-item span {
    font-size: 1rem;
    color: #555;
  }
  
  .cart-item button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #ff0000; /* Red color for remove button */
  }
  
  .cart-item button:hover {
    color: #cc0000; /* Darker red on hover */
  }
  
  /* Quantity Controls */
  .cart-item .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cart-item .quantity-controls button {
    background: #f0f0f0;
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .cart-item .quantity-controls button:hover {
    background: #ddd;
  }
  
  .cart-item .quantity-controls .quantity {
    font-size: 1rem;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    min-width: 30px; /* Ensure the box has a minimum width */
  }
  
  /* Cart Summary */
  .cart-summary {
    margin-bottom: 20px;
  }
  
  .cart-summary p {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
  }
  
  .cart-summary .cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
  }
  
  /* Cart Actions */
  .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #fff; /* Ensure the background matches the cart */
    position: sticky; /* Stick to the bottom */
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1; /* Ensure the buttons are above the scrollable content */
  }
  
  .cart-actions button {
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%; /* Full width */
    max-width: 200px; /* Limit button width */
    margin: 0 auto; /* Center buttons */
    
    
  }
  
  #clear-cart {
    background: #ff4444; /* Red color for clear cart */
    color: white;
  }
  
  #clear-cart:hover {
    background: #cc0000; /* Darker red on hover */
  }
  
  #continue-shopping {
    background: #f0f0f0;
    color: #333;
  }
  
  #continue-shopping:hover {
    background: #ddd;
  }
  
  #checkout-btn {
    background: #628061; /* Your theme color */
    color: white;
  }
  
  #checkout-btn:hover {
    background: #475554; /* Darker theme color on hover */
  }
  
  /* Custom Scrollbar Styling */
  #cart-items::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
  }
  
  #cart-items::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 4px; /* Rounded corners for the track */
  }
  
  #cart-items::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Rounded corners for the thumb */
  }
  
  #cart-items::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    /* Cart Overlay */
    #cart-overlay {
      max-width: 100%; /* Full width on smaller screens */
    }
  
    /* Cart Header */
    .cart-header h3 {
      font-size: 1.2rem; /* Smaller font size for header */
    }
  
    /* Cart Items */
    .cart-item span {
      font-size: 0.9rem; /* Smaller font size for item names and prices */
    }
  
    .cart-item .quantity-controls button {
      padding: 5px 8px; /* Smaller padding for quantity buttons */
      font-size: 0.9rem; /* Smaller font size for quantity buttons */
    }
  
    .cart-item .quantity-controls .quantity {
      font-size: 0.9rem; /* Smaller font size for quantity box */
      padding: 5px 8px; /* Smaller padding for quantity box */
    }
  
    /* Cart Summary */
    .cart-summary p {
      font-size: 0.9rem; /* Smaller font size for subtotal and total */
    }
  
    .cart-summary .cart-total {
      font-size: 1rem; /* Smaller font size for total */
    }
  
    /* Cart Actions */
    .cart-actions {
      padding: 10px; /* Smaller padding for buttons */
    }
  
    .cart-actions button {
      font-size: 0.9rem; /* Smaller font size for buttons */
      padding: 10px; /* Smaller padding for buttons */
      max-width: 150px; /* Smaller width for buttons */
    }
  }
  
  @media (max-width: 480px) {
    /* Cart Header */
    .cart-header h3 {
      font-size: 1rem; /* Even smaller font size for header */
    }
  
    /* Cart Items */
    .cart-item span {
      font-size: 0.8rem; /* Even smaller font size for item names and prices */
    }
  
    .cart-item .quantity-controls button {
      padding: 4px 6px; /* Even smaller padding for quantity buttons */
      font-size: 0.8rem; /* Even smaller font size for quantity buttons */
    }
  
    .cart-item .quantity-controls .quantity {
      font-size: 0.8rem; /* Even smaller font size for quantity box */
      padding: 4px 6px; /* Even smaller padding for quantity box */
    }
  
    /* Cart Summary */
    .cart-summary p {
      font-size: 0.8rem; /* Even smaller font size for subtotal and total */
    }
  
    .cart-summary .cart-total {
      font-size: 0.9rem; /* Even smaller font size for total */
    }
  
    /* Cart Actions */
    .cart-actions {
      padding: 8px; /* Even smaller padding for buttons */
    }
  
    .cart-actions button {
      font-size: 0.8rem; /* Even smaller font size for buttons */
      padding: 8px; /* Even smaller padding for buttons */
      max-width: 120px; /* Even smaller width for buttons */
    }
  }
       /*========================================. checkout.html =================================*/
       /* Checkout Section */
.checkout {
    background: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #eaddc0;
}

.checkout-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.checkout h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.checkout h3 {
    font-size: 1.5rem;
    color: #628061; /* Your theme color */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #628061; /* Your theme color */
}

.form-group input::placeholder {
    color: #999;
}

/* Error Messages */
.error-msg {
    color: #ff4444; /* Red color for errors */
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #628061; /* Your theme color */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #475554; /* Darker theme color on hover */
}


/* Reassurance Messages */
.reassurance-msg {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
    font-style: italic;
}
.required {
    color: #ff4444; /* Red color for the star */
    font-size: 1.1rem; /* Slightly bigger to make it stand out */
    margin-left: 4px; /* Add a small space between the label and the star */
}
/* Checkbox Styling */
.form-group label {
    display: flex;
    align-items: center;
    font-size: 1.1rem; /* Slightly bigger font size */
    color: #333; /* Darker color for better visibility */
    margin-bottom: 20px;
    font-weight: 600; /* Bold font weight */
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Field Label Styling */
.form-group label[for] {
    font-size: 1rem; /* Slightly bigger font size */
    color: #333; /* Darker color for better visibility */
    font-weight: 600; /* Bold font weight */
    margin-bottom: 8px;
}

/* Disabled Field Styling */
input:disabled,
select:disabled {
    background-color: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.7;
}
/* Responsive Design */
@media (max-width: 768px) {
    .checkout {
        padding: 20px 10px;
    }

    .checkout-container {
        padding: 20px;
    }

    .checkout h2 {
        font-size: 1.8rem;
    }

    .checkout h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}
/*========================================.selected products =================================*/
/* Selected Products Section */
.selected-products {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .selected-products h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .selected-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .selected-product:last-child {
    border-bottom: none;
  }
  
  .selected-product span {
    font-size: 1rem;
    color: #555;
  }
/*========================================. terms and conditions =================================*/
/* Terms and Conditions Checkbox Styling */
.terms-checkbox {
    margin-bottom: 20px;
}

.terms-checkbox label {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.terms-link {
    color: #628061; /* Your theme color */
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #475554; /* Darker theme color on hover */
}

/* Error Message Styling for Terms and Conditions */
#error-terms {
    color: #ff4444; /* Red color for errors */
    font-size: 0.9rem;
    margin-top: 5px;
    display: none; /* Hidden by default */
}
 /*========================================. payment =================================*/
    .paymentpage {
    width: 100%;
    height: 100vh;
    background: #eaddc0;
}
 .payment {
    width: 50%;
    margin: auto;
    padding: 20px;
    background: #628061;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.payment h2 {
    margin-bottom: 20px;
    color: white;
}

#total-payable {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

#pay-btn {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background: #475554;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

#pay-btn:hover {
    background: var(--black);
}
/*========================================. Contact Us =================================*/

/* Contact Section */
.contact {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: #628061;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    color: #333;
}

.contact-form {
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #628061;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #628061;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #475554;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}
.social-links h3.center-align {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #628061;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #475554;
}
/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    /* Adjustments for tablets and smaller screens */
    .contact-container {
        padding: 20px;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .info-item i {
        font-size: 1.5rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    .social-links h3 {
        font-size: 1rem;
    }

    .social-icons a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Adjustments for mobile phones */
    .contact-container {
        padding: 15px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact p {
        font-size: 0.9rem;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        font-size: 0.8rem;
        max-width: 90%;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.8rem;
    }

    .social-links h3 {
        font-size: 0.9rem;
    }

    .social-icons a {
        font-size: 1rem;
    }
}
/*========================================. privacy policy =================================*/
/* Privacy Policy Section */
.privacy-policy {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-policy h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.policy-content h3 {
    font-size: 1.8rem;
    color: #628061;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.policy-content a {
    color: #628061;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #475554;
}
/*========================================. Disclaimer =================================*/
/* Disclaimer Section */
.disclaimer {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.disclaimer-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disclaimer h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.disclaimer-content h3 {
    font-size: 1.8rem;
    color: #628061;
    margin-top: 30px;
    margin-bottom: 15px;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}
/*========================================. terms and conditions =================================*/
/* Terms and Conditions Section */
.terms {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.terms p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.terms-content h3 {
    font-size: 1.8rem;
    color: #628061;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.terms-content a {
    color: #628061;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #475554;
}

/*========================================. greivence =================================*/
/* greivence Section */
.grievance {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.grievance-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.grievance h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.grievance p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.grievance-content h3 {
    font-size: 1.8rem;
    color: #628061;
    margin-top: 30px;
    margin-bottom: 15px;
}

.grievance-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.grievance-content a {
    color: #628061;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.grievance-content a:hover {
    color: #475554;
}
/*========================================. refund and cancellation =================================*/
/* Refund and Cancellation Section */
.refund {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.refund-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.refund h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.refund p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.refund-content h3 {
    font-size: 1.8rem;
    color: #628061;
    margin-top: 30px;
    margin-bottom: 15px;
}

.refund-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}
/*========================================. shipping and delivery =================================*/
/* Shipping and Delivery Section */
.shipping {
    background: #eaddc0;
    padding: 60px 20px;
    text-align: center;
}

.shipping-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shipping h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.shipping p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.shipping-content h3 {
    font-size: 1.8rem;
    color: #628061;
    margin-top: 30px;
    margin-bottom: 15px;
}

.shipping-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}
/*========================================. left align =================================*/
/* Left-align text for all pages */

.privacy-container,
.disclaimer-container,
.terms-container,
.refund-container,
.shipping-container {
    text-align: left;
}


/* Normal writing (no uppercase) */
h2, h3, p, label, a, button {
    text-transform: none;
}

/* Move "Follow Us" heading to the right */
.footer-social h3.follow-us {
    margin-left: 80px; /* Adjust as needed */
}

/* Contact Form W3Forms Integration */
.contact-form {
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #628061;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #628061;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #475554;
}
/*========================================. success message =================================*/

/*========================================. new button =================================*/
/* New Button Styling */
.pay-after-consultation {
    background: #475554; /* Different color to distinguish it */
    margin-top: 10px; /* Add some space between the buttons */
}

.pay-after-consultation:hover {
    background: #333; /* Darker color on hover */
}


/*========================================. success page =================================*/
/* Success Message Section */
.success-message {
    background: #eaddc0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #eaddc0;
}


.success-container {
    
    background: #628061;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.success-container h2 {
    font-size: 2rem;
    color: #f4f4f4; /* Your theme color */
    margin-bottom: 20px;
}

.success-container p {
    font-size: 1.1rem;
    color: #fffbfb;
    margin-bottom: 30px;
}

.success-container .submit-bttn {
    display: inline-block;
    padding: 10px 15px;
    background: #475554;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.success-container .submit-bttn:hover {
    background-color: var(--black);
}
/*========================================. About Us =================================*/
/* About Us Page Styling */
.about-section {
    padding: 60px 20px;
    background: #eaddc0;
    text-align: center;
}

.about-section.who-we-are {
    background: #475554;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    
}

.about-container h1 {
    font-size: 2.5rem;
    color: #445f44;
    margin-bottom: 20px;
    text-align: center;
}

.about-container h2 {
    font-size: 2rem;
    color: #eaddc0;
    margin-bottom: 20px;
    text-align: center;
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}
.about-container h3 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #eaddc0;
    margin-bottom: 20px;
}

.about-container ul {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
    padding-left: 20px;
}

.about-container ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #eaddc0;
}

/* Call to Action Section */
.about-cta {
    padding: 40px 20px;
    background: #eaddc0; /* Updated background color */
    color: #333; /* Dark text for better contrast */
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #445f44; /* Your theme color for the heading */
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555; /* Slightly darker text for readability */
}

.cta-buttons {
    display: flex;
    justify-content: center; /* Center the buttons horizontally */
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.cta-btn {
    padding: 10px 20px;
    background: #445f44; /* Your theme color */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #475554; /* Darker shade on hover */
}
/*========================================. Blog =================================*/
/* Blog Page Styling */
.blog-container {
    display: flex;
    padding: 20px;
    gap: 20px;
    background-color:#eaddc0 ;
}

.left-nav {
    width: 20%;
}

.left-nav h3 {
    font-size: 1.5rem;
    color: #628061;
    margin-bottom: 10px;
}

.left-nav ul {
    list-style: none;
    padding-left: 0;
}

.left-nav ul li {
    margin-bottom: 10px;
    cursor: pointer;
}

.left-nav ul li .category,
.left-nav ul li .subcategory {
    font-weight: bold;
    color: #628061;
}

.left-nav ul li .subcategories,
.left-nav ul li .posts {
    padding-left: 20px;
    display: none; /* Hide subcategories/posts by default */
}

.left-nav ul li .subcategories.active,
.left-nav ul li .posts.active {
    display: block; /* Show subcategories/posts when active */
}

.left-nav ul li .post-link {
    font-weight: normal;
    color: #555;
    text-decoration: none;
}

.left-nav ul li .post-link:hover {
    text-decoration: underline;
}

.main-content {
    width: 60%;
}

.main-content h1 {
    font-size: 2rem;
    color: #2d3d2d;
    margin-bottom: 10px;
    justify-content: center;
}

.main-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Right Sidebar */
.right-sidebar {
    width: 20%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.right-sidebar h3 {
    font-size: 1.5rem;
    color: #628061;
    margin-bottom: 20px;
    border-bottom: 2px solid #628061;
    padding-bottom: 10px;
}

.quick-links {
    list-style: none;
    padding-left: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #628061;
    text-decoration: underline;
}
/* Box Design for Left and Right Panels */
.left-nav, .right-sidebar {
    background: #628061;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.left-nav h3, .right-sidebar h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}

.left-nav ul, .right-sidebar ul {
    list-style: none;
    padding-left: 0;
}

.left-nav ul li, .right-sidebar ul li {
    margin-bottom: 10px;
}

.left-nav ul li .category,
.left-nav ul li .subcategory {
    font-weight: bold;
    color: #000000;
    display: block;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.left-nav ul li .category:hover,
.left-nav ul li .subcategory:hover {
    background: #f0f0f0;
}

.left-nav ul li .subcategories,
.left-nav ul li .posts {
    padding-left: 20px;
    display: none; /* Hide subcategories/posts by default */
}

.left-nav ul li .subcategories.active,
.left-nav ul li .posts.active {
    display: block; /* Show subcategories/posts when active */
}

.left-nav ul li .post-link {
    font-weight: normal;
    color: #040000;
    text-decoration: none;
    display: block;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.left-nav ul li .post-link:hover {
    background: #f0f0f0;
    text-decoration: underline;
}
/* Burger Menu */
.burger-menu {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    cursor: pointer;
    background: #628061;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}

.burger-menu i {
    font-size: 24px;
}
@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .left-nav {
        display: none;
        width: 100%;
    }

    .left-nav.active {
        display: block;
        max-width: 80%;
    }

    .main-content {
        width: 100%;
    }

    .right-sidebar {
        display: none;
    }

    .burger-menu {
        display: block;
    }
}
/*========================================. posts =================================*/
/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.containerpost {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    max-height: 100px;
}
.container2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    
}
/* Header */
/* Header */
.post-header {
    background: #628061;
    color: #fff;
    padding: 15px 0; /* Reduced padding */
    text-align: center;
}

.post-header .container {
    max-width: 800px; /* Match the container width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some horizontal padding */
}

.post-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem; /* Larger font size for the title */
    margin: 0; /* Remove default margin */
    line-height: 1.2; /* Adjusted line height */
    opacity: 1; /* Fully visible */
    display: block; /* Ensure it's a block-level element */
    color: #f1f1f1;
}

.post-header p {
    font-size: 1rem; /* Smaller font size for the meta information */
    opacity: 0.8; /* Slightly transparent */
    margin-top: 5px; /* Space between title and meta */
    display: block; /* Ensure it's a block-level element */
    margin-bottom: 0; /* Remove default margin */
    color: #000000;
}
/* Article Content */
.post-content {
    background: #fff;
    padding: 20px 0; /* Reduced padding */
}

.post-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem; /* Reduced font size */
    color: #374836;
    margin-top: 30px; /* Reduced margin */
    margin-bottom: 15px; /* Reduced margin */
}

.post-content p {
    font-size: 1.1rem;
    margin-bottom: 15px; /* Reduced margin */
}

.post-content blockquote {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem; /* Reduced font size */
    font-style: italic;
    color: #628061;
    border-left: 4px solid #628061;
    padding-left: 15px; /* Reduced padding */
    margin: 30px 0; /* Reduced margin */
}

.post-content ul, .post-content ol {
    margin-bottom: 15px; /* Reduced margin */
    padding-left: 20px;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 8px; /* Reduced margin */
}

/* Footer */
.post-footer {
    background: #333;
    color: #fff;
    text-align: center;
    max-height: 100px;
    padding: 15px 0; /* Reduced padding */
    margin-top: 30px; /* Reduced margin */
}

.post-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}
/*========================================. clinical nutritionn =================================*/
/* Clinical Nutrition Section */
.clinical-nutrition {
    background-color: #475554;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.clinical-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clinical-nutrition h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.clinical-nutrition p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.clinical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.clinical-item {
    background: #628061;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.clinical-item:hover {
    transform: translateY(-5px);
}

.clinical-item i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #eaddc0;
}

.clinical-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.clinical-item p {
    font-size: 1rem;
    color: #f0f0f0;
}


/*========================================.clinical nutrition page =================================*/
/* Clinical Nutrition Page Styles */
.clinical-hero {
    background: url('img/pexels-savanna-5184327.jpg') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    animation: fadeIn 2s ease-in-out;
  }
  
  .clinical-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideIn 1.5s ease-in-out;
  }
  
  .clinical-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: slideIn 2s ease-in-out;
  }
  
  .assurance {
    padding: 60px 20px;
    background-color: #eaddc0;
    text-align: center;
  }

  .assurance p {
    font-size: 1.2rem;
  }
  
  .assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .assurance-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .assurance-item:hover {
    transform: translateY(-10px);
  }
  
  .assurance-item i {
    font-size: 40px;
    color: #628061;
    margin-bottom: 15px;
  }
  
  .health-conditions {
    padding: 60px 20px;
    background-color: #475554;
    color: white;
    text-align: center;
  }
  
  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .condition-item {
    background: #628061;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .condition-item:hover {
    transform: translateY(-10px);
  }
  
  .condition-item i {
    font-size: 40px;
    color: #eaddc0;
    margin-bottom: 15px;
  }
  
  .clinical-pricing {
    padding: 60px 20px;
    background-color: #eaddc0;
    text-align: center;
  }
  
  .clinical-pricing ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .clinical-pricing ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

    /*========================================.security badges =================================*/
  /* Updated Payment Security Badges */
.payment-security {
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background: rgba(98, 128, 97, 0.1);
    border-radius: 10px;
  }
  
  .security-heading {
    font-size: 1rem;
    color: #628061;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 5px;
  }
  
  .payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .payment-icons img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
  }
  
  .payment-icon span {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
  }
  
  .payment-icons img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .payment-icons {
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .payment-icons img {
      height: 35px;
    }
    
    .payment-icon span {
      font-size: 0.8rem;
    }
  }
/*========================================.security note =================================*/

  .security-note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid #628061;
  }
  
  .security-note p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
  }
  
  .security-note i {
    color: #628061;
    margin-right: 8px;
  }
