@font-face {
    font-family: 'Mycustomfont-bold';
    src: url('nfont/fonts/Nexa-Bold.ttf ') format('truetype');
}

@font-face {
    font-family: 'Mycustomfont-light';
    src: url('nfont/fonts/Nexa-Light.ttf ') format('truetype');
}

@font-face {
    font-family: 'Mycustomfont-regular';
    src: url('nfont/nfonts/Nexa-Regular.ttf ') format('truetype');
}

body {

    font-family: 'Mycustomfont-bold', sans-serif;
}

* {
    font-family: 'Mycustomfont-bold', sans-serif;

}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
strong {
    font-family: 'Mycustomfont-bold', sans-serif;

}





/* Add this CSS for the mega menu */
.main-menu .mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 500px;
    display: none;
    padding: 20px;
    background: #fff;
    border-top: 2px solid #1c1f26;
    z-index: 1000;
}



.main-menu .navigation>li.dropdown:hover .mega-menu {
    display: block;
}

.main-menu .navigation>li.nmobile {
    display: none;
}

@media only screen and (max-width:768px) {
    .main-menu .navigation>li.newmegamenu {
        display: none;
    }

    .main-menu .navigation>li.nmobile {
        display: block;
    }
}

.main-menu .mega-menu li {
    display: block;
    margin-bottom: 10px;
}

.main-menu .mega-menu li a {
    display: block;
    color: #858585;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.3s ease;
}

.main-menu .mega-menu li a:hover {
    color: var(--theme-color);
}


.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    left: 2px;
    background-color: #8f1214;
    /*#25d366*/
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    border: 2px solid #fff;
}

.float:hover {
    background-color: #25d366;
    color: #fff;
}

.float1 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    left: 2px;
    background-color: #8f1214;
    /*#25d366*/
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    border: 2px solid #fff;
}

.float1:hover {
    background-color: #25d366;
    color: #fff;
}

.my-float {
    margin-top: 16px;
}



/*--------sub menu---------*/
.dropdown>ul {
    display: none;
    position: absolute;
    background: #fff;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.dropdown:hover>ul {
    display: block;
    border-radius: 4px;
}

/* Style for nested dropdowns to display on the left */
.dropdown ul ul {
    right: 100%;
    top: 0;
    left: auto;
}

.dropdown a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.dropdown a:hover {
    background: #f0f0f0;
}

/* Positioning for the top-level menu items */
.dropdown {
    position: relative;
}

.header-upper .logo-column .logo-box .logo a img {
    width: 200px;
}

.sticky-header .logo img {
    width: 200px;
}

.mobile-menu .logo img {
    width: 150px;
}


.offersec {
    margin-top: 60px;
    margin-bottom: 60px;
}

.call-to-action-two:before {
    background: #8f1214;
}

.offersec li b {
    color: #8f1214;
}


img {
    width: 100%;
}

.call-to-action-two .row {
    padding: 20px;
}

.call-to-action-two .row .indet {
    margin-bottom: 20px;
}


.secone .col-1 {
    display: none;
}

@media only screen and (max-width:768px) {
    .secone .col-1 {
        display: block;
    }
}







/* Style for the container */
#description-container {
    position: relative;
    /* Makes the container relative for smooth transition */
    height: 300px;
    /* Fixed height */
    overflow: hidden;
    /* Hide content that overflows */
    transition: height 0.3s ease;
    /* Smooth transition for height change */
}

/* Style for the description text */
.description-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    /* Ensure no margin to prevent button overlap */
}

/* Style for the "Show More" button */
.btn-expand {
    display: block;
    /* Makes button a block-level element */
    margin-top: 10px;
    /* Space above the button */
    background-color: #f8f9f9;
    color: #000;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
}

.btn-expand:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Styles for the search container */
/* Styles for the search container */
.search-container {
    position: relative;
    display: inline-block;
}

/* Styles for the search input field */
#searchBox {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: -1;
    /* Initially hidden */
    opacity: 0;
    /* Initially invisible */
    transition: opacity 0.3s ease, z-index 0.3s ease;
}

/* Styles for the dropdown */
#searchResults {
    position: absolute;
    top: 40px;
    right: 0;
    width: auto;
    height: 300px;
    cursor: pointer;
    overflow: scroll;
    /* Enable scrolling without visible scrollbars */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    border: none;
    border-radius: 4px;
    z-index: -1;
    /* Initially hidden */
    opacity: 0;
    /* Initially invisible */
    transition: opacity 0.3s ease, z-index 0.3s ease;
    padding: 5px;
}

/* Hide scrollbars for WebKit browsers (Chrome, Safari, etc.) */
#searchResults::-webkit-scrollbar {
    display: none;
}

/* Styles for the search icon */
.search-icon {
    font-size: 24px;
    cursor: pointer;
}

/* Styles for the close button */
.close-button {
    position: absolute;
    top: 8px;
    right: -30px;
    font-size: 16px;
    cursor: pointer;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 20px;
    display: none;
    /* Hidden initially */
}

/* Show search input, dropdown, and close button when active */
.search-container.active #searchBox,
.search-container.active #searchResults {
    z-index: 10;
    opacity: 1;
}

.search-container.active .close-button {
    display: block;
}


/*msearch-----------------*/

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;

}

.dropdown-content a {
    color: black;
    padding: 2px 6px;
    text-decoration: none;
    display: block;
    word-wrap: break-word;
    /* Ensures the content wraps if it's too long */
    overflow-wrap: break-word;
    /* Same as word-wrap, but newer name */
    white-space: normal;
    /* Ensures normal white-space behavior (no nowrap) */
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.search-box {
    width: 300px;
    padding: 3px;
    border: 1px solid #ccc;
    margin-right: 10px;
    border-radius: 10px;
}


/* Social Icon Styles - Fix for Font Awesome icons */
.social-icon-one {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    align-items: center;
}

.social-icon-one li {
    margin: 0;
    padding: 0;
}

.social-icon-one li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-one li a:hover {
    background: #fff;
    color: #8f1214 !important;
    transform: scale(1.1);
}

.social-icon-one li a i,
.social-icon-one li a span {
    line-height: 1;
    display: inline-block;
    font-style: normal;
}

/* Ensure Font Awesome loads properly */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}