/* footer_style.css */
.blog-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.technical-blogs,
.social-blogs {
    padding: 20px;
}

.card {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h3 a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
}
/* Base Footer Styling */
footer-old{
    background: linear-gradient(135deg, #1f2937, #111827); /* Dark blue-gray gradient */
    color: #e8ebef; /* Light gray text */
    padding: 3rem 1.5rem; /* More vertical padding */
    margin-top: 4rem; /* More space above the footer */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
}

footer .max-w-7xl {
    max-width: 1200px; /* Ensure content doesn't stretch too wide */
    margin-left: auto;
    margin-right: auto;
}

ul.list-unstyled li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(70, 100%, 50%);
  margin-right: 8px;
}

/* Headings */
footer h3 {
    font-size: 1.8rem; /* Slightly larger main headings */
    font-weight: 700; /* Bold */
    margin-bottom: 1.5rem;
    color: #f9fafb; /* Lighter color for main headings */
    line-height: 1.2; /* Better line spacing for multi-line headings */
}

footer h3 .text-base {
    font-size: 1.1rem; /* Bengali sub-heading size */
    font-weight: 400; /* Normal weight for Bengali */
    color: #9ca3af; /* Slightly darker for Bengali */
    margin-top: 0.25rem; /* Space between English and Bengali heading */
    display: block; /* Ensure Bengali is on a new line */
}

footer h5 {
    font-size: 1.4rem; /* Products sub-heading size */
    font-weight: 600; /* Semi-bold */
    margin-bottom: 1rem;
    color: #f9fafb;
    line-height: 1.2;
}

footer h5 .text-base {
    font-size: 1rem; /* Bengali sub-heading size for Products */
    font-weight: 400;
    color: #9ca3af;
    margin-top: 0.25rem;
    display: block;
}

/* Paragraphs */
footer p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #d1d5db; /* Lighter gray for general text */
}

footer p .text-sm { /* For Bengali text in paragraphs */
    font-size: 0.9rem;
    color: #9ca3af;
    display: block; /* Ensure Bengali is on a new line */
}

/* Unordered Lists (Links) */
footer ul.list-unstyled {
   
    padding: 0;
    margin: 0;
}

footer ul.list-unstyled li {
    margin-bottom: 0.75rem; /* More space between list items */
}

footer ul.list-unstyled li a {
    color: #bfdbfe; /* Light blue for links */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Allows transform */
}

footer ul.list-unstyled li a:hover {
    color: #60a5fa; /* Brighter blue on hover */
    transform: translateX(5px); /* Slight movement on hover */
    text-decoration: underline;
}

/* Link pairs (English / Bengali) inside lists */
footer ul.list-unstyled li a .block {
    font-size: 1rem;
    font-weight: 500; /* Medium weight for English */
    color: #e5e7eb;
}

footer ul.list-unstyled li a .text-sm {
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 0.1rem; /* Small space between English and Bengali */
}

/* Copyright Section */
footer .border-t {
    border-color: #374151; /* Darker border */
}

footer .text-center {
    font-size: 1rem;
    color: #e0e4ec;
    margin-top: 3rem; /* More space above copyright */
}

footer .text-center .text-sm {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

/* Responsive Grid for Footer Columns */


/* Contact Button (FAB) */
.fixed.bottom-4.right-4 {
    background-color: #3B82F6 !important; /* Ensure consistent background color */
    color: white;
    border-radius: 9999px; /* Fully rounded */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.fixed.bottom-4.right-4:hover {
    background-color: #2563eb !important; /* Darker blue on hover */
    transform: translateY(-3px); /* Lift effect */
}

.fixed.bottom-4.right-4 svg {
    width: 1.5rem;
    height: 1.5rem;
}

.fixed.bottom-4.right-4 .sr-only {
    position: absolute; /* Hide visually but keep for screen readers */
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* General Link Styling (if not already defined) */
a {
    color: inherit; /* Inherit color from parent by default */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* This is a general reset for the specific class, adjust if it affects other elements */
.list-unstyled {
    list-style: none;
    padding: 0;
}

/* footer_style.css */



/* Use Flexbox or Grid for the container */
.footer-container {
    display: flex;
    flex-direction: column; /* Stacks items vertically on mobile */
    gap: 2rem; /* Spacing between sections */
}

.footer-column {
    /* Basic styling for each column on mobile */
    margin-bottom: 1.5rem;
}

.footer-column h5 {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-column ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}



/* --- Footer Styles --- */
footer {
    background-color: #102943;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #60a5fa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}



@media (max-width: 575.98px) {

    /* Small devices and down */
    .banner-content {
        padding: 0.5rem 0.75rem;
    }

    .banner-title {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
        margin-right: 0.5rem;
    }

    .marquee-text {
        font-size: 0.7rem;
    }

    .content-card {
        padding: 1rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

.share-btn {
    background-color:#fb923c; /* orange color */
    color: #FFFFFF; /* white text color */
    border: none;
    padding: 10px 20px;
    border-radius: 50%;
    }
    #fab-menu > :last-child {
    background-color: #fb923c; /* orange color */
    color: #FFFFFF; /* white text color */
    padding: 10px 20px;
    border-radius: 50%;
    }
    .list-unstyled li {
    margin-bottom: 10px; /* adjust the value as needed */
    
    }

.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
}

.fab-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fab-menu a {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.fab-menu a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

.highlight {
    background-color: var(--primary-blue) !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1rem;
    }
    
    .marquee-text {
        font-size: 0.8rem;
    }
}