  body, html {
      height: 100%;
        margin: 0;
        padding: 0;
       box-sizing: border-box;
       overflow-x: hidden;
       font-family: "Poppins", sans-serif;
    }
    .breadcrums {
        position: relative;
        width: 100%;
        padding: 40px;
        height: 500px;
        background-image: url('../imgs/blogs-bredcrumbs-bg.webp');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }
    .breadcrums::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #567F53;
        opacity: 0.8;
        z-index: 1;
    }
    .content{
        z-index: 2;
    }
    .content {
    z-index: 2;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
  .content h1 {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
}

/* Blogs Page Code Start */
 .blog-container {
     max-width: 1200px;
     margin: 0 auto;
}
 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
}
 .blog-card {
     border-radius: 8px;
     overflow: hidden;
     transition: all 0.3s ease;
}
 .blog-image {
     width: 100%;
     height: 200px;
     overflow: hidden;
}
 .blog-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .blog-content h3 {
     font-size: 1.25rem;
     color: #1f2937;
     margin-bottom: 10px;
}
 .blog-content p {
     color: #6b7280;
     font-size: 0.95rem;
     margin-bottom: 15px;
}
 .read-more {
     color: #dc2626;
     text-decoration: none;
     font-weight: 600;
}
 .pagination {
     display: flex;
     justify-content: center;
     gap: 10px;
}
 .pagination a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     text-decoration: none;
     color: #4b5563;
     font-weight: 600;
     transition: all 0.3s ease;
}
 .pagination a.active {
     background-color: #dc2626;
     color: white;
}
 .pagination a:hover:not(.active) {
     background-color: #f3f4f6;
}
 .blogs-section {
     padding-top: 100px;
     padding-bottom: 100px;
     padding: 20px;
     background-color: #f8f8f8;
}
 .blogs-section .navigation {
     background-color: #fff;
     padding: 20px;
     margin-bottom: 30px;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 .blogs-section .nav-items {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
}
 .blogs-section .nav-items a {
     text-decoration: none;
     color: #333;
     padding: 8px 16px;
     border-radius: 20px;
     transition: all 0.3s ease;
}
 .blogs-section .nav-items a.active {
     background-color: #dc2626;
     color: white;
}
 .blogs-section .nav-items a:hover:not(.active) {
     background-color: #f3f4f6;
}
 .blogs-section .categories {
     padding: 20px;
     margin-bottom: 30px;
     border-radius: 8px;
     display: flex;
     justify-content: center;
     gap: 15px;
     flex-wrap: wrap;
     margin-top: 50px;
}
.blogs-section .category-btn {
    border: 1px solid #D3D3D3;
    background: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
    color: #333;
    transition: all 0.3s ease;
}
 .blogs-section .category-btn:hover {
     background-color: #d4e4d1;
}
 .blogs-section .category-btn.active {
     background: #466c46;
     color: white;
}
 .blogs-section .blog-container {
     max-width: 1440px;
     margin: 0 auto;
}
 .blogs-section .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
}
 .blogs-section .blog-card {
     border-radius: 8px;
     overflow: hidden;
     transition: all 0.3s ease;
     opacity: 1;
     transform: scale(1);
}
 .blogs-section .blog-card.hide {
     display: none;
     opacity: 0;
     transform: scale(0.8);
}
 .blogs-section .blog-card:hover {
     transform: translateY(-5px);
}
 .blogs-section .blog-image {
     width: 90%;
     height: 420px;
     overflow: hidden;
}
 .blogs-section .blog-image img {
     width: 100%;
     height: 90%;
     object-fit: contain;
     border-radius: 30px;
     transition: transform 0.3s ease;
}
 .blogs-section .blog-card:hover .blog-image img {
     transform: scale(1);
     border-radius: 30px;
}
 .blogs-section .blog-content {
     padding: 20px;
     padding-left: 7px;
}
.blogs-section .blog-content h3 {
    font-size: 26px;
    color: #2c2c2c;
    margin-bottom: 10px;
    line-height: 36px;
    margin-top: -35px;
    width: 90%;
}
 .blogs-section .blog-content p {
     color: #2C2C2C;
     font-size: 20px;
     font-family: 'Visby Medium';
     line-height: 28px;
     margin-bottom: 15px;
}
.blogs-section .read-more {
    font-family: 'Visby Medium';
    display: contents;
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    transition: color 0.3s ease;
}
 .blogs-section .read-more:hover {
     color: #466c46;
}

.blogs-section .blog-content a {
    text-decoration: none;
}

.content a {
    text-decoration: none;
    color: #FFFFFF;
}

.content h2 {
    display: flex;
    font-size: 18px;
    font-weight: 400;
    flex-direction: row;
    justify-content: center;
    gap: 17px;
}
/* Blogs Page Code End */

/* Blog-Inner Page Code Start */
.guide-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
.article-layout {
    display: grid;
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}
.article-content {
    min-width: 0;
}
.article-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}
.sidebar-box {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    padding: 22px 18px;
    position: relative;
}
.sidebar-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.toc-list,
.latest-blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.toc-list li + li {
    margin-top: 8px;
}
.toc-list a,
.latest-post-link {
    display: block;
    color: #2c2c2c;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.toc-list a:hover,
.latest-post-link:hover {
    color: #466c46;
}
.toc-list a {
    font-size: 0.96rem;
    padding: 6px 0;
}
.latest-post-item + .latest-post-item {
    margin-top: 18px;
}
.latest-post-link {
    font-size: 0.96rem;
    font-weight: 600;
    color: #1f2937;
}
.content h3{
    text-align: center;
}
 .guide-header {
     text-align: center;
     margin-bottom: 40px;
}
 .guide-header h1 {
     font-size: 3rem;
     font-weight: 500;
     margin-top: 70px;
}
 .guide-header h2 {
     font-size: 4.5rem;
     line-height: 0.5em;
     color: #ff0000;
     font-weight: 500;
     margin-bottom: 20px;
}
 .subtitle {
     color: #666;
     line-height: 1.6;
     margin-bottom: 20px;
     width: 70%;
     justify-self: anchor-center;
}
 .social-links {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-bottom: 30px;
}
 .social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #f5f5f5;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease;
}
 .social-icon:hover {
     transform: translateY(-3px);
}
 .social-icon img {
     width: 60px;
     height: 40px;
}
 .featured-image {
     width: 100%;
     height: 780px;
     border-radius: 50px;
     overflow: hidden;
     margin-bottom: 40px;
}
 .featured-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center center;
}
 .guide-steps {
     display: flex;
     flex-direction: column;
     gap: 0px;
}
 .step {
     padding: 0px 20px;
     border-radius: 10px;
     width: 97%;
}
 .step h3 {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 0px;
     color: #333;
}
 .step h2,
 .step h3,
 .step h4 {
     scroll-margin-top: 110px;
 }
 .step p {
     font-size: 1.2em;
     color: #666;
     line-height: 1.6;
}
 .guide-footer {
     margin-top: 0px;
     padding: 0px 20px;
     border-radius: 10px;
     color: #666;
     line-height: 1.6;
}
 .environment-section {
     width: 100%;
     background-color: #F6E5E5;
     padding: 40px 20px;
     border-radius: 30px;
}
 .environment-header {
     max-width: 1400px;
     margin: 0 auto;
}
 .environment-header h2 {
     color: #FF0000;
     font-size: 3rem;
     font-weight: 700;
     text-align: center;
     margin: 0;
}
 .environment-header h2 {
     color: #FF0000;
     font-size: 4.5rem;
     font-weight: 500;
     text-align: center;
     margin: 60px;
}
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        order: 2;
    }
    .article-content {
        order: 1;
    }
    .sidebar-box {
        position: static;
    }
    .article-sidebar {
        position: static;
    }
    .featured-image {
        height: 300px;
        border-radius: 24px;
    }
}
/* Blog-Inner Page Code */



 

/* header  */


.container{
    width: min(1520px, 92%);;
    max-width: 1520px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header{
    background-color: #fff;
    z-index: 998;
    position: relative;
}
.brand-logo img{
  width: 100%;
 max-width: 200px;
}

/* NAV - Desktop */
.navbar-ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item-dropdown {
    position: relative;
}

/* Multi-column dropdown */
.nav-item-dropdown ul {
    position: absolute;
    top: 120%;
    left: 0;
    width: 720px;
    background: #fff;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 12px 25px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-item-dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown ul li {
    list-style: none;
}

.nav-item-dropdown ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #333;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-item-dropdown ul li a:hover {
    background: #f1f5f9;
    color: var(--color-primary);
    transform: translateX(6px);
}

.nav-item-dropdown ul li a::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: 0.3s;
}

.nav-item-dropdown ul li a:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Dropdown arrow */
.dropdown-toggle::after {
    content: "▾";
    margin-left: 6px;
    font-size: 20px;
    transition: 0.3s;
}

.nav-item-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Second dropdown column fix */
.nav-item-dropdown:nth-child(2) ul {
    width: 360px;
    grid-template-columns: repeat(2, 1fr);
}

.grid-col{
    display: unset !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1d4871;
    border-radius: 2px;
}

.btn {
    display: flex;
    gap: 12px;
}


/* Base Button */
.btn a {
    position: relative;
    padding: 12px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.btn a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn a:active {
    transform: translateY(0) scale(0.98);
}

/* Shine Animation */
.btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}

/* Shine on Hover */
.btn a:hover::before {
    left: 130%;
}


.btn a:last-child {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn a:last-child:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.navbar-ul li a{
    color: var(--color-text) z;
}



/* Footer Base */
.sbp_footer {
  background: #fff;
  color: #2c2c2c;
  font-family: 'Arial', sans-serif;
  padding: 60px 0px 0px;
  border-radius: 12px 12px 0 0;
  max-width: 1520px;
  margin: 0 auto;
}

.sbp_footer a {
  color: #2c2c2c;
  text-decoration: none;
  transition: 0.3s;
}

.sbp_footer a:hover {
  color: var(--color-primary-hover);
}

/* Footer Columns */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 0px;
}

.footer-col {
  flex: 1 1 150px;
  background: #fff;
  padding: 25px 20px 0 0;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}



/* Brand column larger */
.footer-col.brand {
  flex: 2 1 320px;
}

.footer-logo {
width: 430px;
height: 101px;
margin-bottom: 30px;
}

.footer-col h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 15px;
  color: #1c465c;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: clamp(16px, 1.6vw, 20px);
}


/* Social Icons */
/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: #2c2c2c;
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 50%;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.social-icons a:hover {
    background: #567f53;
    border-color: #567f53;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(86, 127, 83, 0.35);
}

.social-icons a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(86, 127, 83, 0.2);
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: clamp(16px, 1.6vw, 20px);
}

.payments img {
  height: 30px;
  margin-left: 10px;

}
.payments{
  display: flex;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2c2c2c;
}

.contact-list li i {
  color: var(--color-primary); 
  min-width: 20px; 
}
:root {
    --font-primary: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    --color-text: #202020;
    --color-background: #fff;
    --color-primary: #567F53;
    --color-primary-hover: #456a44;
    --color-secondary:#1c465c;
    --color-white: #fff;
}

ul, ol {
    list-style: none;
}
  