body{
    font-family: Inter, sans-serif;
}
:root {
    /* === Brand Colors === */
    --primary-color: #000000;
    --secondary-color: #;
    --accent-color: #1ccad8;
    --heading: #0c0407;
    /* === Fonts === */
    --primary-font: 'Poppins', sans-serif;
    --heading-font: 'Playfair Display', serif;
  
    /* === Common Styles === */
    --border-radius: 10px;
    --transition-speed: 0.3s;
  }
  
  h5{
    color: var(--primary-color);
    letter-spacing: 0;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 112%;
    text-decoration: none;
    display: block;
  }
h2{
    font-weight: 600;
}
p{
    font-size: 16px;
}
.big-heading{
    font-weight: 700;
}
.post-meta-top{
    font-weight: 600;
}
.categories-title {
    font-family: Poppins, sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000;
}
@media (max-width: 575.98px) {
  .section-title{
    font-size: 26px;
  }
}

/* ============================== GLOBLE  HEADER STYLE =================================== */
/* Global Color Variables */
:root {
    --menu-color: #444;        /* Gray-black */
    --menu-hover: #000;        /* Black */
    --dropdown-bg: #fff;       
    --dropdown-hover: #f1f1f1;
    --dropdown-border: #ccc;
    --white: white;
}

/* Main menu */
.main-menu {
    list-style: none;
    gap: 1.5rem !important;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    color: var(--menu-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem;
    display: inline-block;
}

.main-menu li a:hover {
    color: var(--menu-hover);
}

/* Dropdown */
.main-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    min-width: 200px;
    z-index: 99;
    padding: 0.5rem 0;
    list-style: none;
    border-radius: 4px;
}

.main-menu li:hover > ul {
    display: block;
}

.main-menu li ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--menu-color);
    white-space: nowrap;
}

.main-menu li ul li a:hover {
    background-color: var(--dropdown-hover);
    color: var(--menu-hover);
}

/* Responsive */
@media (max-width: 767.98px) {
    .main-menu {
        flex-direction: column;
        gap: 0;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu li a {
        width: 100%;
    }

    .main-menu li ul {
        position: static;
        display: none !important;
        border: none;
        padding-left: 1rem;
    }

    .main-menu li:focus-within ul,
    .main-menu li:active ul {
        display: block !important;
    }
}


/* Toggle / Mobile menu */
/* === Toggle Button Wrapper === */
/* === Toggle Button Base === */
.custom-toggler {
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* === Toggle Lines === */
.custom-toggler .toggler-line {
    height: 3px;
    width: 100%;
    background-color: #000; /* Default line color */
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

/* === Active State: Menu Open === */
.custom-toggler.active .toggler-line {
    background-color: #ff9c08; /* Change this to your preferred active color */
}

/* =========== Mobile menu Item ================= */
/* Mobile menu container */
#mobile-menu {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Mobile menu items */
#mobile-menu .menu-item {
    list-style: none;
}

#mobile-menu .menu-item a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover and focus styles */
#mobile-menu .menu-item a:hover,
#mobile-menu .menu-item a:focus {
    background-color: #f5f5f5;
    color: #000;
}

/* Dropdown styles inside mobile menu */
#mobile-menu .sub-menu {
    background-color: #ffffff;
    border-left: 2px solid #ccc;
    margin-left: 20px;
    padding-left: 10px;
    margin-top: 5px;
}

/* Add space between items */
#mobile-menu .menu-item + .menu-item {
    margin-top: 5px;
}


/* Hide submenus by default on mobile */
#mobile-menu .sub-menu {
    display: none;
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #ccc;
    background-color: #f9f9f9;
}

/* Show submenu when toggled */
#mobile-menu li.submenu-open > .sub-menu {
    display: block;
}

/* Style for submenu toggle arrow */
.submenu-toggle {
    float: right;
    cursor: pointer;
    margin-top: 4px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when submenu is open */
.submenu-open > .submenu-toggle svg {
    transform: rotate(180deg);
}


/* ====================================================================== */
/* ============================ Front Page Design ======================= */
/* ====================================================================== */

/* =============== Hero Section -==================== */

.hero-section{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.front-hero-title {
  font-size: 4.5rem; /* Default for large screens */
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
  margin-top: 0;
  line-height: 1.1;
}

.front-hero-text {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-top: 1rem;
}

/* Tablet and below */
@media (max-width: 991.98px) {
  .front-hero-title {
      font-size: 3rem;
  }

  .front-hero-text {
      font-size: 1.1rem;
  }
}

/* Mobile phones */
@media (max-width: 575.98px) {
  .front-hero-title {
      font-size: 2.2rem;
      line-height: 1.2;
  }

  .front-hero-text {
      font-size: 1rem;
  }
}

.post-stack-container {
  background-color: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.stack-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translateX(-50%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 1;
  pointer-events: none;
}

.post-card-inner {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.stack-card:nth-child(1) {
  z-index: 4;
  transform: translateX(-50%) rotate(0deg) translateY(0px);
  pointer-events: auto;
}
.stack-card:nth-child(2) {
  z-index: 3;
  transform: translateX(-40%) rotate(8deg) translateY(-3px);
}
.stack-card:nth-child(3) {
  z-index: 2;
  transform: translateX(-30%) rotate(10deg) translateY(-8px);
}
.stack-card:nth-child(4) {
  z-index: 1;
  transform: translateX(-20%) rotate(15deg) translateY(-12px);
}
.stack-card:nth-child(n+5) {
  opacity: 0;
  transform: scale(0.95);
  display: none;
}

/* Fade‑out helper */
.stack-card.fading {
  opacity: 0;
}



.post-thumb {
  width: 100%;
  height: 177px; /* Adjust height */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.post-title {
  font-size: 18px; /* Adjust title size */
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}



/* ================== MEDIA QUERIES ================== */

/* Tablet */
@media (max-width: 991.98px) {
  .front-hero-title {
    font-size: 3rem;
  }

  .front-hero-text {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 30px 0;
    min-height: 80vh !important;
  }

  .hero-section .row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-section .col-md-7,
  .hero-section .col-md-5 {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .front-hero-title {
    font-size: 36px;
    line-height: 50px;
    text-align: left;
  }

  .front-hero-text {
    font-size: 18px;
    text-align: left;
  }

  .post-stack-container {
    max-width: 90%;
    height: 300px;
    padding: 10px;
  }

  .stack-card {
    width: 100%;
    height: 300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .stack-card:nth-child(n+4) {
    display: none;
  }

  .post-thumb {
    height: 180px;
    max-height: 180px;
  }

  .post-title {
    font-size: 16px;
  }
}


/* ====================== Recent Blog Section ===================== */
/* ====================== Recent Blog Section ===================== */

/* General Styles */
.bg-post{
    padding-right:38px;
}
.big-post-title{font-weight: bold; font-family: Poppins, sans-serif; letter-spacing: 0;}

.big-post .featured-image-wrapper {
  width: 100%;
  height: 350px; /* Adjust as needed */
  overflow: hidden;
  border-radius: 10px;
}

.featured-image-wrapper {
  width: 95%;
  height: 185px;
  overflow: hidden;
  border-radius: 10px;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-img:hover {
  transform: scale(1.05);
}

/* Vertical post */
.Vertical-post .featured-image-wrapper .featured-img {
  height: 90% !important;
  border-radius: 15px;
}

  .Vertical-post .vertical-post-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
   font-family: Poppins, sans-serif;
  }
/* Mobile responsiveness */
@media (max-width: 768px) {
    .bg-post{
    padding-right:0px;
}
  .latest-posts .categories-title{
    font-size: 26px;
  }
  .big-post-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Inter';
  }
  .big-post, .Vertical-post {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .Vertical-post .read-more-btn{
    margin-bottom: 30px !important;
  }
  .Vertical-post .vertical-post-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Inter';
  }
  .big-post .featured-image-wrapper {
    height: 250px;
}
  .featured-image-wrapper {
      width: 100%; /* Adjust width for mobile */
      height: auto; /* Adjust the height of images for mobile */
  }

  .featured-img {
      object-fit: cover;
  }

  /* Add gap between each post */
  .big-post {
      margin-bottom: 20px;
  }

  /* Ensure title and content stay aligned */
  .Vertical-post .featured-image-wrapper .featured-img {
      height: 80% !important;
  }
  
  /* Remove grid or columns for mobile, single column layout */
  .blog-posts-container {
      display: block;
  }

  /* Add gap between posts in mobile view */
  .blog-posts-container .post {
      margin-bottom: 30px; /* Add gap between posts */
  }
}




/*
*============= Blog Categories Section ================
*/
.blog-categories-section {
    background-color: #fff;
  }
  
  .section-title {
    font-family: Poppins, sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000;
  }
  
  .category-pill {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .category-pill:hover {
    background-color: #000000;
    text-decoration: none;
    color: #ffffff;
  }
  .featured-blogs-section {
    background-color: #fff;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
  }
  
  .blog-card {
     /* background: #fff; */
    border-radius: 15px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-image-wrapper {
    position: relative;
  }
  
  .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    color: #000;
  }
  
  .blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
  }
  
  .blog-meta {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    gap: 1rem;
  }
  
  .blog-meta i {
    margin-right: 5px;
  }
  
  @media (max-width: 768px) {
    .blog-categories-section .Categories{
      font-size: 26px;
      font-weight: 600;
      font-family: var(--primary-font);
    }
    .category-pill{
      font-size: 14px;
      padding: 10px 14px;
    }
  }

/* ========== Featured Blog Section ================= */
.featured-blogs-section .section-title{
 
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .featured-blogs-section .section-title{
     font-size: 26px;
  }
  .featured-blogs-section .post-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Inter';
  }

}
/* ================== Subscription Sections ========================= */

  
.subscription-container {
    background-color: #000;
    padding: 50px;
    height: 500px;
    border-radius: 30px;
}
.cta-title {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
}
.cta-text {
    color: var(--white);
    font-family: Inter, sans-serif;
    
}
.subscription-container .email-form {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    max-width: 500px;
    margin: 0;
    padding: 5px;
  }
  
  .email-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #000;
  }
  
  .email-form button {
    background-color: var(--heading);
    color: var(--white);
    letter-spacing: -.01em;
    border: none;
    padding: 1px 15px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius:15px;
    transition: background 0.3s;
  }
  
  .email-form button:hover {
    background-color: #1a1a1a;
  }
  
  .email-form i {
    font-size: 16px;
  }
  .featured-post {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .category-tag {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .featured-post h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .post-meta {
    display: flex;
    gap: 15px;
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .read-more {
    z-index: 1;
    border: 1px solid var(--heading);
    background-color: var(--heading);
    color: #fff;
    letter-spacing: -.01em;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    line-height: 122%;
    text-decoration: none;
    transition: all .3s linear;
    display: inline-flex;
    position: relative;
    overflow: hidden;
  }
  
  .read-more:hover {
    color: #1a252f;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .subscription-container {
      flex-direction: column;
      border-radius: 0px;
      padding: 15px;
      overflow: hidden;
      height: auto;
      padding-bottom: 110px;
    }
    .cta-title{
      font-size: 26px;
    }
    .subscription-form {
      flex-direction: column;
    }
    .email-form input {
      padding: 10px 4px;
    }
    .subscription-form button {
      width: 100%;
      padding: 10px;
    }
    .subscription-container .post-stack-container{
      position: relative;
      left: -70px;
    }

  }


/*  ----------  Subscription slider ------------ */


















  
/* ========= Style for Article Page ================ */

/* ---- Banner section --------- */
.artcle-banner {
    background: #f3f3f3;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
  .artcle-banner {
    min-height: 30vh;

}

}


.artcle-banner h2{
    color: var(--primary-color);
    letter-spacing: -.06em;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: Poppins, sans-serif;
    font-size: 78px;
    font-weight: 600;
    line-height: 120%;
}




.featured-image {
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.image-wrapper:hover .featured-image {
    transform: scale(1.05);
}

.category-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: var(--primary-color);
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 2;
}

.meta.d-flex.align-items-center.text-muted.mb-2.small {
    font-weight: 600;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    gap: 5px;
    padding: 5px 14px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s ease;
}
i.bi.bi-arrow-right {
    font-size: 20px;
    font-weight: bold;
}
.card-read-more-btn {
    background: var(--primary-color);
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    gap: 5px;
    padding: 5px 14px;
    border: 1px solid #000;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s ease;
}
.card-read-more-btn:hover {
  color: #fff;
}
.card-read-more-btn {
    background: var(--primary-color);
    text-decoration: none;
    color: #fff;
}
.read-more-btn:hover {
    background: var(--primary-color);
    text-decoration: none;
    color: #fff;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    margin: 0 6px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
}

.pagination-wrapper .current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}


/* ===================== Single Post Page ============================ */

.post-category {
    background-color: #f15b2a;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.post-meta-top i {
    margin-right: 4px;
    color: #888;
}

.featured-image-full img {
    border-radius: 20px !important;
    object-fit: cover;
    max-height: 600px;
}


.post-navigation a{
    text-decoration: none;
    color: #000;
    font-size: 19px;
    font-weight: 500;
    border: 2px solid;
    padding: 6px 33px;
    border-radius: 10px;
}
.post-navigation a:hover{
    background-color: #000;
    color: #fff;
}





.related-posts .card img {
    border-radius: 10px;
    object-fit: cover;
    height: 180px;
}
.related-posts h3 {
    font-weight: bold;
    margin-bottom: 20px;
}



  






.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.insta-slider {
  display: flex;
  width: max-content;
  animation: scrollLoop 40s linear infinite;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.insta-image {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  height: 220px;
  overflow: hidden;
  border-radius: 15px;
}

.insta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  filter: grayscale(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  border-radius: 15px;
}

.insta-image:hover .overlay {
  transform: scale(1);
  opacity: 1;
}

.overlay i {
  color: #fff;
  font-size: 2rem;
  z-index: 2;
}

@media (max-width: 768px) {
  .insta-image {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .insta-image {
    width: 150px;
    height: 150px;
  }

  .insta-slider {
    animation-duration: 15s;
  }
}












/* ==================================================================== */
/* ================================= Footer Design ======================== */
/* ==================================================================== */
.site-footer{
  background-color: #000;
  padding-bottom: 50px;
}
.site-footer .footer-con .footer-heading{
  color:#fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 40px;
}
.site-footer .footer-con{
  text-align: center;
}
.site-footer .footer-con .footer-text{
  color:#fff;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 16px;
}
.site-footer .footer-menu {
  text-align: center;
  max-width: 580px;
  margin-top: 30px;
}
.site-footer .footer-menu ul li{
  display: inline;
}
.site-footer .footer-menu ul li a{
  display: inline-block;
  padding: 8px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 16px;
}



.site-footer{
    margin-top: 70px;
    padding-top: 90px !important;
}
.footer-heading{
    color:#f3f3f3;
}
.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #fff;
    text-decoration: underline;
}
.site-footer .email-form {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  max-width: 500px;
  margin: 0 auto;
  padding: 5px;
}


.newsletter-form button {
    border-radius: 6px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
    width: 0px I !important;
}

.newsletter-form button:hover {
    background-color: #333;
}

@media (max-width: 575.98px) {
  .site-footer .footer-con .footer-heading{
    font-size: 26px;
  }

}
/* ========= Footer left post  ===============*/
#footer-left-post .custom-post-box {
  transform: rotate(-10deg);
}
#footer-left-post .custom-post-box:hover {
  transform: rotate(-5deg) scale(1.01);
}
.custom-post-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transform: rotate(10deg);
  transition: transform 0.3s ease;
  padding: 10px;
}

.custom-post-box:hover {
  transform: rotate(5deg) scale(1.01);
}

.post-thumbnail-wrapper {
  position: relative;
}

.post-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.post-title {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 14px;
  color: #444;
}

.btn-dark {
  background-color: #000;
  color: #fff;
  border: none;
}

.btn-dark:hover {
  background-color: #222;
}


/* Footer logo part */

.footer-logo-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 575.98px) {
  div#footer-left-post, div#footer-right-post {
    display: none;
}

}



/* Developer Info */
.developer-info {
  display: flex;
  align-items: center;
  justify-content: end;
}
.developer-info  a{
  color:#e0e0e0;
  text-decoration: none;
  text-align: right;
}