* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.cursor,
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor {
    width: 12px;
    height: 12px;
    background: #fa6901;
    border-radius: 50%;
    mix-blend-mode: difference;
}

.cursor-trail {
    width: 30px;
    height: 30px;
    background: #fa6901;
    border-radius: 50%;
    filter: blur(8px);
}

/* scroll bar */
html::-webkit-scrollbar {
    width: 7px;
}

html::-webkit-scrollbar-track {
    background: rgba(227, 148, 148, 0.442);
}

html::-webkit-scrollbar-thumb {
    background: #eb0029;
    border-radius: 5rem;
}

header {
    min-height: 60px;
    background-color: black;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 999;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    min-height: 60px;
    padding-left: 10px;
    padding-right: 10px;
}

.logo {
    float: left;
}

.logo .logo-img {
    width: 96px;
    align-items: center;
    cursor: pointer;
}

nav ul {
    flex-grow: 0.8;
    cursor: pointer;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 20px 1em;
    transition: background-color .5s linear;
    font-size: 17px;
    font-weight: 400;
}

nav a:hover {
    color: #eb0029;
    transition: all .5s linear;
}

.login-sec .login-btn,
.profile-btn {
    padding: 7px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    background-color: #eb0029;
    color: white;
    text-transform: capitalize;
    border: none;
    margin-right: 7px;
    gap: 0;
}


.login-sec .login-btn:hover {
    border: 1px solid #eb0029;
    background-color: white;
    color: #eb0029;
    transition: .5s linear;
}

.login-sec .profile-btn:hover {
    border: 1px solid #eb0029;
    background-color: white;
    color: #eb0029;
    transition: .5s linear;
}

.nav-container i {
    color: white;
    float: right;
    font-size: 27px;
    font-weight: 500;
    display: none;
    margin-right: 10px;
}

@media(max-width:1200px) {
    nav ul {
        margin-top: 16px;
        position: absolute;
        top: 80px;
        left: 80;
        right: 0px;
        height: 900px;
        width: 400px;
        text-align: left;
        flex-direction: column;
        background-color: #eb0029;
        border-left: 4px solid black;
        overflow: hidden;
        max-height: 0;
        cursor: pointer;
    }

    .nav-container i {
        display: block;
    }

    nav a {
        color: white;
        text-align: center;
        font-weight: 500;
    }

    nav a:hover {
        color: black;
    }

    nav ul li {
        width: 90%;
        padding: 4px 4px;
    }

    nav ul:hover {
        background-color: #eb0029;
        transition: all .5s linear;
        color: white;
        border-left: 4px solid black;

    }
}

@media(max-width:415px) {
    nav ul {
        margin-top: 16px;
        position: absolute;
        top: 80px;
        left: 80;
        right: 0px;
        height: 400px;
        width: 250px;
        text-align: left;
        flex-direction: column;
        background-color: #eb0029;
        border-left: 4px solid black;
    }

    nav a {
        font-size: 15px;
        padding: 2px 5px;

    }

    nav a:hover {
        color: white;
    }

    .login-sec .login-btn,
    .profile-btn {
        padding: 8px 13px;
        border-radius: 5px;
        font-weight: 500;
        font-size: 14px;
        background-color: #eb0029;
        color: white;
        text-transform: capitalize;
        border: none;
        /* margin-left: 4px; */
    }
}

@media (max-width: 1400px) {
    .container-xxl {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ///////////////////////////// hero section /////////////////////////////////////*/

.hero-section {
    width: 100%;
    height: 100vh;
    background-image: url(/codeCraft/images/heroimage.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#single-tomato-slice {
    position: absolute;
    top: 7%;
    left: -2%;
    width: 190px;
    opacity: 0.8;
    overflow-x: hidden;
    filter: blur(1px);


}

#tomato {
    position: absolute;
    top: 70%;
    opacity: 0.9;
    width: 160px;
    filter: blur(1px);
}

#red-chilli {
    position: absolute;
    top: 44%;
    left: 50%;
    width: 170px;
    rotate: 300deg;
    opacity: 0.9;
    filter: blur(0.6);

}

#red-chilli2 {
    width: 160px;
    position: absolute;
    top: 12%;
    right: 10%;
    rotate: 320deg;
    opacity: 0.8;
}

.child {
    position: absolute;
    width: 97%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    padding-left: 20px;
}

.text .h1 {
    padding: 10px 10px;
    font-size: 70px;
    font-weight: 900;
    text-transform: capitalize;
    color: white;
}

.text .h3 {
    color: #f41101;
    text-transform: capitalize;
    padding: 0px 20px;
    font-weight: 700;
}


.image #burger {
    width: 600px;
    z-index: 1;
}

@media(max-width:1325px) {
    .child {
        padding: 20px 20px;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .image #burger {
        margin-top: 20px;
        width: 600px;
        float: left;
    }


    .hero-section {
        height: 110vh;
        background-image: url(/codeCraft/images/heroimage.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
}

@media(max-width:1025px) {
    .hero-section {
        height: 130vh;
    }

    #red-chilli {
        display: none;
    }

    #red-chilli2 {
        display: none;
    }

    #single-tomato-slice {
        display: none;
    }





    #red-chilli {
        position: absolute;
        top: 60%;
        left: 25%;
        width: 170px;
        rotate: 300deg;
        opacity: 0.9;
        filter: blur(0.6);
        z-index: 1;

    }
}

@media(max-width:650px) {
    .image #burger {
        margin-top: 20px;
        width: 500px;
        float: left;
    }


    .text .h1 {
        padding: 10px 10px;
        font-size: 50px;
        font-weight: 900;
        text-transform: capitalize;
        color: white;
    }

    .text .h3 {
        color: #f41101;
        text-transform: capitalize;
        padding: 10px 20px;
    }

}

@media(max-width:610px) {
    body {
        overflow-x: hidden;
    }

    .text {

        width: 500px;
        height: 320px;
    }

    .image #burger {
        margin-top: 20px;
        width: 430px;
        float: left;
    }


    .text .h1 {
        padding: 10px 10px;
        font-size: 51px;
        font-weight: 700;
        text-transform: capitalize;
        color: white;
    }

    .text .h3 {
        margin-top: 20px;
        color: #f41101;
        text-transform: capitalize;
        padding: 10px 20px;
    }

}

@media(max-width:507px) {
    .text {
        width: 507px;
        height: 320px;
    }

    .image #burger {
        margin-top: 0px;
        width: 380px;
        float: left;
    }


    .text .h1 {
        padding: 15px 15px;
        font-size: 50px;
        font-weight: 900;
        text-transform: capitalize;
        color: white;
    }

    .text .h3 {
        margin-top: 20px;
        color: #f41101;
        text-transform: capitalize;
        padding: 15px 20px;
    }

}

@media(max-width:420px) {
    #tomato {
        position: absolute;
        top: 56%;
        width: 126px;
    }

    .text {
        width: 320px;
        height: 320px;
    }

    .image #burger {
        margin-top: 0px;
        width: 300px;
        float: left;
    }


    .text .h1 {
        padding: 15px 15px;
        font-size: 48;
        font-weight: 900;
        text-transform: capitalize;
        color: white;
    }

    .text .h3 {
        margin-top: 20px;
        color: #f41101;
        text-transform: capitalize;
        padding: 15px 20px;
    }

}

@media(max-width:506px) {
    .text {
        width: 320px;
        height: auto;
    }

    .image #burger {
        margin-top: 0px;
        width: 300px;
        float: left;
    }

}

@media (min-width: 1025px) and (max-width: 1325px) {
    #single-tomato-slice {
        position: absolute;
        top: 45%;
        left: -2%;
        width: 210px;
        opacity: 0.8;
        overflow-x: hidden;
        filter: blur(1px);


    }

    #tomato {
        position: absolute;
        top: 70%;
        opacity: 0.9;
        width: 190px;
        filter: blur(1px);
    }

    #red-chilli {
        position: absolute;
        top: 60%;
        left: 23%;
        width: 180px;
        rotate: 300deg;
        opacity: 0.9;
        filter: blur(1px);
        z-index: 1;

    }

    #red-chilli2 {
        width: 170px;
        position: absolute;
        top: 47%;
        right: 24%;
        rotate: 340deg;
    }
}

/* ///////////////hero-sec-2 //////////////// */
.hero-sec-2-pizza {
    width: 100%;
    height: 100%;
    background-color: #F4F1EA;
    position: relative;
    padding-bottom: 20px;
}

.child2 {

    width: 97%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.text .heading {
    font-size: 40px !important;
    font-weight: 700 !important;
}

.text .heading span {
    color: #fc710d;
}

.text .p {
    font-weight: 400;
    color: #5c6574;
}

.image #pizza-platter {
    width: 300px;
}

.image #pizza-platter {
    width: 300px;
    z-index: 1;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.788));
}

#order-now-btn {
    font-weight: 500;
    margin-top: 20px;
    width: 9em;
    height: 3em;
    border-radius: 30em;
    font-size: 15px;
    font-family: inherit;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5b4,
        -6px -6px 12px #ffffff;
    overflow: hidden;
}

#order-now-btn::before {
    content: '';
    width: 0;
    height: 3em;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #ff7919 0%, #f3a011 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

#order-now-btn:hover::before {
    width: 9em;
}



@media(max-width:1325px) {


    .image #pizza-platter {
        margin-top: 20px;
        width: 600px;
        float: left;
    }

    .child2 {
        height: 100vh;
    }

    .child2 {
        justify-content: space-between;
        gap: 50px;
    }


}

@media(min-width:1326px) {
    .hero-sec-2-pizza {
        width: 100%;
        height: 100%;
        background-color: #F4F1EA;
        position: relative;
        padding-bottom: 20px;
        padding-top: 7%;
        padding-bottom: 5%;
    }

    .image #pizza-platter {
        margin-top: 20px;
        width: 650px;
        float: left;
    }

}

@media(max-width:650px) {
    .image #pizza-platter {
        margin-top: 20px;
        width: 500px;
        float: left;
    }

}

@media(max-width:610px) {

    .image #pizza-platter {
        margin-top: 20px;
        width: 430px;
        float: left;
    }



}

@media(max-width:507px) {

    .image #pizza-platter {
        margin-top: 0px;
        width: 380px;
        float: left;
    }
}

@media(max-width:420px) {

    .image #pizza-platter {
        margin-top: 0px;
        width: 300px;
        float: left;
    }

}

@media(max-width:506px) {


    .image #pizza-platter {
        margin-top: 0px;
        width: 300px;
        float: left;
    }

}

@media(max-width:1131px) {


    .child2 {
        flex-direction: column;
        height: 150%;
        padding-bottom: 20px;
    }

}

/* //////////////////////  home-card-slider  ///////////////////////////////// */
.home-card-slider-section {
    width: 100%;
    height: 100%;
    background-color: #F4F1EA;
    justify-content: center;
    align-items: center;
    padding-top: 80px;

}

.home-main-slider-container {
    width: 80%;
    margin: 0 auto;
    padding: 25px 0px;

}

.card-img-div {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;

}

.card-img-div .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 50%;
}

.dashed-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed #fa6901;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    box-sizing: border-box;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-nav-btn {
    color: #f3a011d5;
    transition: color .3s ease;
}

.swiper-nav-btn::after,
.swiper-nav-btn::before {
    font-size: 25px;
    font-weight: 700;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-nav-btn:hover {
    color: #fc710d;
}

.swiper-pagination-bullet {
    background-color: #f3771181;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #fc710d;

}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:768px) {
    .swiper-nav-btn {
        display: none;
    }
}

/* //////////////////////  home-card-slider closee ///////////////////////////////// */

/* offer this week */

.offer-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.offer-card {
    position: relative;
    width: 320px;
    height: 280px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    transition: transform 0.3s ease;
    background-image: url(/codeCraft/images/offer.jpg);
    margin-bottom: 30px;
}

.offer-card:hover {
    transform: scale(1.05);
}

.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-image) no-repeat center center/cover;
    z-index: 0;
    filter: brightness(0.6);
}

.offer-card h3 {
    font-size: 24px;
    color: #fff;
    z-index: 1;
}

.offer-card p {
    font-size: 16px;
    color: #ddd;
    z-index: 1;
}



.offer-card .offer {
    position: absolute;
    top: 13px;
    right: 15px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 7px;
    border-radius: 55px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite;
}

.offer-card .offer img {
    width: 50px;
    height: 50px;
    margin-right: 8px;
    border-radius: 50%;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}


/* From Uiverse.io by Creatlydev */
.offer-ka-orderBtn {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--clr);
    color: #fff;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    margin-bottom: 30px;
    background-color: #eb0029
}

:root {
    --clr: red;
    /* Initial color */
}

.offer-ka-orderBtn {
    background-color: var(--clr);
}


.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--clr);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.offer-ka-orderBtn:hover {
    background-color: #fc710d;
}

.offer-ka-orderBtn:hover .button__icon-wrapper {
    color: #fc710d;
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.offer-ka-orderBtn:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.offer-ka-orderBtn:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

/* offer this week close//////////////////////////////////////////////////////////// */

/* logo swiper */
.swiper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    background: #F4F1EA;
    padding-bottom: 60px;
    width: 100%;
    overflow: hidden;
}

.logo-swiper {
    width: 80%;
    padding: 20px 0;
    overflow: hidden;

}

.logo-swiper-slide {
    width: 80%;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-swiper-slide img {
    width: 130px;
    height: auto;
    opacity: 0.6;
}



/* logo swiper  close */



.review-container {
    padding-top: 20px;
    display: flex;
    width: 100%;
    background: rgba(0, 0, 0, 0.945);
    color: white;
    overflow: hidden;
    padding-top: 40px;
}

.review-image-box {
    width: 50%;
}

.review-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 7% 0 0 round 5% 20% 0 10%);
}

.review-card-box {
    width: 40%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    height: auto;
}

.review-card {
    border-top: 4px solid #fa6901;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: black;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.stars {
    color: gold;
}

.icon {
    font-size: 24px;
    color: #FFD832;
    margin-top: 10px;
}

.review-container {
    position: relative;
    top: 0%;
}

.review-container #pairing-tomato {
    position: absolute;

}

#pairing-tomato {
    filter: blur(1px);
    transition: filter 0.5s ease-in-out;
    position: absolute;
    right: 10px;
    top: 20%;
    transform: translateY(-50%);
    animation: moveTomato 2s infinite alternate ease-in-out;
}

@keyframes moveTomato {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    100% {
        transform: translateY(-50%) translateX(20px);
    }
}

@media screen and (max-width: 768px) {
    #pairing-tomato {
        display: none;
    }

    .review-image-box {
        width: 100%;
    }

    .review-card-box {
        width: 100%;
    }
}




/* review section close //////////////////////////*/

section {
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    background: hsla(0, 0%, 0%, 0.945);
    position: relative;
}

.slider {
    display: flex;
    gap: 20px;
    animation: slide 38s linear infinite;
    width: max-content;
}

.slide {
    font-size: 60px;
    font-weight: 900;
    padding: 0 30px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    color: rgba(122, 122, 122, 0.904);
}

.slide:hover {
    color: red;
    transform: scale(1.1);
}

.slide::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: red;
    border-radius: 2px;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.slide:hover::after {
    width: 100%;
    left: 0;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.slider-wrapper {
    display: flex;
    width: max-content;
}

/* meet our cheff ////////////////////////////////////////////////////////*/
.meet-chef-container {
    background-color: #F4F1EA;
    position: relative;
    /* Added */
    padding-top: 100px;
    /* Adjust this value if needed */

}

#pizza-victizy {
    width: 160px;
    position: absolute;
    top: 50px;
    left: 2%;
    transform: translateX(-50%);
    z-index: 2;
    transition: filter 0.5s ease-in-out;
    animation: moveTomato 2s infinite alternate ease-in-out;
}

.chefs-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;

}

.chefs-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.chef-wrapper-container {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.chefe-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.chefe-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.chefe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chefe-card h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}

.chefe-card p {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.chefe-card:hover p {
    opacity: 1;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .chefe-card {
        width: 90%;
        max-width: 350px;
    }
}

/* food images slider ////////////////////*/
.food-images-container {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F4F1EA;
}

.food-swiper {
    width: 100%;
}

.food-swiper-slide img {
    width: 230px;
    height: 210px;

}

.food-swiper-slide img :hover {
    transform: scale(1.5);
}

.food-swiper-slide {
    transition: transform 0.3s ease-in-out;
}

/* ////////////////////// footer///////////////////// */
.footer {
    padding-top: 5%;
    width: 100%;
    height: 100%;
    background-color: black;
}

.orange-info-box {
    margin: 0 auto;
    width: 80%;
    background-color: #fa6901;
    border-radius: 10px;
    flex-wrap: wrap;
    padding-bottom: 20px;

}

.orange-info-box div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.orange-info-box i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    padding: 10px 10px;
    color: #fa6901;
    text-align: center;
}

@media(max-width:831px) {
    .orange-info-box {
        display: flex;
        flex-direction: column;
        height: auto;
        justify-content: center !important;
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .orange-info-box {
        flex-direction: column;
        padding: 20px;
        width: 90%;
    }

    .orange-info-box div {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .orange-info-box i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .orange-info-box h6 {
        font-size: 14px;
    }
}

.custom-footer {
    padding-top: 5%;
    width: 100%;
    background-color: black;
    color: white;
}

.custom-footer-section h3 {
    color: white;
}

.custom-info-box {
    margin: 0 auto;
    width: 80%;
    background-color: #fa6901;
    border-radius: 10px;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
}

.custom-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.custom-box i {
    font-size: 24px;
    color: white;
    background: #111;
    padding: 10px;
    border-radius: 50%;
}

/* Footer Sections */
.custom-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* background: #222; */
    padding: 40px 20px;
}

.custom-footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: center;
}

.custom-footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #ec9004;
    display: inline-block;
    padding-bottom: 5px;
}

.custom-footer-section a,
.custom-footer-section p {
    color: #bbb;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.custom-footer-section a:hover {
    color: #f1c40f;
}

/* Social Media Icons */
.custom-social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.social-icon i {
    font-size: 27px;
}

.social-icon i:hover {
    transition: all .5s ease-in-out;
    transform: scale(1.2);
    color: white;
}

.facebook i:hover {
    color: #3b5998;
}

.twitter i:hover {
    color: #1da1f2;
}

.instagram i:hover {
    color: #e4405f;
}

.linkedin i:hover {
    color: #0077b5;
}

.custom-footer-bottom {
    text-align: center;
    background: red;
    padding: 10px;
    font-size: 14px;
    color: white;
}

/* Back to Top Button */
#customBackToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fa6901;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    transition: all 0.3s ease-in-out;
}

#customBackToTop:hover {
    background: #e05b00;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 831px) {
    .custom-info-box {
        flex-direction: column;
    }

    .custom-footer-container {
        flex-direction: column;
    }

    .custom-social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .custom-footer-section {
        min-width: 100%;
    }
}