* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #111;
    font-family:Georgia, 'Times New Roman', Times, serif;
}
hr{
    width: 70%;
    
    height: 2px;
    color: black;
}
.page-heading{
    text-align: center;
    margin-top: -200px;
    position: absolute;
    transform: translate(-50%,50%);
    margin-left: 50%;
    font-size: 26px;
    font-weight: 600;
    color: red;
    flex-wrap:wrap ;
    color: white;
    
}
.info{
    text-align: center;
    margin-top: -150px;
    position: absolute;
    transform: translate(-50%,50%);
    margin-left: 50%;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: white ;
}
.header-image {
    width: 100%;
    height: 260px;
    background: url('images/sambhar\ image.jpg') center/cover no-repeat;
  opacity: 0.65;
    
}
.recipe-section {
    padding: 40px;
    background-color: bisque;
}
.recipe-section h1 {
    margin-bottom: 20px;
}
.recipe-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin: auto;
    border-top: 2px solid black;
    padding-top: 20px;
}
.column {
    width: 50%;
    text-align: left;
}
.divider {
    width: 2px;
    background: #ccc;
    height: auto;
}
.button-section {
    padding: 40px;
    background-color: bisque;
}
.back-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid green;
    color: green;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}
.back-button:hover {
    background: green;
    color: white;
}
footer {
    background-color: black; 
   color: white;
   padding: 50px 20px;
   font-family: Arial, sans-serif;
}

.footer-container {
   display: flex;
   justify-content: space-around;
   flex-wrap: wrap;
}

.footer-logo img {
   width: 200px;
   border-radius: 50%;
   position: absolute;
   margin-top: -7%;
}


.footer-links, .footer-products {
   flex: 1;
   min-width: 200px;
}

.footer-links h3, .footer-products h3, .footer-contact h3 {
   font-size: 18px;
   margin-bottom: 10px;
}

.footer-links ul, .footer-products ul {
   list-style: none;
   padding: 0;
}

.footer-links ul li, .footer-products ul li {
   margin-bottom: 8px;
}

.footer-links ul li a, .footer-products ul li a {
   color: white;
   text-decoration: none;
   font-size: 14px;
}

.footer-contact {
   flex: 1;
   min-width: 250px;
}

.footer-contact p {
   font-size: 14px;
   margin-bottom: 10px;
}

.footer-contact form {
   display: flex;
   flex-direction: column;
}

.footer-contact input,
.footer-contact textarea {
   width: 100%;
   padding: 10px;
   margin-top: 10px;
   border-radius: 5px;
   border: none;
   font-size: 14px;
}

.footer-contact textarea {
   height: 100px;
   resize: none;
}

.footer-contact button {
   background-color: #A3D900;
   color: black;
   padding: 10px 20px;
   margin-top: 10px;
   border: none;
   cursor: pointer;
   font-weight: bold;
}
.footer-bottom {
   text-align: center;
   margin-top: 20px;
}

.footer-icons img {
   width: 40px;
   margin: 5px;
}
footer {
   background: black;
   color: white;
   padding: 40px 20px;
}
.footer-container {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   max-width: 1200px;
   margin: auto;
}

.footer-container div {
   flex: 1;
   margin: 10px;
   min-width: 200px;
}


footer h2,
footer h3,
footer ul li a,
footer input,
footer textarea,
footer button {
   transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
footer h2:hover,
footer h3:hover,
footer ul li a:hover,
footer input:hover,
footer textarea:hover,
footer button:hover {
   transform: translateX(10px);
   color: limegreen; /* Changes text color to green */
}

footer ul {
   list-style: none;
   padding: 0;
}

footer ul li {
   margin: 8px 0;
}

footer ul li a {
   color: white;
   text-decoration: none;
   font-size: 16px;
   display: inline-block; 
}


footer ul li a:hover {
   color: limegreen;
}
footer input,
footer textarea {
   width: 100%;
   padding: 10px;
   margin: 5px 0;
   border: none;
   border-radius: 5px;
}

footer button {
   background: limegreen;
   color: white;
   padding: 10px 15px;
   border: none;
   cursor: pointer;
   border-radius: 5px;
}
.small-footer {
   background: #111;
   color: white;
   text-align: center;
   padding: 15px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   font-size: 14px;
}

.small-footer a {
   color: white;
   text-decoration: none;
   transition: color 0.3s ease-in-out;
}


.small-footer a:hover {
   color: limegreen;
}