
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
   /* General link style inside main */
main a {
  text-decoration: none;
  color: black;
}

/* Apply hover underline only if the <a> does NOT contain an <img> */
main a:hover:not(:has(img)) {
  border-bottom: 0.035rem solid black;
}

/* Optional: ensure image links never get underline */
main a img {
  text-decoration: none !important;
  border-bottom: none !important;
}

  /* Default (Desktop) - No changes */
.responsive-header-wrap {
  display: none;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem;
  }
  .logo{
    display: none;
  }
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem !important;
    }
  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-panel {
    top: 143px;
  }

  /* Hide desktop nav + other header elements */
  
  .divider,
  .subscribe-btn,
  .search-icon,
  .login {
    display: none;
  }

  /* Show the new mobile layout */
  .responsive-header-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hamburger-icon {
    font-size: 1.6rem;
    cursor: pointer;
  }

  .centered-logo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .centered-logo img {
    max-width: 170px;
    height: auto;
  }

  .login-link {
    font-size: 1rem;
    cursor: pointer;
  }
}


    .top-banner {
      background: #ffc800;
      text-align: center;
      padding: 0.5rem 1rem;
      font-weight: 600;
      font-size: 0.8rem;
    }

    header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 1rem 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 11rem;
  transition: all 0.3s ease;
}

.logo img {
  max-width: 220px;
  transition: all 0.3s ease;
}

header.scrolled .logo img {
  max-width: 150px;
}
header.scrolled {
    padding-bottom: 1rem;
}
header.scrolled .dropdown-panel{
    top: 60px;
}


    .logo span {
      font-size: 0.8rem;
      font-style: italic;
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center;
    }

    .nav-item {
      font-size: 1rem;
      color: #222;
      cursor: pointer;
      
      position: relative;
    }
    .nav-item.active {
  background-color: #ffc800; /* Yellow color */
  transition-duration: 1s;



}

   

    .divider {
      height: 25px;
      width: 1px;
      background: #ccc;
    }

    .login {
      font-size: 1rem;
      color: #222;
      cursor: pointer;
    }

    .subscribe-btn {
      background: #222;
      color: #fff;
      padding: 0.6rem 1rem;
      border-radius: 5px;
      font-weight: bold;
      margin-left: 1rem;
      cursor: pointer;
    }

    .search-icon {
      font-size: 1.2rem;
      margin-left: 1rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .values-section{

    padding: 50px 5px !important;
      }
      .res-nav{
        display: flex;
        justify-content: space-between;
        width: 100%;
      }
      .logo {
        display: none;
      }

      

      
    }
    .nav-item img{
        width: 10px;
    }

    .close-btn-vals02 {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 10001;
}
.nav-item-wrap {
  position: relative;
}

.nav-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;

    padding: 10px;
  transition: color 0.3s ease;
}




/* Rotate arrow */
.nav-item img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.nav-item.active img {
  transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown-panel {
  position: fixed;
  top: 100px; /* adjust based on header height */
  left: 0;
  width: 100vw;
  background: #222;
  color: white;
  border-top: 8px solid #ffc800;
  border-bottom: 8px solid #ffc800;
  padding: 30px 40px;
  z-index: 9999;

  visibility: hidden;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Show with animation */
.dropdown-panel.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


.dropdown-content-vals02 {
  width: 100%;
  display: flex;
  gap: 50px;
  background-color: #222;
  color: #fff;
  padding: 50px;
  flex-wrap: wrap;

}

.regions-vals02 {
  flex: 1;
  min-width: 200px;
}

.regions-vals02 h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.regions-vals02 ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}

.regions-vals02 li {
  margin-bottom: 10px;
  font-size: 16px;
}

.recent-stories-vals02 {
  flex: 2;
  min-width: 250px;
}

.recent-stories-vals02 h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.story-vals02 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.story-vals02 img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.story-vals02 p {
  font-size: 16px;
  margin: 0;
}

.featured-coverage-vals02 {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.featured-coverage-vals02 h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.featured-coverage-vals02 h2 {
  font-size: 22px;
  margin: 0 0 10px;
}

.featured-coverage-vals02 img {
  width: 100%;
  max-width: 100%;
  margin: 15px 0;
}

.featured-coverage-vals02 p {
  font-size: 16px;
  margin-bottom: 20px;
}

.featured-coverage-vals02 button {
  background-color: #ffc800;
  color: black;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .dropdown-content-vals02 {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .regions-vals02 ul {
    columns: 1;
  }

  .story-vals02 {
    flex-direction: row;
  }

  .featured-coverage-vals02 {
    max-width: 100%;
  }
}


.new-font{
    font-family: "Playfair Display", serif;
}


 .news-section {
      max-width: 1400px;
      margin: 0 auto;
      margin-top: 2rem;
      display: grid;
      grid-template-columns: 1.3fr 2.3fr 1.3fr !important;
      gap: 30px;
    }
    .brief img{
        width: 100%;
        padding-bottom: 1rem;
    }
 

    .briefs {
      display: flex;
      flex-direction: column;
      gap: 1rem;
       
      padding: 10px;
      border-right: 1px solid #dddd;
      padding-right: 1rem;
      height: fit-content;
    }
    .jnunii{
        border: none !important;
    }

    .briefs .briefs-headline {
      font-size: 1rem;
       font-family: "Playfair Display", serif;
      font-weight: 800;

    }

    .brief {
      font-size: 1rem;
      border-bottom: 1px solid #747373;
      padding-bottom: 1rem;
    }
    .brief ul{
        padding-left: 1rem;
        font-family: "Playfair Display", serif;
      font-weight: 600; 
      
    }
    .brief li{
        padding-bottom: 1rem;
    }
    .fjfi{
        font-family: system-ui !important;
        font-weight: 500;
    }
    .section-heading-news img{
        width: 40px;
    }

    .head-breif  {
      display: block;
      font-weight: 600;
      font-size: 1.2rem;
         font-family: "Playfair Display", serif;
      margin-bottom: 0.8rem;
    }

    .dokuu {
      font-size: 0.65rem;
      color: #555;
      display: block;
      margin-top: 0.5rem;
    }

    .feature {
      display: flex;
      border-right: 1px solid #dddd;
      padding-right: 2rem;
      flex-direction: column;
    }
    .hfdu{
        color: #3a3a3a;
        font-size: 0.9rem;
        font-family: "Playfair Display", serif;
        margin: 1rem 0;
        line-height: 1.5;
        font-weight: 300;
    }

    .feature img {
      width: 100%;
      height: auto;
    }

    .feature-caption {
      font-size: 1rem;
      font-family: "Playfair Display", serif;
      font-weight: 700;
      margin-top: 1rem;
      line-height: 1.3;
    }

    .side-news {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .side-item {
      display: flex;
      gap: 1rem;
      font-family: "Playfair Display", serif;
      font-weight: 600;
      align-items: flex-start;
    }

    .side-item img {
      width: 80px;
      height: 80px;
      object-fit: cover;
    }

    .side-item div {
      font-size: 1rem;
      line-height: 1.4;
    }

    .side-item .category {
      font-size: 0.8rem;
      color: #555;
        font-family: system-ui;
      margin-bottom: 0.3rem;
    }

    @media (max-width: 768px) {
      .news-section {
        grid-template-columns: 1fr !important;
      }
      .feature {
        order: 1;
        border: none;
        padding: 0;
        
      }
      .news-block-single{
        border: none;
        padding: 0;
      }
      .feature-caption{
        font-size: 0.8rem;
      }
      .briefs {
        order: 2;
        border: none;
        padding: 0;
      }
      .side-news{
        order: 3;
      }
      main {
        max-width: 100% !important;
        margin: 0 20px !important;
      }
      .news-item img{
        max-width: 100% !important;
      }
     
    }
@media only screen and (min-width: 1440px) {
  .news-section {
    grid-template-columns: 1.2fr 2.4fr 1.2fr;
  }
  .search-overlay.active {
      transform: translateY(60%) !important;
    }

  main {
    max-width: 82%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 1rem 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 17rem;
  }
}
 main {
    max-width: 82%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

 .dual-news-wrapper {
      max-width: 1400px;
      margin: 3rem auto;
    }

    .news-item {
      display: flex;
      margin-top: 1rem;
      border-bottom: 1px solid #ccc;
      padding-bottom: 2rem;
      gap: 1.5rem;
      align-items: flex-start;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .news-item img {
      width: 100%;
      max-width: 152px;
      height: auto;
      flex-shrink: 0;
    }

    .news-text {
      flex: 1;
      min-width: 250px;
    }

    .news-tag {
      font-size: 0.85rem;
      font-weight: 500;
      font-family: system-ui;
      color: #444;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .news-tag::before {
      content: "";
      width: 10px;
      height: 10px;
      background: #f5b700;
      display: inline-block;
    }

    .news-title {
      font-size: 1.35rem;
      font-family: "Playfair Display", serif;
      font-weight: 700;
      line-height: 1.3;
    }

    @media (max-width: 768px) {
      .news-item {
        flex-direction: column;
      }
      .side-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.article-thumb {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    flex-shrink: 0;
}

      .news-title {
        font-size: 1.4rem;
      }
    }
  .highlight-signup {
      background-color: #f5f5f5;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 0.3rem 2rem 0.3rem 6rem;
      gap: 2rem;
      margin-top: 3rem;
      border: 1px solid #eee;
    }

    .highlight-signup img {
      max-width: 100px;
      height: auto;
    }

    .highlight-text {
      flex: 1 1 250px;
      font-size: 1.5rem;
      font-weight: 400;
      color: #222;
    }

    .highlight-text strong {
      font-weight: 600;
    }

    .highlight-form {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .highlight-form label {
      font-size: 0.95rem;
      color: #333;
    }

    .highlight-form input[type="email"] {
      padding: 0.8rem;
      font-size: 1rem;
      border: 1px solid #aaa;
      width: 50%;
    }

    .highlight-form button {
      padding: 0.8rem;
      background-color: #f5b700;
      color: #000;
      font-size: 1rem;
      border: none;
      cursor: pointer;
    }

    .highlight-note {
      width: 100%;
      color: gray;
      text-align: center;
      margin-top: 0.5rem;
      font-size: 0.67rem;
    }

    .highlight-note a {
      color: gray;
      text-decoration: underline;
    }

    .highlight-footer {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .fgj{
        font-weight: 300 !important;
    }

    .highlight-footer a {
      text-decoration: underline;
      color: #000;
    }

    @media (max-width: 768px) {
      .highlight-signup {
        flex-direction: column;
        text-align: center;
      }

      .highlight-form {
        align-items: center;
        flex: 1 1 60px;
      }
      .highlight-signup img {
        display: none;
      }
      .highlight-signup{
            padding: 0.3rem 0rem 0.3rem 0rem;
      }
      .highlight-text {
    flex: 1 1 60px;
      }
      .article-wrapper {
        padding: 0;
      }

      .highlight-form input[type="email"] {
        max-width: 300px;
      }
    }
    .form-btn{
        gap: 5px;
        display: flex;
    }




    .news-wrapper-grid {
      max-width: 1400px;
      margin: 0 auto;
      margin-top: 4rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .news-block-single {
      display: flex;
      flex-direction: column;
      border-right: 1px solid #dddd;
      padding-right: 1rem;
    }
    .nop{
        border: none !important;
    }

    .section-heading-news {
      font-size: 0.7rem;
      font-weight:400;
      color: rgb(94, 94, 94);
      background: #ffcc00;
      display: flex;
      align-items: center;
      border-radius: 20px 0 0 20px;
      gap: 1rem;
      padding: 0.1rem 0.4rem 0 0;
      margin-bottom: 1rem;
      width: fit-content;
      text-transform: uppercase;
    }

    .news-article-item {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
      margin-bottom: 1.4rem;
    }

    .article-thumb {
      width: 70px;
      height: 70px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .news-article-text {
      font-size: 0.92rem;
      line-height: 1.3;
      font-weight: 300;
      font-family: system-ui;
    }

    .highlight-news-label {
      font-size: 0.68rem;
      font-weight: bold;
      text-transform: uppercase;
      color: #333;
      margin-bottom: 0.25rem;
      display: flex;
      align-items: center;
    }

    .highlight-news-label::before {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      background-color: #ffcc00;
      margin-right: 5px;
    }

    .highlight-book-section {

      padding-top: 0.5rem;
      margin-top: 1rem;
    }

    @media (max-width: 1024px) {
      .news-wrapper-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .news-wrapper-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .perspective-section-title {
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Georgia, serif;
      font-weight: bold;
      color: #111;
      text-transform: uppercase;
      letter-spacing: 0.2rem;
      text-align: center;
      font-size: 1rem;
      margin: 2rem 0;
      line-height: 1.6;
    }

    .perspective-section-title .line-left,
    .perspective-section-title .line-right {
      flex: 1;
      height: 3px;
      background-color: #f5b700;
      margin: 0 10px;
      max-width: 100px;
    }

    .perspective-section-title .text {
      white-space: nowrap;
      font-size: 0.85rem;
    }
    .dji9tn{
        display: flex;
        gap: 1rem;
    }
     .review-section {
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

.review-block {
  margin-bottom: 30px;
}

.divider-label-news {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.divider-line {
  flex: 1;
  height: 2px;
  background-color: #f7c600;
}

.divider-text {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.bottom-section{
    margin: 3rem auto;
}
.cta-button {
            background-color: #FFD700;
            color: #3a3a3a;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
        }


.csm-footer {
  background: #1c1c1c;
  color: #d3d3d3;
  padding: 40px 20px;
  margin-top: 4rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.csm-footer-inner {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
  filter: invert(100%);

}

.issn-text {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.follow-text {
  margin: 20px 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #bdbdbd;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #d3d3d3;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  border-color: #fff;
}

.footer-links {
  font-size: 14px;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 1000px;
  margin: auto;
  color: #b0b0b0;
}

.footer-links span {
  color: #555;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s, text-decoration 0.3s;
}

.footer-links a:hover {
  color: #fff;
 
  border-bottom: 0.01rem solid #7a7a7a;
}


.copyright {
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

.copyright a {
  color: #ccc;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .social-icons {
    gap: 15px;
  }
}


.project-cards-wrapper {
  display: flex;
 
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0rem;
  max-width: 1400px;
  margin: auto;
}

.project-card-box {
  flex: 1 1 500px;
  background: #fff;
  padding: 0;
  max-width: 600px;
}

.project-card-box img {
  width: 100%;
  height: auto;
  display: block;
}

.project-meta-label {
  color: #be1e2d;
  font-size: 0.85rem;
  font-weight: normal;
  margin-top: 1rem;
  text-transform: uppercase;
}

.project-title-text {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
 font-family: "Playfair Display", serif;
}

.project-description-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .project-cards-wrapper {
    flex-direction: column;
    padding: 1rem;
  }

  .project-card-box {
    max-width: 100%;
  }

  .project-title-text {
    font-size: 1.3rem;
  }

  .project-description-text {
    font-size: 0.95rem;
  }
}

.subs-layout-wrap {
  background: #f8f8f8;
  padding: 2rem 1rem;
  text-align: center;
}

.subs-heading-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.subs-card-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  margin-bottom: 2rem;
}

.subs-card-box {
  background: #fff;
  padding: 2rem;
  width: 400px;
  max-width: 100%;
  border: 1px solid #ccc;
  position: relative;
  text-align: left;
}

.subs-img-pic {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.subs-plan-name {
  font-size: 1.1rem;
  font-weight: normal;
  margin: 0.5rem 0;
}

.subs-price-line {
  font-size: 1rem;
  color: #333;
}

.subs-discount-text {
  font-size: 1.2rem;
  color: #000;
  font-weight: normal;
}

.subs-discount-text span {
  font-size: 0.9rem;
  color: #be1e2d;
  font-weight: normal;
}

.subs-benefit-head {
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 1rem;
}

.subs-list-items {
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.subs-readmore-link {
  font-size: 0.8rem;
  margin-top: 1rem;
  display: inline-block;
  color: #000;
  text-decoration: underline;
}

.subs-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding: 0.8rem;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 1;
}

.subs-badge-best {
  background: #ffc800;
  color: #000;
  font-weight: bold;
  padding: 3rem 1.4rem;
  border-radius: 50%;
  position: absolute;
  right: -39px;
  top: -42px;
  font-size: 0.6rem;
  z-index: 1;
}

.subs-button-main {
  background: #ffc800;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

.subs-footer-note {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.subs-footer-note a {
  color: #000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .subs-card-flex {
    flex-direction: column;
  }

  .subs-divider {
    position: static;
    transform: none;
    margin: 1rem auto;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
  }
}




/*  category section */

.values-section {
  text-align: center;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
}

.values-section h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #222;
}

.intro-text {
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #333;
}

.value-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.value-label {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: #222;
}

.value-dropdown {
  padding: 10px 14px;
  font-size: 18px;
  border: 1px solid #999;
  border-radius: 4px;
  min-width: 196px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .values-section h2 {
    font-size: 30px;
  }

  .intro-text {
    font-size: 16px;
  }

  .value-selector {
    flex-direction: column;
    gap: 12px;
  }

  .value-label {
    font-size: 18px;
  }

  .value-dropdown {
    width: 100%;
    max-width: 300px;
  }
}

.safety-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.safety-heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  font-family: system-ui;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.safety-heading span {
  flex: 1;
  height: 1px;
  background-color: #d5af2d; /* thin yellow line */
}

.safety-heading2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  font-family: system-ui;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.safety-heading2 span {
  flex: 1;
  height: 1px;
  background-color: black; /* thin yellow line */
}


.safety-subtitle {
  font-size: 22px;
  color: #333;


  padding-bottom: 1rem;
 text-align: start;
  line-height: 1.6;
}

.safety-cards {
  display: grid;
  grid-template-columns: 1fr; /* Default: 1 column on mobile */
  gap: 30px;
  justify-content: center;
}

@media (min-width: 768px) {
  .safety-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (min-width: 1024px) {
  .safety-cards {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktops */
  }
}

.safety-card {
  max-width: 100%;
  text-align: left;
  width: 100%;
}


.safety-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.safety-card h4 {
  font-size: 18px;
 font-family: "Playfair Display", serif;
      font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.safety-card p {
  font-size: 14px;
  padding-bottom: 4rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .safety-heading {
    font-size: 18px;
  }

  .safety-subtitle {
    font-size: 18px;
    padding: 0 10px;
    margin-bottom: 1rem;
  }

  .safety-cards {
    flex-direction: column;
    gap: 30px;
  }

  .safety-card {
    margin: 0 auto;
  }
}
.show-more-btn{
    margin:  0 auto;
}
.show-more-btn button{
    background-color: #0e6e78;
    border: none;
    font-size: 1rem;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 0.2rem;
    cursor: pointer;
}
.show-more-btn button:hover{
    background-color: #0d5861;
}







/* detail section */

    .article-wrapper {
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Georgia', serif;
  line-height: 1.7;
  color: #111;
}

.article-tags {
  font-size: 16px;
  margin-bottom: 15px;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  font-family: system-ui;
  gap: 0.7rem;
}

.tag {
  background-color: #f4c518;
  padding: 2px 8px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.tag-secondary {
  color: #444;
  font-weight: bold;
}

.article-title {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  margin-top: 3rem;
  margin-bottom: 20px;
}

.article-image img {
  width: 100%;
  height: auto;
  margin: 3rem auto 0.3rem auto;
  display: flex;
  
}

.caption {
  font-size: 12px;
  color: #777;
  margin-bottom: 30px;
}
.captionia{
    font-size: 12px;
  color: #777;
  margin-bottom: 30px;
  font-family: system-ui;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  justify-content: center;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
 font-family: system-ui;
 font-weight: 600;
  font-size: 16px;
}

.date {
  font-size: 13px;
  margin-top: 1rem;
  color: #555;
  font-family: system-ui;
}
.article-body{
    margin-top: 1rem;
}

.article-body p {
  
  font-size: 1.125rem;
  color: #3A3A3A;
}

.article-body a {
    color: #3A3A3A;
  text-decoration: underline;
}

.why-we-wrote {
  background-color: #ffc700;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  border-left: 6px solid #ffc700;
}

.why-title {
  font-size: 16px;
  font-family: system-ui;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.why-subtitle {
 
  margin-bottom: 10px;
  font-family: system-ui;
  font-style: italic;
}

.why-desc {
  font-size: 1.3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .article-title {
    font-size: 22px;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-img {
    width: 40px;
    height: 40px;
  }

  .why-we-wrote {
    font-size: 15px;
  }
}
.dubhfrtye{
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
.ad-se{
    width: 100%;
    margin: 2rem auto;
}
.ad-se img{
    width: 100%;
}
.cta-wrapper {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px;
}

.cta-box {
  background: #f8f8f8;
  border-top: 6px solid #fbc600;
  border-bottom: 6px solid #fbc600;
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-login-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.cta-login-button {
  padding: 8px 14px;
  border: 1px solid #333;
  background: #fff;
  color: #111;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.cta-heading {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 16px;
  color: #222;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.cta-description a {
  color: #2b8fd6;
  text-decoration: underline;
}

.cta-subscribe-button {
  padding: 12px 30px;
  font-size: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cta-social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-social-icons a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 20px;
  color: #222;
  transition: all 0.3s;
}

.cta-social-icons a:hover {
  border-color: #000;
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-login-row {
    flex-direction: column;
  }

  .cta-heading {
    font-size: 18px;
  }

  .cta-description {
    font-size: 15px;
  }

  .cta-subscribe-button {
    font-size: 15px;
  }
}
.adsec2{
    width: 60%;
    margin: 2rem auto;
}
.adsec2 img{
    width: 100%;
}


   .sidebar-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: transparent;
    font-size: 2rem;
    color: #fff;
    z-index: 1100;
    border: none;
    cursor: pointer;
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: #222;
    color: #fff;
    z-index: 1000;
    padding: 1.5rem;
    box-sizing: border-box;
    overflow-y: auto;
    transition: 0.3s ease;
  }

  .sidebar.active {
    left: 0;
  }

  .sidebar-close {
    text-align: right;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .sidebar-search {
    display: flex;
    margin: 1rem 0;
    padding-bottom: 1rem;
   
  }

  .sidebar-search input {
    flex: 1;
    padding: 0.6rem;
    border-radius: 4px 0 0 4px;
    border: none;
    font-size: 0.95rem;
  }

  .sidebar-search button {
    padding: 0.6rem;
    background: #eee;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }

  .sidebar-buttons {
    margin-top: 1rem;
    margin-bottom: 2rem;
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .sidebar-subscribe {
    background: #ffc800;
    border: none;
    padding: 0.6rem 1rem;
    font-weight: bold;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
  }

  .sidebar-login {
    background: transparent;
   
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .sidebar-links {
    margin-top: 1.2rem;
  }

  .sidebar-links a {
   display: block;
    color: #eee;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .sidebar-values {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
  }

  .sidebar-values h4 {
    margin-bottom: 0.4rem;
    font-size: 1.3rem;
    font-weight: bold;
  }

  .sidebar-values p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .sidebar-values-btn {
    background: #0e6e78;
    margin-bottom: 1rem;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
  }

  .sidebar-divider {
    height: 1px;
    background: #444;
    margin: 1.5rem 0;
  }

  .sidebar-social p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
    padding-bottom: 1rem;
  }

  .social-icons span {
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    cursor: pointer;
  }

  @media (max-width: 480px) {
    .sidebar {
      max-width: 100%;
      padding: 1rem;
    }
  }

    /* Overlay */
    .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 20vh;
      background: #262626;
      border-top: 5px solid #ffc400;
      border-bottom: 5px solid #ffc400;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
    }

    .search-overlay.active {
      transform: translateY(89%);
    }

    .search-container {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .search-container label {
      color: white;
      font-size: 20px;
    }

    .search-container input {
      padding: 12px 16px;
      width: 300px;
      border: none;
      border-radius: 4px;
      outline: none;
      font-size: 16px;
      background-color: #f2f2f2;
    }

    .search-container button {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
    }

    /* Close Button */
    .close-btn-s {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .search-container {
        flex-direction: column;
        align-items: center;
      }

      .search-container input {
        width: 80%;
      }
    }