  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: 350px;
        background-image: url('../imgs/blogs-bredcrumbs-bg.jpg');
        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: rgba(0, 0, 0, 0.50);
        z-index: 1;
    }
    .content{
        z-index: 2;
    }
  .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: 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: cover;
     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: 1200px;
     margin: 0 auto;
     padding: 40px 20px;
}
 .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 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;
}
/* Blog-Inner Page Code */

/* Footer style */
footer {
    width: 100%;
    background-color: #fff;
}
footer .col{
  background-color: #fff;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px 10px 40px;
}
footer .logo img{
max-width: 380px;
width: 100%;
height: auto;
text-align: left;
}
footer .container {
    display: flex
;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px 13%;
    padding: 40px 0px 0px 0px;
}
 @media (max-width:768px) {
     footer .logo img{
max-width: 250px;
}
     footer .container{
       flex-wrap: wrap;
     }
     
     footer .copyright{
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
     }
     footer .col{
         padding: 20px 10px;
     }
     .ser-1{
    margin-left:0%
}
 }

footer .container .info ul{
    max-width: 280px;
    width: 100%;
list-style: none;
display: flex;
flex-direction: column;
gap: 20px;
margin: 0;
padding: 0;
}
footer .container .info ul li a{
   font-size: 14px;
  color: #000;
  text-decoration: none;
}
footer .container .info ul li{
   font-size: 14px;
  color: #000;
  text-decoration: none;
}
.info ul li i {
  margin-right: 10px;
  color: #567f53;
}

footer .container .ser-1 ul{ 
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
padding: 0;
}
.ser-1{
    margin-left:-8%
}
footer .container .ser-1 h4{
  color: #455572;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  margin-bottom: 10px;
}
footer .container .ser-1 ul li a{
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
footer .container .ser-1  ul li {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}



footer .container .ser-2 ul{ 
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
padding: 0;
}
footer .container .ser-2 h4{
  color: #455572;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  margin-bottom: 10px;
}
footer .container .ser-2 ul li a{
 font-size: 14px;
  color: #000;
  text-decoration: none;
}


footer .container .ser-3 ul{ 
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
padding: 0;
}
footer .container .ser-3 h4{
  color: #455572;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  margin-bottom: 10px;
}
footer .container .ser-3 ul li a{
 font-size: 14px;
  color: #000;
  text-decoration: none;
}


footer .copyright{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: spa;
  margin: 0;
  align-items: center;
  border-top: 1px solid#2c2c2c;
}
footer .copyright .con{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

footer .copyright .link ul{
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  padding: 0px;
}


footer .copyright .link ul li a{
text-decoration: none;
color: #000;
font-size: 14px;
}
footer .copyright .img img{
  width: 100%;
  height: auto;
}
footer .copyright .text p{
color: #000;
font-size: 14px;
}

.follow-us {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px 15px;
  font-family: "Poppins", sans-serif;
  color: #567f53; /* Text color */
  padding: 60px 0 20px 0;
  
}
.follow-us .row{
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;

}


.follow-us span {
  font-weight: 600;
  color: #455560;
  font-size: 24px;
  line-height: 1;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid#567f53;
  color: #567f53; /* Icon color */
  
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #456741; /* Darker shade on hover */
  color: #fff;
}