@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root {
    --main-color: #ff9f43;
    --black: #13131a;
    --bg: #010103;
    --border: .1rem solid rgba(255, 255, 255, .3);
}

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5rem;
}

body {
    background: var(--bg);
}

section {
    padding: 2rem 7%;
}

.heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
    letter-spacing: 5px;
}

.heading span {
    color: #ff9f43;
    text-transform: uppercase;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover {
    letter-spacing: .2rem;
}

.header {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .logo img {
    height: 6rem;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.header .navbar a:hover {
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div {
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover {
    color: var(--main-color);
}

#menu-btn {
    display: none;
}

.header .search-form {
    position: absolute;
    top: 115%;
    right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active {
    transform: scaleY(1);
}

.header .search-form input {
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem;
    text-transform: none;
}

.header .search-form label {
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black);
}

.header .search-form label:hover {
    color: var(--main-color);
}


.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(./c2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

 .content2 {
    opacity: 0; /* Initially hide the content */
    transform: translateY(20px); /* Move content slightly down */
    animation: fadeInUp 1s ease-in-out forwards; /* Apply the animation */
    animation-delay: 0.3s; /* Delay to make it smooth */
}

/* Animation for heading */
.content2 h3 {
    font-weight: bolder;
    font-size: 5rem;
    color: #4c2a06; /* Stylish brown coffee color */
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px); /* Move text further down */
    animation: fadeInUp 1s ease-in-out forwards; /* Trigger the animation */
    animation-delay: 0.5s; /* Delay for text to appear after background */
}

/* Animation for paragraph */
.content2 p {
    width: 60%;
    font-size: 2.5rem;
    color:#3b2e2a;
    line-height: 1.6;
    font-weight: bold;
    opacity: 0;
    transform: translateY(50px); /* Same effect as h3 */
    animation: fadeInUp 1.5s ease-in-out forwards; /* Slightly longer animation */
    animation-delay: 0.8s; /* Delayed for smooth transition */
}

/* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Starts from below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Moves to normal position */
    }
}

.about .row {
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
}

.about .row .image {
    flex: 1 1 45rem;
}

.about .row .image img {
    width: 100%;
}

.about .row .content {
    flex: 1 1 45rem;
    padding: 2rem;
}

.about .row .content h3 {
    font-size: 3rem;
    color: #fff;
}

.about .row .content p {
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}

.heading2 {

    font-size: 20px;
    margin-bottom: 2%;
    color: wheat;
    text-align: center;
}

.heading3 {
    margin-top: 4%;
    font-size: 20px;
    margin-bottom: 2%;
    color: wheat;
    text-align: center;
}

.heading4 {
    margin-top: 4%;
    font-size: 20px;
    margin-bottom: 2%;
    color: wheat;
    text-align: center;
}

.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    padding: 2rem;
    text-align: center;
    border: var(--border);
}

.menu .box-container .box img {
    height: 50vh;
}

.menu .box-container .box h3 {
    color: lightsalmon;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box p {
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    color: #d3ad7f;
    font-size: 2rem;
    padding: .5rem 0;
}

.menu .box-container .box .price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover {
    background: #fff;
}

.menu .box-container .box:hover>* {
    color: var(--black);
}

.products .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.products .box-container .box {
    text-align: center;
    border: var(--border);
    padding: 2rem;
}

.products .box-container .box .icons a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border: var(--border);
    color: #fff;
    margin: .3rem;
}

.products .box-container .box .icons a:hover {
    background: var(--main-color);
}

.products .box-container .box .image {
    padding: 2.5rem 0;
}

.products .box-container .box .image img {
    height: 25rem;
}

.products .box-container .box .content h3 {
    color: #fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .stars {
    padding: 1.5rem;
}

.products .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price {
    color: #fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span {
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}

.review .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.review .box-container .box {
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}

.review .box-container .box p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ccc;
    padding: 2rem 0;
}

.review .box-container .box .user {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box h3 {
    padding: 1rem 0;
    font-size: 2rem;
    color: #fff;
}

.review .box-container .box .stars i {
    font-size: 1.5rem;
    color: var(--main-color);
}

/* General Section Styling */
.contact {
    background: rgba(0, 0, 0, 0.8) url('contact-bg.jpg') center/cover no-repeat;
    padding: 50px;
    text-align: center;
    color: white;
}

.contact .heading {
    font-size: 3rem;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.contact .heading span {
    color: #ff9f43;
}

/* Row Styling */
.contact .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Map Container Styling */
.map-container {
    flex: 1;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Form Styling */
.contact form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out;
}

.contact form:hover {
    transform: translateY(-10px);
}

.contact form h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff9f43;
}

/* InputBox Floating Label */
.inputBox {
    position: relative;
    margin-bottom: 20px;
}

.inputBox input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ff9f43;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.inputBox label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    font-size: 1rem;
    color: #ff9f43;
    transition: 0.5s;
}

.inputBox input:focus ~ label


.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box {
    border: var(--border);
}

.blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.blogs .box-container .box .image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img {
    transform: scale(1.2);
}

.blogs .box-container .box .content {
    padding: 2rem;
}

.blogs .box-container .box .content .title {
    font-size: 2.5rem;
    line-height: 1.5;
    color: #fff;
}

.blogs .box-container .box .content .title:hover {
    color: var(--main-color);
}

.blogs .box-container .box .content span {
    color: var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding: 1rem 0;
}

.footer {
    background: var(--black);
    text-align: center;
}

.footer .share {
    padding: 1rem 0;
}

.footer .share a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: #fff;
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;
}

.footer .share a:hover {
    background-color: var(--main-color);
}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;
}

.footer .links a {
    padding: .7rem 2rem;
    color: #fff;
    border: var(--border);
    font-size: 2rem;
}

.footer .links a:hover {
    background: var(--main-color);
}

.footer .credit {
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;
}

.footer .credit span {
    color: var(--main-color);
}

/* catering */
.catering-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #010103;
}

.catering-text {
    flex: 1;
    padding-right: 40px;
}

.catering-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.catering-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: white;
}

.catering-text .logo {
    font-size: 24px;
    color: #DAA520;
    margin-bottom: 20px;
}

.catering-text .catering-btn {
    background-color: #d3ad7f;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.catering-img {
    flex: 1;
}

.catering-img img {
    max-width: 100%;
    border-radius: 10px;
}

@media(max-width: 768px) {
    .catering-section {
        flex-direction: column;
        text-align: center;
    }

    .catering-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .catering-img img {
        max-width: 80%;
    }
}




/* footer */
.footer {
    background-color: #141414;
    color: #FFC107;
    padding: 40px 0;
    text-align: left;
    letter-spacing: 1px;
    border-top: 4px solid #FFC107;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex-basis: 22%;
}

.footer-section h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: #FFC107;
}

.footer-section h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FFC107;
    display: block;
    margin-top: 5px;
}

.footer-section p,
.footer-section a {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #E5E5E5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFC107;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    margin-right: 15px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;

}

.social-icons a :hover {
    color: #FFC107;
    transform: scale(1.2);
}

.icon.twitter:hover {
    color: #1DA1F2;
}

.icon.facebook:hover {
    color: #3b5998;
}

.icon.instagram:hover {
    color: #E4405F;
}

.icon.yelp:hover {
    color: #D32323;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}


/* press */
.press-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.press-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.subheading {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #FFC107;
}

.subheading2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 5%;
    color: #FFC107;
}

.subheading3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 5%;
    color: #FFC107;
}

.image-container {
    margin-bottom: 20px;
}

.image-container img {
    max-width: 200px;
    height: auto;
}

.description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    /* White text for the description */
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .press-heading {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }
}

.quote-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    /* White text */
}

.quote-author {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #fff;
}

.quote-line {
    width: 50%;
    border: 0;
    border-top: 1px solid #FFC107;
    /* Gold line color */
    margin: 0 auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
    }

    .quote-author {
        font-size: 1rem;
    }

    .quote-line {
        width: 70%;
    }
}

.footer .credit {
    text-align: center;
    font-size: 17px;
}




/* Menu Section */
.menu {
    background-image: url(pexels-photo-1695052.jpeg);
    padding: 2rem;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.heading {
    text-align: center;


    font-size: 2rem;
    padding: 10px 20px;
    text-align: center;
    color: #333;
    /* Text color */
    background: rgba(255, 255, 255, 0.8);
    /* Light semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    /* Optional: adds a blur effect */
}

/* Add a gradient background with rgba */
.heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    /* Light semi-transparent overlay */
    z-index: -1;
    border-radius: inherit;
    /* Ensure the overlay matches the border radius */
}

.heading span {
    color: #5d4037;
    /* Coffee color */
    font-weight: bold;
}

.heading,
.heading2,
.heading3,
.heading4 {
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
}

.box-container2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.box2 {
    background-color: #4b3f2d;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box2:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.box2 img {
    width: 100%;
    height: auto;
    display: block;
}

.box2 h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
}

.box2 p {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 10px;
}

.price {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background: #f8f8f8;
}

/* Base styles */
.menu {
    padding: 20px;
    background-color: #f4f4f4;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
}

.heading,
.heading2,
.heading3,
.heading4 {
    text-align: center;
    margin-bottom: 20px;
}

.heading span,
.heading2 span {
    color: #5d4037;
    /* Coffee color */
}

.box-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.box2 {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box2 img {
    width: 100%;
    height: 50vh;
    transition: transform 0.3s ease;
}

.box2 h3 {
    font-size: 2rem;
    margin-top: 5%;
    text-align: center;
}

.box2 p {
    padding: 0 15px;
    font-size: 1.7rem;
    color: #666;
}

.box2 .price {
    margin-top: 3%;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px;
    background: #efebd0;
    /* Light coffee color */
    border-top: 1px solid #ddd;
}

.box2:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.box2 img:hover {
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 1000px) {
    .box2 {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 568px) {
    .box2 {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {

    .heading,
    .heading2,
    .heading3,
    .heading4 {
        font-size: 1.25rem;
    }

    .box2 h3 {
        font-size: 1rem;
    }

    .box2 .price {
        font-size: 1rem;
    }
}
.heading2 {
    width: 50%;
    margin-left: 25%;
    font-size: 2rem;
  color: black;
    padding: 10px 20px;
    text-align: center;
    overflow: hidden; /* Ensures the background doesn’t overflow the heading */
    background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6)); /* Initial background gradient */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: bgAnimation 5s ease-in-out infinite; /* Animation for background effect */
}

.heading2 span {
    color: #5d4037; /* Coffee color */
    font-weight: bold;
}

/* Animation for background effect */
@keyframes bgAnimation {
    0% {
        background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6));
    }
    50% {
        background: linear-gradient(45deg, rgba(77, 183, 255, 0.6), rgba(77, 255, 77, 0.6));
    }
    100% {
        background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6));
    }
}

/* Optional: Adding an underline effect */
.heading2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 77, 77, 0.6);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.heading2:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.heading3 {
    width: 50%;
    margin-left: 25%;
    font-size: 2rem;
  color: black;
    padding: 10px 20px;
    text-align: center;
    overflow: hidden; /* Ensures the background doesn’t overflow the heading */
    background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6)); /* Initial background gradient */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: bgAnimation 5s ease-in-out infinite; /* Animation for background effect */
}

.heading3 span {
    color: #5d4037; /* Coffee color */
    font-weight: bold;
}

/* Animation for background effect */
@keyframes bgAnimation {
    0% {
        background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6));
    }
    50% {
        background: linear-gradient(45deg, rgba(77, 183, 255, 0.6), rgba(77, 255, 77, 0.6));
    }
    100% {
        background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6));
    }
}

/* Optional: Adding an underline effect */
.heading3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 77, 77, 0.6);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.heading3:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}



.heading4 {
    width: 50%;
    margin-left: 25%;
    font-size: 2rem;
  color: black;
    padding: 10px 20px;
    text-align: center;
    overflow: hidden; /* Ensures the background doesn’t overflow the heading */
    background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6)); /* Initial background gradient */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: bgAnimation 5s ease-in-out infinite; /* Animation for background effect */
}

.heading4 span {
    color: #5d4037; /* Coffee color */
    font-weight: bold;
}

/* Animation for background effect */
@keyframes bgAnimation {
    0% {
        background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6));
    }
    50% {
        background: linear-gradient(45deg, rgba(77, 183, 255, 0.6), rgba(77, 255, 77, 0.6));
    }
    100% {
        background: linear-gradient(45deg, rgba(255, 183, 77, 0.6), rgba(255, 77, 77, 0.6));
    }
}

/* Optional: Adding an underline effect */
.heading4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 77, 77, 0.6);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.heading4:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
