.off-canvas-toggle-cover {
    display: none !important;
}
        .hero-section {
            background: linear-gradient(to right, #fff, #ffeb3b);
            padding: 50px 0;
        }
        .hero-text {
            color: #0d1b4c;
        }
        .highlight {
            font-weight: bold;
            background: linear-gradient(to right, #ffb347, #ffcc33);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .bird-image img {
            max-width: 100%;
            height: auto;
        }
        .blog-section {
            text-align: center;
            padding: 50px 20px;
        }
        .highlight {
            color: #f4a261;
            font-weight: bold;
        }
        .card-custom {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .card-custom:hover {
            transform: translateY(-5px);
        }
        .explore-link {
            font-weight: bold;
            color: #0d1b4c;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .explore-link:hover {
            text-decoration: underline;
        }
        .section-container {
            max-width: 1000px;
            margin: auto;
            padding: 50px 20px;
        }
        .title {
            font-size: 2rem;
            font-weight: bold;
            color: #0c1e52; /* Dark navy */
        }
        .sub-title {
            color: #f4a261; /* Soft orange */
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .sub-title::after {
            content: " →";
            color: #f4a261;
            margin-left: 8px;
        }
        .description {
            color: #0c1e52;
            font-size: 1rem;
            max-width: 500px;
        }
.btn-custom {
    background-color: #0c1e52;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    padding: 30px;
    margin: 10px;
    text-decoration: none;
}
        .btn-custom:hover {
            background-color: #091a45;
        }
        .play-button {
            width: 50px;
            height: 50px;
            background-color: #f4a261;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        .play-button:hover {
            background-color: #e68a42;
        }

        .subscription-box {
            background: linear-gradient(135deg, #f4a261, #ffd700);
            border-radius: 20px;
            padding: 50px 30px;
            max-width: 900px;
            margin: 50px auto;
            text-align: center;
            color: #0c1e52;
        }
        .subscription-box h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #0c1e52;
        }
        .subscription-box p {
            font-size: 1rem;
            max-width: 600px;
            margin: 15px auto;
        }
        .email-input {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .email-input input {
            border: none;
            padding: 15px;
            width: 300px;
            border-radius: 8px 0 0 8px;
            outline: none;
            font-size: 1rem;
        }
        .subscribe-btn {
            background-color: #0c1e52;
            color: white;
            padding: 15px 20px;
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .subscribe-btn:hover {
            background-color: #091a45;
        }
.subscription-box img {
    display: none !important;
}