  @font-face {
    font-family: 'CustomFont';
    src: url( '/static/users/fonts/Cinzel-VariableFont_wght.ttf') format('truetype');

}

    @font-face {
    font-family: 'h1Font';
    src: url( '/static/users/fonts/Bentham-Regular.ttf') format('truetype');
}
        :root {
            --primary-color: #10141b;
            --secondary-color: white;
            --hover-color:rgb(72, 216, 235);
            --background-color: #f3f3f3;
            --button-color: #c7e8ffe0;
        }

        body {
            margin: 0;
            font-family: 'h1Font', serif;
            box-sizing: border-box;
            scroll-behavior: smooth;
            background-color: var(--background-color);
            -ms-user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            overflow-x: hidden;
        }
        p{
            font-family: 'h1Font',serif;
            font-weight: 100;
        }
        h1{
            font-weight: 500;
        }

        .top {
            display: flex;
            flex-direction: row;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 1%;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        button:focus {
        outline: 2px dashed rgb(72, 151, 235);
        outline-offset: 4px;
        }

        header, footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            align-content: center;
            
        }
        header {
            font-size: 100%;
        }
        footer{
            font-size: 14px;
            text-align: center;
            padding: 10px 0;
            padding-top: 2.5%;
        }
        .total {
            font-size: 16px;
            text-align: center;
            padding: 10px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px;
            
        }

        .our-services{
        background:var(--primary-color);
            padding: 20px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: left;
            margin: 1%; 
        
        }
        .our-services p{
            margin-top: 2.5%;
        }

        .our-services h3{
            margin: 1%;
        }

       .contact-us{
        background:var(--primary-color);
            padding: 20px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: right;
            margin: 1%; 
        
        }

        .logo img {
            width: 80px;
            height: 80px;
            
        }
        .menu {
            display: flex;
            flex-wrap: nowrap;
            gap: 5px;
            justify-content: flex-end;
            width: 100%;
        }
        .reg{
            width: 25%;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            padding: 8px; /* Reduced padding for smaller buttons */
            font-size: 14px;
            cursor: pointer;
            border-radius: 6px;
            text-align: center;
            transition: background-color 0.3s, color 0.3s, transform 0.3s ease-in-out;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .expandable-container {
            position: relative;
            flex: 0 0 150px; /* Fixed width for narrower buttons */
            transition: transform 0.3s;
        }

        .expandable {
            width: 100%;
            background-color: var(--button-color);
            color: var(--primary-color);
            border: none;
            padding: 8px; /* Reduced padding for smaller buttons */
            font-size: 15px;
            cursor: pointer;
            border-radius: 6px;
            text-align: center;
            transition: background-color 0.3s, color 0.3s, transform 0.3s ease-in-out;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: 'CustomFont',serif;
        }

        .expandable:hover {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            transform: scale(1.03);
        }

        /* Hidden dropdown options */
        .options {
            display: none;
            position: absolute;
            background-color: var(--background-color);
            width: 100%;
            padding: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            z-index: 1;
        }

        .expandable-container:hover .options {
            display: block;
            animation: fadeIn 0.3s ease-in-out;
        }

        .options button {
            background-color: var(--secondary-color);
            border: none;
            padding: 8px;
            text-align: left;
            font-size: 12px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
            border-radius: 4px;
        }

        .options button:hover {
            background-color: var(--hover-color);
        }

        .foot-p{
            margin: 2%;
            text-align: justify;
            color: white;
            letter-spacing: 1px;
            filter: blur(0);
            font-size: 1em;

        }
        /* Responsive design */
        @media (max-width: 768px) {
            .top {
                flex-direction: column;
                text-align: center;
            }

            .menu {
                flex-wrap: wrap;
                justify-content: center;
            }

            .expandable-container {
                flex: 1 1 calc(50% - 5px);
            }

            .logo img {
                width: 60px;
                height: 60px;
            }

            .blog-item {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .expandable-container {
                flex: 1 1 calc(50% - 5px);
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }