@import url('https://fonts.googleapis.com/css?family=Poppins');


body {
    font-size: 1.1rem;
    font-family: Poppins;
}

.lead {
    font-size: 1.2rem;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Inter";
    font-weight: bold;
}

h1 {font-size: 4rem !important;}
.btn {border-radius: 0;}
.is-container {padding:0;}
.homevideo {
    width: 100%;
    height: 500px;
}
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 2rem !important;
    }
}

.bg-primary {
    background: #000 !important;
}

.btn-dark {
    background: #A49CCD;
    border-color: #A49CCD;
}

.bg-dark {
    background: #A49CCD !important;
}

.position-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dropdown-menu {
    display: none;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu {
    min-width: 160px;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.btn-primary, .btn-dark {
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

/* Styles for btn-primary */
.btn-primary {
    background-color: #A49CCD; /* Initial background color */
    color: white; /* Text color */
}

.btn-primary:hover {
    background-color: #8c7b9f; /* Color on hover */
}

.btn-primary:active {
    background-color: #7b6d8e; /* Color when pressed */
}

.btn-dark:active {
    background-color: #1d2124; /* Color when pressed */
}



/* General styles for header elements */
.logo-img {
    height: 100px; /* Adjust as needed */
    width: auto;
}

.title-img {
    height: 80px; /* Adjust as needed */
    width: auto;
}

.contact-btn,
.menu-btn {
    font-size: 14px; /* Adjust as needed */
    padding: 8px 16px;
}

@media (max-width: 767.98px) {
    .logo-img {
        height: 60px; /* Smaller logo on mobile */
    }

    .title-img {
        height: 50px; /* Smaller title image on mobile */
        display: none;
    }

    .contact-btn,
    .menu-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

/*    .text-center {
        display: none;
    }  */
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .logo-img {
        height: 80px; /* Medium logo size for tablets */
    }

    .title-img {
        height: 60px; /* Medium title image size for tablets */
    }

    .contact-btn,
    .menu-btn {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* Ensure buttons stay the same size */
.btn {
    min-width: 100px; /* Ensure a minimum width for consistency */
    text-align: center; /* Center text inside the button */
}
