body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
}
/* HEADER MAIN */
.custom-header {
    width: 100%;
    display: flex; 
    justify-content: center;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 5000;
    background: transparent;
    transition: all .35s ease;
}
.custom-header.sticky {
    padding: 10px 0;
}
.custom-header.sticky .header-inner {
    border: none;
    border-radius: 40px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.10);
    padding: 10px 25px;
}
/* MENU COLOR CHANGE ON SCROLL */
.custom-header.sticky .menu-left a,
.custom-header.sticky .menu-right a {
    color: #444 !important;
}

/* ACTIVE UNDERLINE */
.custom-header.sticky .menu-left a.active,
.custom-header.sticky .menu-right a.active {
    position: relative;
}

.custom-header.sticky .menu-right a.active::after,
.custom-header.sticky .menu-left a.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 18px;
    height: 3px;
    border-radius: 3px;
}

.header-inner {
    width: 70%;
    border: 3px solid #FCC71B;
    border-radius: 18px;
    padding: 12px 25px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .35s ease;
}

/* MENUS */
.menu-left, .menu-right {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
}

.menu-left a, .menu-right a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.header-logo img {
    height: 60px;
}

/* 360 BUTTON */
.rotation-btn {
    background: #FCC71B;
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 600;
}
.rotation-btn:hover {
    background: #0054a3;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
}
/* DESKTOP DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    width: 160px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f2f2f2;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
}

.drop-btn i {
    font-size: 12px;
    margin-left: 4px;
}
/* ----------------- MOBILE SIDEBAR ----------------- */
.mobile-sidebar {
    width: 260px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: -260px;
    transition: .3s;
    z-index: 6000;
    padding: 20px;
    box-shadow: 4px 0 25px rgba(0,0,0,0.15);
}
.mobile-sidebar.active {
    left: 0;
}
.sidebar-close-btn {
    font-size: 26px;
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}
.mobile-sidebar ul li {
    margin-bottom: 18px;
}
.mobile-sidebar ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* OVERLAY */
.sidebar-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 5500;
}
.sidebar-overlay.active {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .menu-left, .menu-right {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block;
    }
    .header-logo img {
        height: 50px;
    }
}
/* MOBILE MENU LIST FIX */
.mobile-sidebar ul li {
    margin-bottom: 12px !important;
}

/* ACCORDION TITLE FIX */
.mobile-accordion .acc-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 !important;
}

/* ARROW */
.acc-arrow {
    font-size: 14px;
    transition: .3s ease;
    margin-left: 8px;
}

/* ACCORDION CONTENT FIX */
.mobile-accordion .acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding-left: 12px;
    margin-top: 4px;
}

/* LINKS INSIDE ACCORDION */
.mobile-accordion .acc-content li {
    margin: 6px 0 !important;
}

.mobile-accordion .acc-content li a {
    font-size: 16px;
    font-weight: 500;
}

/* WHEN OPEN */
.mobile-accordion.active .acc-content {
    max-height: 200px;
}

.mobile-accordion.active .acc-arrow {
    transform: rotate(180deg);
}

.blog-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.blog-section h2 {
  text-align: center;
  margin-bottom: 25px;
}

/* FILTER BUTTONS */
.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filters button {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: #e6e9ef;
  cursor: pointer;
}

.filters button.active {
  background: #FCC71B;
  color: #fff;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card .content {
  padding: 18px;
}

.blog-card .tag {
  display: inline-block;
  font-size: 12px;
  background: #eaf2ff;
  color: #FCC71B;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.blog-card p {
  font-size: 14px;
  color: #555;
}

.blog-card a {
  display: inline-block;
  margin-top: 10px;
  color: #FCC71B;
  font-weight: 600;
  text-decoration: none;
}


/* single  */


.blog-header {
  background: #FCC71B;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.blog-wrapper {
  max-width: 1200px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
  padding: 0 15px;
}

.blog-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.blog-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.blog-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-featured {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}

.blog-body p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.author-box {
  margin-top: 40px;
  padding: 20px;
  background: #f1f4fa;
  border-radius: 10px;
}

/* SIDEBAR */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.sidebar-box h3 {
  margin-bottom: 15px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box li {
  margin-bottom: 10px;
}

.sidebar-box a {
  color: #0a0a0a;
  text-decoration: none;
}

.sidebar-box a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-wrapper {
    grid-template-columns: 1fr;
  }
}


 /* ---------------- FOOTER ---------------- */
       /* --- MAIN FOOTER --- */
.main-footer {
    background: #0a0a0a;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-inner {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    color: #e1ab4b;
    margin-bottom: 10px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 600;
    color: #e1ab4b;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-col ul {
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.25s;
}

.footer-col ul li a:hover {
    color: #e1ab4b;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #e1ab4b;
    margin-right: 8px;
    font-size: 16px;
    transition: .25s;
}

.footer-social a:hover {
    background: #e1ab4b;
    color: #000;
}

/* Bottom Bar */
.footer-bottom {
    width: 95%;
    margin: 20px auto 0;
    border-top: 1px solid #333;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
}

.footer-bottom a {
    margin-left: 15px;
    color: #ddd;
    text-decoration: none;
    transition: .25s;
}

.footer-bottom a:hover {
    color: #e1ab4b;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* ---------------- FOOTER ACCORDION (MOBILE ONLY) ---------------- */
@media (max-width: 768px) {

    .accordion-title {
        cursor: pointer;
        font-size: 18px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 5px;
        color: #e1ab4b !important;
        border-bottom: 1px solid #333;
    }

    .accordion-title::after {
        content: "+";
        font-size: 20px;
        color: #e1ab4b;
        transition: .3s;
    }

    .accordion-item.active .accordion-title::after {
        content: "-";
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .accordion-item.active .accordion-content {
        max-height: 300px;
    }
}