*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
} 


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}




/* Sustainability Section  */

:root {
  --kj-primary: #1b2c55;
  --kj-accent: #c83063;
  --kj-text: #4a5565;
  --kj-heading: #1f2f5d;
}

.kj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


 @keyframes keFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kj-klar-journal {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
}

/* Hero Section */
.kj-journal-hero {
  background: linear-gradient(135deg, #1b2c55, #2f4378);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.kj-breadcrumb {
  font-size: 13px;
  margin-bottom: 30px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}

.kj-journal-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 20px;
}

.kj-subtitle {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Main Content Layout */
.kj-journal-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin: 60px auto;
}

/* Sidebar */
.kj-journal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.kj-categories-box, .kj-subscribe-box {
  padding: 30px;
  border-radius: 16px;
}

.kj-categories-box {
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
}

.kj-categories-box h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: var(--kj-heading);
}

.kj-categories-box ul {
  list-style: none;
  padding: 0;
}

.kj-cat-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500;
  color: var(--kj-heading);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.kj-cat-item span { color: #99a1af; font-size: 14px; }

.kj-cat-item.active {
  border-color: var(--kj-accent);
  color: var(--kj-accent);
}

.kj-subscribe-box {
  background: var(--kj-accent);
  color: #fff;
}

.kj-subscribe-box h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.kj-subscribe-box p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; }
.kj-subscribe-box input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
}

.kj-subscribe-box button {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: var(--kj-accent);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}




.kj-subscribe-box button:hover{
 transform: translateY(-5px);
 box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* Featured Post */
.kj-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 40px;
}

.kj-featured-img { position: relative; }
.kj-featured-img img { width: 100%; height: 100%; object-fit: cover; }

.kj-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  color: var(--kj-accent);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.kj-post-details { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.kj-meta { font-size: 12px; color: #99a1af; margin-bottom: 15px; }
.kj-meta span { color: var(--kj-accent); font-weight: 700; letter-spacing: 1px; }

.kj-post-details h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 15px; color: var(--kj-heading); }
.kj-desc { color: var(--kj-text); font-size: 14px; line-height: 1.8; margin-bottom: 25px; }

.kj-date-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.kj-read-more { color: var(--kj-accent); font-weight: 700; text-decoration: none; font-size: 14px; }

/* Grid Posts */
.kj-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.kj-post-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.kj-post-card:hover { transform: translateY(-10px); }
.kj-card-img { position: relative; height: 240px; }
.kj-card-img img { width: 100%; height: 100%; object-fit: cover; }
.kj-card-content { padding: 25px; }
.kj-card-content h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin: 15px 0; color: var(--kj-heading); }

.kj-load-more {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  padding: 15px 40px;
  background: var(--kj-heading);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .kj-journal-content { grid-template-columns: 1fr; }
  .kj-journal-sidebar { order: 2; }
  .kj-journal-posts { order: 1; }
  .kj-featured-post { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .kj-post-grid { grid-template-columns: 1fr; }
  .kj-post-details h2 { font-size: 24px; }
  .kj-journal-hero { padding: 50px 0; }
}



/* Footer Section */

.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}

