/* Body Styles */
body {
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Container Styles */
.container {
    padding: 20px;
}

/* Creative Title Styles */
.creative-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #a74444, #de6868);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    animation: pulse 10s infinite;
}

/* Header Logo */
.header-logo {
    height: auto;
    display: block;
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
    .creative-title {
        font-size: 1.5rem;
        margin-top: 10px;
    }
    .header-logo {
        max-width: 55%;
    }
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: scale(1.05);
    border-color: #a74444;
}

.card:hover .card-title {
    color: #a74444;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

.card-text {
    font-size: 14px;
    margin-top: 15px;
}

.btn-custom {
    background: linear-gradient(45deg, #a74444, #d65151);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #d65151, #a74444);
}

.contact-icon {
    color: #a72828;
    margin-right: 1%;
}

.modal-header {
    background-color: #a74444;
    color: #fff;
}

.modal-header .btn-close {
    color: #fff;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.1);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1030;
}

#footer_div {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Background Circles */
.area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.15);
    animation: animate 20s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

/* Adjust positions of circles as needed */
/* ... */

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}