* {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

/* body {
    background-color: #8D0B41;
    color: white;
} */

.logo {
    /* font-family: "Delicious Handrawn", serif; */
    font-size: 1.5em;
    color: #D39D55;
    font-weight: bold;
    letter-spacing: 4px;
}

.navbar {
    background-color: #ffffff;
}


.hero {
    background: #8D0B41;
    padding: 80px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero h1 {
    color: #D39D55;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
}

.btn-custom {
    background-color: white;
    color: #8D0B41;
    border: 1px solid white;
    margin: 10px;
}

.btn-custom:hover {
    background-color: #D39D55;
    color: #fff;
}

.hero img {
    max-width: 400px;
}

.submenu {
    background: #fff;
    border-top: solid 1px #e7e9ea;
}

.submenu ul {
    margin-bottom: 4px;
}

.submenu ul li {
    display: inline-block;
    width: 12%;
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
}

.submenu ul li a {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 4px 10px 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.submenu ul li img {
    padding-right: 6px;
}

.submenu ul li:hover {
    background: #f6f6f6;
    border-left: solid 1px #e7e9ea;
    border-right: solid 1px #e7e9ea;
}

.submenu ul li:hover a {
    color: #8D0B41;
}

.submenu ul li a:hover li {
    opacity: .8;
}

.submenu ul li .slink {
    position: relative;
}

@media (max-width: 768px) {
    .submenu {
        display: none;
    }
}

#about {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.about-us-section h1 {
    color: #8D0B41;
}

#packages .package_card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

#packages .package_card h5 {
    color: #D39D55;
    font-weight: bold;
}

#packages .package_card ul {
    list-style: none;
    padding: 0;
}

#packages .package_card ul li {
    margin-bottom: 5px;
}

#packages .package_card ul li .check {
    color: green;
    font-weight: bold;
}

#packages .package_card ul li .cross {
    color: red;
    font-weight: bold;
}

#packages .btn-custom {
    background-color: #8D0B41;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

#packages .note {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

#awesome .awesome_card {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 340px;
}

#awesome .icon {
    font-size: 40px;
    color: #8D0B41;
    margin-bottom: 10px;
}

#awesome .btn-custom {
    background-color: white;
    border: 2px solid #8D0B41;
    color: #8D0B41;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}

#awesome .btn-custom:hover {
    background-color: #8D0B41;
    color: white;
}

.awesome_card_para {
    height: 220px;
}

#contact .btn-primary {
    background-color: #8D0B41 !important;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border: 1px solid #8D0B41;
}

.footer {
    background: #213555;
    color: #f8f9fa;
    padding: 60px 0 18px;
}

.footer h5 {
    color: #D39D55;
    letter-spacing: 2px;
}

.footer p {
    letter-spacing: 1px;
}

.footer a {
    color: #f8f9fa;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #D39D55;
}

.footer-logo {
    width: 150px;
}

.social-icons a {
    font-size: 24px;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.social-icons .facebook {
    color: #1877F2;
    /* Facebook Blue */
    border-color: #1877F2;
}

.social-icons .instagram {
    border-color: #E1306C;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Instagram Gradient */

.social-icons a:hover {
    color: #D39D55;
}

.footer-bottom {
    background: #3E5879;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}