* { margin: 0; padding: 0; box-sizing: border-box; }
.bg-lgray{
    background: #f9f9f9;
}
a{
    color:#212529;
    text-decoration: none;
}
body { 
    font-size:18px;
    color:#212529;
    line-height: 1.5;
    /* font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 768px) {
	body{
		font-size:16px;
	}
}
@media only screen and (max-width: 414px) {}
@media only screen and (max-width: 375px) {}
@media only screen and (max-width: 320px) {}

.header {
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.navigation-width {
    max-width: 1200px;
    margin: auto;
}

.uploaded-logo img {
    width: 100%;
    height: 45px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

.nav-items {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    display: block;
    padding: 25px 15px;
    margin: 0 5px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    position: relative; /* For positioning ::after */
    padding-right: 30px; /* Space for arrow */
}

/* DROPDOWN ARROW - DESKTOP */
.nav-items li.menu-item-has-children > a::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 10px;
    color: #000;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.nav-items li.menu-item-has-children.show > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* SUBMENU */
.sub-menu {
    display: none;
    position: absolute;
    top: 75%;
    left: 0;
    z-index: 999;
    padding: 10px;
    background-color: #e9e9e9;
    /* box-shadow: 5px 5px 5px #ababab; */
    width: fit-content;
    list-style: none;
}

.nav-items li.show > .sub-menu {
    display: block;
}

.sub-menu li a {
    padding: 10px;
    display: block;
}

.nav-items .sub-menu li a {
    padding: 15px 40px 15px 20px; 
}

.nav-items .sub-menu li:not(:last-child) {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background: #000;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        flex-direction: column;
    }

    nav.open {
        max-height: 80vh;
        width: 100%;
        overflow-y: auto;
    }

    .nav-items {
        flex-direction: column;
        width: 100%;
        gap: unset;
    }

    .nav-items li:not(:last-child){
        border-bottom: 1px solid #e0e0e0;
    }


    /* DROPDOWN ARROW - MOBILE */
    .nav-items li.menu-item-has-children > a::after {
        content: "›";
        right: 15px;
        font-size: 14px;
        transform: translateY(-50%) rotate(90deg);
    }

    .nav-items li.menu-item-has-children.show > a::after {
        transform: translateY(-50%) rotate(270deg); 
    }

    .sub-menu {
        position: relative;
        box-shadow: none;
        padding: 0;
        border: none;
        width: 100%;
    }

    .nav-items .sub-menu li {
        margin-left: 15px;
        padding: 10px 0;
    }
}


@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}


/* Default Style */

.div-section{
    padding: 50px 0px 50px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.posts .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
}

.col-xl {
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 576px) {
  .col-xl {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-xl {
    width: 50%; 
  }
}
@media (min-width: 992px) {
  .col-xl {
    width: 33.3333%; 
  }
}
@media (min-width: 1200px) {
  .col-xl {
    width: 25%;
  }
}

/* End Default Style */

/* Single Posts */
.single-post p{
    margin-bottom:15px;
}

.entry-content p{
    margin-bottom:15px;
}

.single-post h1{
    font-size:28px;
    font-weight: 600;
    color: #044464; 
	line-height: 1.2em;
	margin-bottom:5px;
}

.single-post h2:not(.sub-title){
    color: #044464;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.single-post h3:not(.title-rank, .post-title){
    margin-top: 35px;
	line-height: 1.4em;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #044464;
}

.single-post h3:not(.title-rank, .post-title):before{
    content: "";
    width: 0;
    height: 1.6rem;
    padding-right: .75rem;
    border-left: 5px solid #044464;
}

.single-post h4 {
    color: #044464;
    font-weight: 600;
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
	line-height: 1.4em;
}

.single-post .single-content ol {
    padding-left: 40px;
}

.single-post .single-content ul{
    margin-top:10px;
    margin-bottom:10px;
    line-height: 1.4;
    padding-left:40px;
}


@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 768px) {
	.single-post h1{
		font-size:24px;   
	}
	.single-post h2:not(.sub-title){
		font-size:22px;   
	}
	.single-post h3:not(.title-rank, .post-title){
		font-size:20px;   
	}
	.single-post h4{
		font-size:18px;   
	}
	.single-post .single-content ol {
		padding-left: 20px;
	}
	.single-post .single-content ul{
		padding-left:20px;
	}
}
@media only screen and (max-width: 414px) {}
@media only screen and (max-width: 375px) {}
@media only screen and (max-width: 320px) {}


/* Single Posts End */


/* Single Page Start */

.single-page p{
    margin-bottom:15px;
}

.single-page h1 {
    font-size: 26px;
    font-weight: 600;
    color: #044464;
}

.single-page h2 {
    color: #044464;
    font-weight: 600;
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.single-page h3:not(.title-rank) {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #044464;
}

.single-page h3:not(.title-rank)::before {
    content: "";
    width: 0;
    height: 1.6rem;
    padding-right: .75rem;
    border-left: 5px solid #044464;
}


.single-page .page-content ul{
    margin-top:0px;
    margin-bottom:15px;
    line-height: 1.5;
    padding-left:40px;
}












/* Breadcrumb */


.single-breadcrumb {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.breadcrumbs {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0px !important;
}

.single-breadcrumb::-webkit-scrollbar {
  display: none; /* Optional: hides scrollbar for cleaner look */
}




.breadcrumb-section {
    padding: 0 0 10px;
}



#breadcrumbs span {
    margin: 0 4px;
}

.single-breadcrumb {
    padding: 10px 0px 0px;
}

.container.custom-breadcrumb #breadcrumbs {
    margin-bottom:0px;
    margin-top:10px;
}


.pagination {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
    font-size: 11px;
    line-height: 13px;
    justify-content: center
}

.pagination a, .pagination span {
    display: inline-block;
    margin: 2px 5px 2px 0;
    padding: 7px 12px 8px;
    text-decoration: none;
    width: auto;
    background: #fff;
    border: 1px solid #ccc
}

.pagination a:hover {
    color: #fff;
    background: #044464
}

.pagination .current {
    padding: 7px 12px 8px;
    background: #044464;
    color: #fff
}



/* Display Inline */

.desktop-break {
    display: none;
}

@media (min-width: 768px) {
    .desktop-break {
        display: inline;
    }
}

/* Display Inline End */

/* Footer Widgets */
#wrapper-footer-full {
    padding: 10px 0; /* Desktop padding */
}

.wrapper .footer-widget .menu {
    list-style: none;
    display: flex;
    font-size: 16px;
    gap: 35px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.wrapper .footer-widget .menu li {
    padding: 0; /* remove padding from li */
}

.wrapper .footer-widget .menu li a {
    display: block;      /* make the link fill li */
    padding: 5px 0;      /* apply padding to the clickable area */
    text-decoration: none; /* optional: remove underline */
}

/* Tablet & Mobile */
@media only screen and (max-width: 768px) {
    #wrapper-footer-full {
        padding: 10px 0; 
    }
    .wrapper .footer-widget .menu {
        display: block;
        text-align: center;
    }
    #footer-full-content .menu li a {
        padding: 12px 0;  /* larger clickable area */
    }
    #footer-full-content .menu li:not(:last-child) {
        border-bottom: 1px solid #e0e0e0;
    }
}

/* Small mobile screens */
@media only screen and (max-width: 414px) {
    #wrapper-footer-full {
        padding: 10px 0;
    }
    #footer-full-content .menu li a {
        padding: 10px 0; 
    }
}



/* Footer Copyright */
.site-footer {
    background: #000;
    color: #fff;
    padding: 20px 0px 20px;
}
.site-footer .footer-copyright{
	margin-bottom:0px;
}
.footer-copyright {
    text-align: center;
}





/* Category */

.flex-count {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top:15px;
}

.category-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: background 0.3s;
  background-color: #fff;
  height: 100%;
}

.category-row:hover {
  background-color: #f9f9f9;
}

.category-link {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.category-image-group {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.category-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.category-text-group {
  flex: 1;
}

.category-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  color: #222;
}

.category-sub {
  font-size: 0.875rem;
  color: #595959;
  line-height: 1.4;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .flex-count {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .flex-count {
    grid-template-columns: 1fr;
  }

  .category-img {
    width: 24px;
    height: 24px;
  }

  .category-image-group {
    margin-right: 12px;
  }
}


/* Table Section */

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom:20px;
}

thead {
  background-color: #f5f7fa;
}

thead th {
  text-align: left;
  padding: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

tbody tr {
  transition: background-color 0.2s ease-in-out;
}

tbody tr:hover {
  background-color: #f0f4f8;
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  color: #555;
}

tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


/* Search Box */
/* Style the search form container */
#searchform {
  max-width: 500px;
  margin: 20px auto;
}

/* Override Bootstrap input-group styling */
#searchform .input-group {
  display: flex;
  flex-wrap: nowrap;
  border: 2px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #fff;
}

#searchform .input-group:hover {
  border-color: #0073aa;
  box-shadow: 0 4px 12px rgba(0, 115, 170, 0.2);
}

/* Style the input field */
#searchform .form-control {
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 0;
  box-shadow: none;
  flex: 1;
}

/* Style the submit button */
#searchform .btn {
  padding: 12px 20px;
  background-color: #044464;
  border: none;
  border-left: 1px solid #ccc;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#searchform .btn:hover {
  background-color: #005d8f;
}

/* Responsive Design */
@media (max-width: 600px) {
  #searchform .input-group {
    flex-direction: column;
    border-radius: 12px;
  }

  #searchform .form-control,
  #searchform .btn {
    width: 100%;
    border-radius: 0;
  }

  #searchform .btn {
    border-left: none;
    border-top: 1px solid #ccc;
    border-radius: 0 0 12px 12px;
  }
}


