/* CSS for the footer */
#footer {
    background-color: #014222;
    color: white;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;

}
#footer.fixed {
    position: fixed;
    left: 0;
    bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 30px;
    padding-top: 10px;
}

.footer-left {
    flex: 1;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

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

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact {
    flex: 1;
    text-align: right;
}
@media screen and (max-width: 900px) {
    #footer{display: none;}}
/* Rights Reserved Footer (Second Footer Line) */
#rights-footer {
    background-color: #222; /* Slightly darker for distinction */
    color: #aaa;
    text-align: center;
    padding: 0px 0;

    /* border-top: 1px solid #444;  Adds a line between footers */
    margin-top: 0px;
    font-size: 12px;
     /*position: relative; */
     /* Make the footer a positioned container */
    width: 100%;  /* Ensure it spans the full width of the viewport */
    left: 0;      /* Remove any left positioning */
    right: 0;     /* Remove any right positioning */
}


/* Crafted By Text (Positioned at Bottom Right) */
#rights-footer .crafted-by {
    /* position: absolute; Absolute positioning */
    bottom: 5px; /* 10px from the bottom */
    /* right: 80px; 10px from the right */
    font-size: 12px; /* Smaller font size for the 'crafted by' text */
    color: #ccc; /* Light grey color for the 'crafted by' text */
}

.header-text {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
  padding-right: 50px;
  font-family:'poppins';
 color: white;
 /* margin-top: 15px; Adjust this value to move the logo downward */
}
.logo img {
    margin-top: 15px;
    height: 70px;
   margin-right: 4px;
   .logo img {
    height: 200px;
   margin-right: 4px;
 
}
}
/* .top-footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right:50px;
    padding-left:20px;

    padding-top:20px;

    padding-bottom:20px;

    /* margin-left:110px;
    margin-right:140px; */
    /* max-width: 148 0px;  /* Ensure it spans the full width of the viewport 
    
    background-color: #fff;
    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;
}*/

.top-footer-section .logo {
    display: flex;
    color:#014222;
    align-items: center;
}

.top-footer-section .logo img {
    height: 50px;
    margin-right: 10px;
}

.top-footer-section .payment-methods img {
    height: 70px;
    margin: 0 10px;
}



.top-footer-section .email-updates {
    display: flex;
    align-items: center;
    background-color: #FF4D00;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.top-footer-section .email-updates span {
    margin-right: 10px;
}

.top-footer-section .email-updates:hover {
    /* background-color: #F35406; */
}
.email-updates p{
    position: absolute;
    margin-top: 30px;
    margin-left: 79px;
    font-weight: 400;
    font-size: 7px;
    color: #cec8c6;
}
.top-footer-section .email-updates .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
   
} 
.email-updates input[type="email"] {
    padding: 0px 10px;
    font-size: 14px;
    border: none;
    border-radius: 50px 0 0 50px; /* Rounded left corners */
    background-color: #FF4D00; /* Red background */
    color: white;
    outline: none;
    width: 260px; /* Adjust width as needed */
    /* font-family: Arial, sans-serif; */
}

.email-updates input[type="email"]::placeholder {
    color: white;
    font-weight: bold;
}
.email-updates input[type="email"]:focus::placeholder {
    color: #cec8c6; /* Color when the input is focused */
}
.email-updates input[type="email"]:hover::placeholder {
    color: #cec8c6; /* Color when the input is focused */
    
}
.emailform{
    display: flex;
    align-items: center;

}
/* .input:-internal-autofill-selected { */
/* Apply styles to autofilled input field inside .email-updates */
.top-footer-section .email-updates input:-webkit-autofill {
    appearance: menulist-button; /* Set appearance */
    background-image: none !important; /* Remove background image */
    background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important; /* Background color */
    color: fieldtext !important; /* Text color */
    transition: background-color 0.3s ease; /* Optional: smooth transition for background color */
}

/* Optional: you can apply additional styles to the .email-updates class */
.top-footer-section .email-updates {
    transition: background-color 0.3s ease; /* Smooth transition for background color changes */
}
/* General Message Styles */
/* General Message Styles */
.message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 30px;
    border-radius: 5px;
    /* font-weight: bold; */
    text-align: center;
    width: auto;
    min-width: 300px;
    max-width: 400px;
    z-index: 1000; /* Ensure it stays on top */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Success Message */
.message.success {
    background-color: #28a745;
    color: white;
}

/* Error Message */
.message.error {
    background-color: #dc3545;
    color: white;
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}


/*subscription ends*/
/* Rights Reserved Footer (Second Footer Line) */
.top-footer-section {
    background-color: #ffffff; /* Slightly darker for distinction */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 30px;
    padding-top: 10px;
   
}
.top-footer-content{
    background-color: #ffffff;
    border-top: 1px solid #ddd;;
    
}
.footer-content .logo p {
    margin: 5px 0; /* Add some space between paragraphs */
    font-size: 14px; /* Adjust font size */
}

.footer-content .logo p:first-child {
    font-weight: bold; /* Make the first line bold for emphasis */
    font-size: 16px; /* Larger size for emphasis */
}

.footer-content .logo p:nth-child(2) {
    font-size: 16px; /* Make Surya Enterprises a bit larger */
}

.footer-content .logo p:last-child {
    font-size: 14px; /* Regular font size for the address */
    line-height: 1.5; /* Line spacing for readability */
}
