* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(255, 158, 227);
    font-family: sans-serif;
    overflow-x: hidden;
}

a,
a:hover {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    color: #c36d16;
}

p {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}




/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the vertical scrollbar */

}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #e0f5e0;
    /* Light green background for the track */
    /* border-radius: 10px; */
    /* Rounded corners for the track */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    /* Subtle inner shadow */
}

/* Thumb (handle) */
::-webkit-scrollbar-thumb {
    background: #963b00;
    /* Gradient green thumb */
    /* border-radius: 15px; */
    /* Rounded corners for the thumb */
    /* border: 1px solid #000; */
    /* Matches the track background for a seamless look */
}

/* Thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #512000;
    /* Gradient green thumb */
}


.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    

}



.navv {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    
}

/* Navigation Links */
.navv>a {
    width: 100px;
    height: 45px;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
   
    text-decoration: none;
   
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.navv>a:hover {
    background-color: #963b00;
    color: #fff;
    transform: scale(1.05);
    /* Adds a slight zoom effect on hover */
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}


.hamburger-menu .line {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}


.btn-successs {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #963b00;
    transition: .2s;
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
}

.btn-successs:hover {

    border: 2px solid #963b00;
    background-color: transparent;
    color: #963b00;
}

/* Hamburger active state */
.hamburger-menu.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu styles */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 30%;
    width: 70%;
    display: none;
    flex-direction: column;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transform: translateY(-100%);
    transition: transform .3s ease;
    z-index: 99999999 !important;
    color: #000;
}

.mobile-menu .msg {
    display: none;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
}

.msg {
    display: flex;
    flex-direction: column;
}


.homee {
    background-color: #fff;
    padding: 50px 0 !important;
}

@media (max-width:1300px) {
    .navv {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
        transform: translateY(0);
    }

}

@media (max-width:500px) {
    .msg {
        display: none;
    }

    .mobile-menu .msg {
        display: flex;
    }
}



.left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btnn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.left .btnn-succes {
    border-radius: 5px;
    background-color: transparent;
    transition: 0.2s;
    border: 2px solid #b29876;
    color: #000;
    padding: 16px 30px;
    font-size: 1rem;
}

.left .btn-succes:hover {
    background-color: #b29876;
    color: #fff;
}
.right{
    display: flex;
    align-items: center;
    justify-content: center;
}
.right img {
    width: 85%;
    /* Set to 100% for responsiveness */
    max-width: 830px;
    /* Limit the maximum width */
    height: auto;
    /* Maintain aspect ratio */
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .btn {
        gap: 15px;
        /* Adjust gap for smaller screens */
    }

    .left .btn-succes {
        padding: 14px 25px;
        font-size: 0.9rem;
        /* Adjust font size */
    }

    .left h1 {
        font-size: 2rem;
        /* Adjust heading size */
    }

    .left p {
        font-size: 1rem;
        /* Adjust paragraph size */
    }
}

@media screen and (max-width: 768px) {
    .roww {
        flex-direction: column;
        /* Stack content vertically */
    }

    .right img {
        width: 100%;
        max-width: 100%;
        height: auto;
        /* Maintain aspect ratio */
    }

    .btn {
        flex-direction: column;
        /* Stack buttons vertically */
        align-items: flex-start;
    }

    .left .btn-succes {
        width: 100%;
        /* Full width buttons */
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .left h1 {
        font-size: 1.8rem;
        /* Smaller heading size */
    }

    .left p {
        font-size: 0.9rem;
        /* Smaller paragraph size */
    }

    .btn {
        gap: 10px;
        /* Adjust gap further for very small screens */
    }

    .left .btn-succes {
        padding: 12px 20px;
        /* Reduced padding */
    }
}

/* section 3 */

/* Flip card container */

/* section 4 */
/* Container for text alignment */
.pricing {
    background-color: #ededed;
}

.head-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    /* Ensure text is centered */
}

/* Box styling */
.box {
    width: 100%;
    max-width: 350px;
    height: 460px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 25px 30px;
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    position: relative;
    z-index: 1;
}

.box::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #e8e8e832;
    backdrop-filter: blur(5px);
    z-index: 2;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.box:hover {
    transform: translateY(-25px);
}

/* Icon inside box */
.box i {
    display: flex;
    font-size: 80px;
    /* Adjusted for responsiveness */
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* Space between icon and text */
    z-index: 3;
}

/* Item styling */

.item,
.item p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}


/* Paragraph text inside item */
.item p {
    font-size: 1.1em;
    margin: 10px 0;
    z-index: 3;
}

.card-title {
    font-weight: 700;
    z-index: 3;
}

/* Responsive adjustments */

/* For tablets and small devices (max-width: 992px) */
@media screen and (max-width: 992px) {
    .box {
        max-width: 320px;
        /* Make the box smaller on tablets */
        height: auto;
        /* Allow the box height to adjust */
        padding: 20px 25px;
        /* Adjust padding */
    }

    .box i {
        font-size: 70px;
        /* Reduce icon size */
    }

    .item p {
        font-size: 1em;
        /* Adjust font size for smaller screens */
    }
}

/* For mobile devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .box {
        max-width: 280px;
        /* Further reduce box size for mobile */
        height: auto;
        padding: 20px 15px;
        /* Adjust padding for mobile */
    }

    .box i {
        font-size: 60px;
        /* Adjust icon size for mobile */
    }

    .item p {
        font-size: 0.9em;
        /* Adjust font size for mobile */
    }
}

/* For very small mobile devices (max-width: 576px) */
@media screen and (max-width: 576px) {
    .box {
        width: 100%;
        /* Make the box take full width on small screens */
        height: auto;
        /* Allow the height to adjust */
        padding: 15px;
        /* Reduce padding for smaller devices */
    }

    .box i {
        font-size: 50px;
        /* Further reduce icon size */
    }

    .item p {
        font-size: 0.85em;
        /* Further adjust font size */
    }
}


/* blog section */

.blog {
    /* background-color: #f9f9f9; */
}

.head-text p {
    font-size: 18px;
    color: #888;
}

.head-text h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.head-text p+h1 {
    margin-top: 10px;
}

.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card img {
    height: 14rem;

}

.card:hover {
    transform: translateY(-15px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.btnn {
    text-align: right;
}

.btn-date {
    font-size: 14px;
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.btn-date:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .head-text h1 {
        font-size: 30px;
    }

    .card {
        margin-bottom: 15px;
    }
}



/* testimonial section */
/* html,
body {
  position: relative;
  height: 100%;
} */

/* body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
} */
.sliderr {
    background-color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-slide .text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}


/* message sectin or location */
.message {
    padding: 2rem 0;
    background-image: url('./img/formcake.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.form {
    background-color: #ffffff7f;
    backdrop-filter: blur(10px);
    --bg-light: #efefef;
    --bg-dark: #707070;
    --clr: #58bc82;
    /* --clr-alpha: #9c9c9c60; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 80%;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px green solid;
}

.input-span {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form input,
.form textarea {
    border-radius: 0.3rem;
    padding: 1rem 0.75rem;
    width: 100%;
    border: none;
    background-color: var(--clr-alpha);
    outline: 2px solid var(--bg-dark);
}

.form input:focus,
.form textarea:focus {
    outline: 2px solid var(--clr);
}

iframe {
    width: 100%;
    max-width: 650px;
    height: 450px;
}

.picc h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .roww {
        flex-direction: column-reverse;
    }

    .picc h1 {
        text-align: center;
        margin-top: 1.5rem;
    }
}


/* 
==================================
footer
=================================
*/

.footer {
    color: #000;
    background-color: #fff;
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}



.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    ;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #000, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, #000, transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #e84545;
    border-color: #e84545;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
   margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, #000, transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #e84545;
}

.footer .footer-contact p {
    margin-bottom: 5px;
    font-size: 14px;
}

.footer .copyright {
    padding-top: 20px;
    /* padding-bottom: 20px; */
    /* background-color: color-mix(in srgb, #000, transparent 95%); */
}

.footer .copyright p {
    margin-bottom: 0;
}

/* .footer .credits {
    margin-top: 6px;
    font-size: 13px;
  } */