* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hind Siliguri", sans-serif;
}

body {
    font-family: "Hind Siliguri", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================
        Common Tags 
========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    text-align: justify;
}

img {
    height: auto;
    max-width: 100%;
}

input[type="text"], input[type="search"], input[type="email"] {
    font-family: "Hind Siliguri", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 3px solid #FFE400;
    border-radius: 7px;
    font-size: 20px;
    padding: 9px 15px;
}

button {
    border: 3px solid #FFE400;
    background: #FFE400;
    border-radius: 7px;
    cursor: pointer;
    padding: 10px 14px;
}

button:hover {
    background: #fff;
}

/* .row {
    display: flex;
} */


/* =========================================
        Common Classes 
========================================= */
.full-width {
    width: 100%;
}
.title {
    background: url('images/title-bg-orange.png') repeat-x left 5px;
    background-size: 35px;
    margin: 15px 0;
}
.title span {
    background: #fff;
    padding-right: 17px;
}
.image-special {
    border: 3px solid #FFE400;
    border-radius: 7px;
    padding: 15px;
}

/* =========================================
        Site Design
========================================= */
#header {
    padding: 20px 0;
}

#logo-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    width: 150px;
}

#logo-title {
    padding-left: 15px;
    text-align: center;
}

#logo-title h3 {
    margin-bottom: 0;
} 

#search-box {
    display: flex;
    gap: 10px;
}

small {
    font-size: 14px;
}

#menu-container {
    /* background-color: #fccd05; */
    background-color: #FFE400;
}

#menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

#menu li {
    padding: 20px;
}

#menu a {
    color: #000;
    text-decoration: none;
}

#page-title {
    background: #000;
    text-align: center;
    color: #FFE400;
    margin-top: -16px;
    margin-bottom: 30px;
    padding: 70px 0;
}

#main {
    
    /* background: url('images/bg-3.jpg');
    background-position: top left;
    background-repeat: repeat;
    background-size: 50px; */
}

#main .container {
    padding: 20px 0;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-nav button {
    color: #000 !important;
    /* border: 3px solid #000 !important; */
    border-radius: 50%;
    background-color: #FFE400 !important;
    font-size: 30px !important;
    position: absolute;
    height: 50px;
    width: 50px;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.sidebar-widget {
    border: 3px solid #FFE400;
    border-radius: 7px;
    margin-bottom: 20px;
}

.widget-title {
    background: #FFE400;
    padding: 10px 20px;
}
.widget-body {
    padding: 20px;
}

#footer {}

#footer-top {
    background-color: #FFE400;
    
    /* background: url('images/bg-1.jpg');
    background-position: top left;
    background-repeat: repeat;
    background-size: 550px; */

    font-size: 16px;
    padding: 40px 0 20px;
}

#footer-top .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-top-part {
    flex: 1 1 calc(25% - 22.5px); /* 15px gap creates 3 gaps in a row, so 3 * 15px = 45px; 45/4 = 11.25px */
    /* background-color: #fff; */
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    /* text-align: center; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */

}

.footer-top-part a {
    color: #000;
    text-decoration: none;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 992px) {
    .footer-top-part {
        flex: 1 1 calc(50% - 7.5px); /* 2 in a row */
    }
}

@media (max-width: 576px) {
    .footer-top-part {
        flex: 1 1 100%; /* stack vertically */
    }
}

#footer-top h4 {
    border-bottom: 2px solid #000;
    margin-bottom: 15px;
}

.footer-top-part ul {
    list-style: none;
}

.footer-top-part ul > li {
    border-bottom: 1px solid #000;
    padding: 10px 0;
}

.footer-top-part ul > li:last-child {
    border-bottom: 0 none;
}

#footer-contact ul {
    list-style: none;
}

#footer-contact ul > li {
    border-bottom: 0 none;
}

#footer-bottom {
    background-color: #000;
    color: #fff;    
    padding: 20px 0;
}

#footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

#footer-bottom a {
    color:#FFE400;
    font-size: 30px;
    text-decoration: none;
} 