body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #33130f;
    color: #f7f0e6;
}

a {
    text-decoration: none;
    color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fb010181;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 192px;
    max-height: 192px;
}

.nav a {
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #cc3a28;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1544717305-2782549b5136?auto=format&fit=crop&w=1650&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 192px;
    top: 0;
}

.hero-text {
    color: #fff;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 48px;
    margin: 0;
}

.hero-text p {
    font-size: 22px;
    margin-top: 10px;
}

.section {
    padding: 60px 20px;
}

.alt {
    background-color: #f803037c;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #fafafa;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #570a01;
    padding: 20px;
    border: 1px solid #f7020277;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
}

.card ul {
    padding-left: 20px;
}

.footer {
    background-color: #ff190057;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: #f7f0e6;
    text-decoration: underline;
}

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-icons img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, opacity 0.3s;
}

.floating-icons img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

html {
    scroll-behavior: smooth;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #a0281b;
    cursor: pointer;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    background-color: #a0281b;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #69241bdd;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #f7f0e6;
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        margin: 10px 0;
    }

    .nav-toggle {
        display: block;
    }
}


.pay-btn {
    display: inline-block;
    background-color: #a0281b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.pay-btn:hover {
    background-color: #67cc28;
}


.blue-pay-btn {
    background-color: #0095f8;
    color: #fff;
    padding: 16px 32px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.blue-pay-btn:hover {
    background-color: #d4e214;
}

.navbar .logo img {
    height: 192px;
    transition: height 0.3s ease;
}

/* Modal Base */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }
  
  /* Modal Content Box */
  .modal-content {
    background-color: #f7f0e6;
    margin: 10% auto;
    padding: 30px;
    border: 2px solid #a0281b;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    color: #33130f;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  
  
  /* Close Button */
  .close {
    color: #a0281b;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #cc3a28;
  }
  
  .modal-text {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
  }
  