﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }
   .navTitle1{
      display: block !important;
  }
  .navTitle2{
      display: none  !important;
  }
@media screen and (max-width: 706px) {
    .navTitle1 {
        display: none  !important;
    }

    .navTitle2 {
        display: block  !important;
    }
}
        .left-content, .left-column {
    flex: 1;
    position: relative;
}

.right-content, .right-column {
    width: 30% !important;
    position: -webkit-sticky;
    position: sticky;
    top: 122px;
    height: fit-content;
    border-left: 1px solid #ddd;
}

  .pkp_structure_content {
      display: flex;
      align-items: flex-start;
      padding-top: 148px !important;
  }
  #pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
  .view_more {
    font-size: .93rem;
    font-weight: 700;
    line-height: 2.143rem;
    color: #3E2723;
    text-decoration: none;
    margin-bottom: 1.43rem;
    margin-right: 17px;
}
  #pagination span {
    font-weight: bold;
}
  .pkp_structure_main:before, .pkp_structure_main:after {
          width: 0px !important;
      }

  .cover {
    width: unset;
    float: none !important;
    height: 100%;
}

  .obj_article_summary {
    display: flex;
    gap: 0px;
    flex-direction: row;
}
  
  .coverImg {
    width: 166px;
    height: 167px;
        position: relative;
}

  .coverImg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px;
}
  
.coverImg span {
    position: absolute;
    bottom: 18px;
    left: 43px;
    color: white;
    font-size: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.obj_article_summary:before, .obj_article_summary:after {
    content: none !important;
}

@media (max-width: 992px){
    .obj_article_summary {
    gap: 48px;
}
}
@media (max-width: 767px) {
    .coverImg {
                width: 290px;
        height: 50%;
    }
      .obj_article_summary {
    gap: 0px;
    flex-direction: column;
}

            .obj_article_summary h4{
    margin: 0 !important;
}
        .coverImg span {
            bottom: 19px;
            left: 78px;
            font-size: 100%;
        }

    .right-column {
    display: none !important;
}
}
  .wrapper {
    background: #5D3A1A; /* Professional Brown - Nav Background */
    z-index: 999;
    position: fixed;
    width: 100%;
    box-shadow: 2px 2px 5px #b6b6b6, -2px -2px 2px #ffffff;
  }
  .wrapper nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: auto;
    align-items: center;
    justify-content: space-between;
  }
  nav .nav-content {
    display: flex;
    flex-wrap:wrap;
    /* align-items: center; */
    /* justify-content: space-between; */
    width: 100%;
  }
  nav .nav-content .links {
    margin-left: 5px;
    display: flex;
    gap: 10px;
  }
  .nav-content .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 91%;
      line-height: 1.2;
  }
  .nav-content .logo img {
    width: 80px;
  }
  .nav-content .logo .delsu {
    width: 69px;
  }
  .nav-content .logo a {
    color: #F5E6D3; /* Light cream for contrast against brown */
    font-size: 30px;
    font-weight: 600;
  }
  .nav-content .links li {
    list-style: none;
    line-height: 60px;
  }
  
  .nav-content .links li a,
  .nav-content .links li label {
    color: #F0E2D0; /* Warm light beige for navigation text */
    font-size: 14px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    /* margin: 0 5px; */
  }
  .nav-content .links li label {
    display: none;
  }
  
  .nav-content .links li i {
    transition: transform 0.3s ease-in-out;
  }
  .nav-content .links li a:hover,
  .nav-content .links li label:hover {
    background: #8B5E3C; /* Lighter brown/gold on hover */
    color: #fff;
  }
  
  .nav-content .links li a:hover i,
  .nav-content .links li label:hover i{
    transform: rotate(180deg)
  }
  .wrapper .search-icon,
  .wrapper .menu-icon {
    color: #F0E2D0; /* Light beige for icons */
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
  
  }
  
  .wrapper .search-icon {
    position: fixed;
      top: 3px;
      right: 15px;
      transition: all 0.3s ease-in-out
  }
  .wrapper .menu-icon {
    display: none;
  }
  .wrapper #show-search:checked ~ .search-icon i::before {
    content: "\f00d";
  }
  
  .wrapper #show-search:checked ~ .search-icon {
      top: 23px;
  }
  
  .wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .wrapper #show-search:checked ~ .search-box {
    opacity: 1;
    pointer-events: auto;
  }
  
  
  .search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #3E2723; /* Dark brown text in search input */
    background: #FFF8F0; /* Warm off-white background */
    padding: 0 100px 0 15px;
  }
  .search-box input::placeholder {
    color: #8B6B4A;
  }
  .search-box .go-icon {
    position: absolute;
    display: flex;
    right: 10px;
    top: 50%;
    align-items: center;
    transform: translateY(-50%);
    line-height: 60px;
    width: 51px;
    height: 50px;
    justify-content: center;
    border: none;
    outline: none;
    color: #5D3A1A;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    background: #C9A03D; /* Gold accent for search button */
  }
  .wrapper input[type="checkbox"] {
    display: none;
  }
  
  /* Dropdown Menu code start */
  .nav-content .links ul {
    position: absolute;
    background: #6B442A; /* Rich chestnut brown for dropdown */
    top: 145px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    color: #fff;
  }
  .nav-content .links li:hover > ul {
    top: 119px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
  .nav-content .links ul li a {
    color: #F5EDE4; /* Light cream for dropdown text */
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
  }
  .nav-content .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
  }
  .nav-content .links ul li {
    position: relative;
  }
  .nav-content .links ul li:hover ul {
    top: 0;
  }
  
  /* Responsive code start */
  @media screen and (max-width: 1250px) {
    .wrapper nav {
      max-width: 100%;
      padding: 0 20px;
    }
    nav .nav-content .links {
    }
    .nav-content .links li a {
      color: #F0E2D0;
      padding: 8px 13px;
      font-size: 14px;
    }
    .wrapper .search-box {
      max-width: calc(100% - 100px);
    }
    .wrapper .search-box input {
      padding: 0 100px 0 15px;
    }
  }
  
  @media screen and (max-width: 1080px) {
      .pkp_structure_content {
      padding-top: 97px !important;
  }
  
    .wrapper .menu-icon {
      display: block;
    }
    .nav-content .logo a {
      font-size: 25px;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before {
      content: "\f00d";
    }
    .wrapper #show-search:checked ~ .search-icon {
      top: 1px;
  }
    nav .nav-content .links {
      display: block;
      position: fixed;
      background: #4A2C1A; /* Deep dark brown for mobile menu */
      height: 100%;
      width: 100%;
      top: 70px;
      left: -100%;
      margin-left: 0;
      max-width: 350px;
      overflow-y: auto;
      padding-bottom: 100px;
      transition: all 0.3s ease;
    }
    nav #show-menu:checked ~ .nav-content .links {
      left: 0%;
    }
    .nav-content .links li {
      margin: 15px 20px;
    }
    .nav-content .links li a,
    .nav-content .links li label {
      line-height: 20px;
      font-size: 17px;
      display: block;
      padding: 8px 18px;
      cursor: pointer;
      color: #F5EDE4;
    }
    .nav-content .links li a.desktop-link {
      display: none;
    }
  
    /* dropdown responsive code start */
    .nav-content .links ul,
    .nav-content .links ul ul {
      position: static;
      opacity: 1;
      visibility: visible;
      background: #8B5E3C; /* Medium brown for mobile dropdowns */
      display: none;
      overflow: hidden;
    }
    .nav-content .links #show-features:checked ~ ul,
    .nav-content .links #show-services:checked ~ ul,
    .nav-content .links #show-items:checked ~ ul {
      max-height: 100vh;
    }
    .nav-content .links ul li {
      margin: 7px 20px;
    }
    .nav-content .links ul li a {
      font-size: 17px;
      line-height: 30px;
      border-radius: 5px !important;
    }
  }
 
  @media screen and (max-width: 400px) {
    .wrapper nav {
      padding: 0 10px;
    }
    .nav-content .logo img {
      width: 25px;
    }
    .nav-content .logo a {
      font-size: 23px;
    }
    .wrapper .search-box {
      max-width: calc(100% - 70px);
    }
    .wrapper .search-box .go-icon {
      width: 30px;
      right: 0;
    }
    .wrapper .search-box input {
      padding-right: 30px;
    }
  }

#loadingScreen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logoLoading img {
    width: 150px; /* Adjust size as needed */
    animation: fadeInOut 2s infinite;
}

/* Fade in and out animation for the logo */
@keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* ============================================ */
/* FOOTER - UPDATED TO PROFESSIONAL BROWN */
/* ============================================ */

.footer {
    top: 50%;
    left: 50%;
    width: 100%;
    background: #3D2B1F; /* Professional warm dark brown for footer background */
}
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}
.footer-row .footer-col h4 {
  color: #D4A373; /* Warm golden-brown for section headings */
  font-size: 1.2rem;
  font-weight: 400;
}
.footer-col .links {
  margin-top: 20px;
}
.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}
.footer-col .links li a {
  text-decoration: none;
  color: #E2D4C8; /* Soft cream-beige for footer links */
}
.footer-col .links li a:hover {
  color: #D4A373; /* Gold on hover */
}
.footer-col p {
  margin: 20px 0;
  color: #D1C7BC;
  max-width: 300px;
}
.footer-col form {
  display: flex;
  gap: 5px;
}
.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 248, 240, 0.1);
  width: 100%;
  outline: none;
  border: 1px solid #C9A03D; /* Gold border to match theme */
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}
.footer-col input::placeholder {
  color: #BFAF9F;
}
 .footer-col form button {
  background: #C9A03D; /* Gold button */
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  color: #3D2B1F; /* Dark brown text on button */
}
.footer-col form button:hover {
  background: #D4A373;
  color: #2E1F1A;
}
.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}
.footer-col .icons i {
  color: #D1C7BC;
}
.footer-col .icons i:hover  {
  color: #D4A373; /* Gold on hover */
}
@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }
  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }
  .footer-col form {
    display: block;
  }
  .footer-col form :where(input, button) {
    width: 100%;
  }
  .footer-col form button {
    margin: 10px 0 0 0;
  }
}