* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
.top_icon{
  width: 35px;
  height: 35px;
}
.fontStyle{
   font-family: "Cormorant", serif;
}

.sidebar_logo{
  width: 200px !important;
}
.footer_heading{
  background-color: #271568;
}


.site_name{

  color: #29166C;
     font-family: "Cormorant", serif;
}

.main{
   background: linear-gradient(360deg, #d6c881, #f8ffe7);
 
}
.main .col_logo {
  width: 85% !important;
}

.top_header h5,
.top_header small,.info {
  color: #29176C;
}

/* Article Button */
.article-btn {
  display: inline-block;
  padding: 8px 16px;
  min-width: 100px;
  height: 36px;
  line-height: 20px;
  border: 3px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
   background:linear-gradient(360deg, #d6c881, #b2be95);
  margin: 0 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-clip: padding-box, border-box;
}

.article-btn:hover {
  background: linear-gradient(360deg, #b2be95, #d6c881);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.3s ease, background 0.3s ease;
}


.navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #29176C, #586B2A);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle):focus::after {
  width: 100%;
}

.navbar-nav .nav-link.dropdown-toggle::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid  white;
}

.navbar-nav .nav-link.dropdown-toggle::before {
  display: none;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: #271568;
  border: none;
  border-radius: 0;
}

.dropdown-menu .dropdown-item {
  position: relative;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(41, 23, 108, 0.1);
}

.dropdown-menu .dropdown-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #29176C, #586B2A);
  transition: width 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover::after,
.dropdown-menu .dropdown-item:focus::after {
  width: 100%;
}

.article-btn.active {
  color: #29176C !important;
}

/* Social Icons */
.social-icons a {
  transition: transform 0.3s ease;
  color: #29176C;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #29176C, #586B2A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
    .footer {
      background: linear-gradient(to bottom, #f8f9e8, #d9c181);
      color: #000;
      padding: 40px 0 20px;
      font-size: 15px;
    }
    .footer h5 {
      font-weight: 700;
      color: #3d217b;
      margin-bottom: 20px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 8px;
    }
    .footer a {
      color: #3d217b;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer  {
      text-align: center;
      padding-top: 15px;
      margin-top: 30px;
      font-size: 14px;
      border-top: 1px solid #bfbfbf;
      background-color: #d3b76b;
    }
    .footer-logo {
      max-height: 70px;
    }

/* Footer Link */
.footer-link {
  position: relative;
  /* color: black; */
  color: #3d217b;
  padding: 4px 0;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-link:hover {
  background: #3d217b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #29176C, #586B2A);
  transition: width 0.3s ease-in-out;
}

.footer-link:hover::after {
  width: 100%;
}

/* Search Box */
.search-box {
  position: relative;
  width: 40px;
  height: 38px;
  transition: width 0.4s ease;
  overflow: hidden;
}

.search-box.active {
  width: 250px;
}
.search-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 38px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  background:transparent;
  color: #29176C;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
  font-size: inherit;
}

.search-box.active .search-input {
  width: 100%;
  padding: 0 45px 0 15px;
  opacity: 1;
}
.search-input::placeholder {
  color: rgba(41, 23, 108, 0.6);
}
.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border: none;
  background-color: transparent;
  color: #29176C;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.gradient-border {
  border: 3px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #29176C, #586B2A) border-box;
  background-clip: padding-box, border-box;
}