   body {
        background-color: #f8f9fa;
    }

    .hero-section {
        background: url('/website/assets/images/astrology-hero_11zon.webp') no-repeat center center/cover;
        color: white;
        padding: 150px 0;
        position: relative;
        min-height: 500px;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
        padding: 60px;
        border-radius: 10px;
    }

    .hero-section h1 {
        font-size: 40px;
        font-weight: bold;
        animation: fadeInDown 1s ease-out;
        color: white;
    }

    .hero-section p {
        font-size: 18px;
        margin-top: 15px;
        animation: fadeInUp 1s ease-out;
        color: white;
    }

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translateY(-30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-section {
        padding: 80px 0;
        background: linear-gradient(to bottom, #ffffff 0%, #eaf0f6 100%);
    }

    .service-box {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease-in-out;
        height: 100%;
    }

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .service-box i {
        font-size: 40px;
        color: #000000;
        margin-bottom: 15px;
        animation: pop 1s ease-in-out infinite alternate;
    }

    @keyframes pop {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.1);
        }
    }

    .section-heading {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 60px;
        color: #333;
    }

    /*Below is header.blade.php CSS*/
    .error {
        color: red;
        margin-top: 5px;
    }

    .course-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        /* text-align: center; */
        flex: 1 1 calc(33.333% - 40px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .course-card .course-img img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .steps-section {
        background-color: #f9f9f9;
        padding: 50px 0;
    }

    .step-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background-color: #000000;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        line-height: 50px;
        border-radius: 50%;
        margin: 0 auto 15px;
    }
    .step-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #000000;
    }

    .step-desc {
        font-size: 14px;
        color: #555;
    }

    .navbar .dropdown-menu {
        background-color: #f9f9f9; /* Light background for better contrast */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
        max-height: 300px; /* Set the maximum height for the dropdown */
        overflow-y: auto; /* Enable vertical scrolling */
        padding: 10px; /* Add padding for better spacing */
        transition: all 0.3s ease; /* Smooth transition for dropdown appearance */
    }

    .navbar .dropdown-item {
        color: #333; /* Text color */
        padding: 12px 20px; /* Add padding for better spacing */
        font-size: 16px; /* Slightly larger font size */
        border-radius: 5px; /* Rounded corners for items */
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    }

    .navbar .dropdown-item:hover {
        background-color:rgb(244, 83, 109) ; /* Highlight color on hover */
        color: #fff; /* White text on hover */
    }

    .navbar .dropdown-menu::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }

    .navbar .dropdown-menu::-webkit-scrollbar-thumb {
        background-color: rgb(244, 83, 109) ; /* Scrollbar thumb color */
        border-radius: 4px; /* Rounded scrollbar thumb */
    }
    @media (max-width: 768px) {
        .navbar .dropdown-menu {
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .navbar .dropdown-menu .dropdown-item {
            font-size: 16px;
            padding: 12px 20px;
        }
    }

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

    .social-media-bar .social-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .social-media-bar .social-icon.instagram {
        background-color: #E4405F; /* Instagram color */
    }

    .social-media-bar .social-icon.whatsapp {
        background-color: #25D366; /* WhatsApp color */
    }

    .social-media-bar .social-icon.youtube {
        background-color: #FF0000; /* YouTube color */
    }

    .social-media-bar .social-icon.facebook {
        background-color: #3b5998; /* Facebook color */
    }

    .social-media-bar .social-icon.contact {
        background-color: #007bff; /* Contact Us color */
    }

    .social-media-bar .social-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .social-icon.call {
        background-color: black;
        color: white; /* Optional: make the icon visible */
    }

    .tooltip {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
        animation: fadeIn 0.3s forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* .social-icons.hidden {
        display: none;
    } */

    .social-icons{
    display:flex;
    flex-direction:column;
    gap:10px;
    max-height:500px;
    overflow:hidden;
    transition:all 0.3s ease;
}

.social-icons.hidden{
    max-height:0;
    opacity:0;
    pointer-events:none;
}
    .social-media-bar .toggle-button {
        background-color: #ff510e;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .social-media-bar .toggle-button:hover {
        transform: scale(1.1);
    }

    /* .social-media-bar.collapsed .toggle-button i {
        transform: rotate(180deg);
    } */


    /* Custom List Style */
    .list-style-check {
        list-style: none;
        padding-left: 0;
    }

    .list-style-check li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .list-style-check li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #28a745; /* Green checkmark */
        font-weight: bold;
    }

    /* Section Headings */
    .title-sub {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }

    /* Button Styling */
    .btn-primary {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-primary:hover {
        background-color: #0056b3;
        color: #fff;
    }

    .btn-secondary {
        background-color: #6c757d;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-secondary:hover {
        background-color: #5a6268;
        color: #fff;
    }

    /* Custom List Style */
    .list-style-check {
        list-style: none;
        padding-left: 0;
    }

    .list-style-check li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .list-style-check li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #28a745; /* Green checkmark */
        font-weight: bold;
    }

    /* Section Headings */
    .title-sub {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }

    /* Button Styling */
    .btn-primary {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-primary:hover {
        background-color: #0056b3;
        color: #fff;
    }

    .btn-secondary {
        background-color: #6c757d;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-secondary:hover {
        background-color: #5a6268;
        color: #fff;
    }

    .card {
        border: none;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .card img {
        max-height: 80px;
        margin-bottom: 15px;
    }

    .list-style-check {
        list-style: none;
        padding-left: 0;
    }

    .list-style-check li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .list-style-check li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #28a745; /* Green checkmark */
        font-weight: bold;
    }

    .join-community-section {
        background-color: #f9f9f9;
        border-radius: 10px;
    }

    .card {
        border: none;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .card img {
        max-height: 80px;
        margin-bottom: 15px;
    }

    .btn-primary {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-primary:hover {
        background-color: #0056b3;
        color: #fff;
    }

    .btn-secondary {
        background-color: #6c757d;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-secondary:hover {
        background-color: #5a6268;
        color: #fff;
    }

/*  Legal Css  */
  .flex-item {
        max-width: 250px;
        padding: 15px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .flex-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .flex-item h5 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .flex-item p {
        font-size: 14px;
        color: #555;
    }

    .d-flex {
        gap: 20px;
    }

    #scrollUpBtn, #scrollDownBtn {
        margin-right: 53px;
        position: fixed;
        right: 20px;
        z-index: 9999;
        border: none;
        outline: none;
        background-color: #007bff;
        color: white;
        cursor: pointer;
        padding: 9px 15px;
        border-radius: 50%;
        font-size: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        transition: background-color 0.3s;
    }

    #scrollUpBtn {
        bottom: 70px;
    }

    #scrollDownBtn {
        bottom: 20px;
    }

    #scrollUpBtn:hover, #scrollDownBtn:hover {
        background-color: #0056b3;
    }

    .dropdown-menu-scrollable {
        max-height: 300px;        /* Kitni height tak dikhe */
        overflow-y: auto;         /* Y-axis (vertical) scroll enable */
    }

   /* Optional: scroll ke liye thoda styling */
   .dropdown-menu-scrollable::-webkit-scrollbar {
     width: 6px;
   }

   .dropdown-menu-scrollable::-webkit-scrollbar-thumb {
     background-color: #000000;
     border-radius: 3px;
   }