* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #0f0c29; /* Dark Navy Blue */
    color: #fff;
    line-height: 1.6;
}

header {
    background: #1b1464;
    padding: 20px 0;
    text-align: center;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700; /* Gold */
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    height: 60vh;
    background: linear-gradient(rgba(15, 12, 41, 0.7), rgba(15, 12, 41, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #ffd700;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.features {
    padding: 50px 20px;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: #1b1464;
    padding: 20px;
    margin: 10px;
    width: 300px;
    border-radius: 10px;
    border: 1px solid #ffd700;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 14px;
}
.social-section {
    text-align: center;
    padding: 40px 20px;
    background: #0f0c29;
}

.social-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* আইকনের কালারগুলো */
.icon-fb { background-color: #3b5998; }
.icon-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-wa { background-color: #25d366; }
.icon-yt { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* হোভার করলে একটু বড় হবে */
.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #ffd700;
}
.tarot-info {
    padding: 60px 20px;
    background: #0f0c29;
    color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.info-block {
    text-align: center;
    margin-bottom: 40px;
}

.info-block h2 {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 15px;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: rgba(27, 20, 100, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: 0.3s;
}

.info-box:hover {
    border-color: #ffd700;
    background: rgba(27, 20, 100, 0.8);
}

.info-box h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 22px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.info-box ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.info-box ul li strong {
    color: #ffd700;
    display: block;
}