/* Import Hind Siliguri Font for Bengali Text */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

/* ============================================
   FOOTER FEATURES SECTION (TOP WHITE SECTION)
   ============================================ */

.footer-features-top {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-features-top .container {
    max-width: 1200px;
}

/* Feature Item - Horizontal Layout */
.feature-item-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    min-height: 100px;
}

.feature-item-horizontal:hover {
    transform: translateY(-5px);
}

/* Icon Styling - Simple Circle */
.feature-icon-simple {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item-horizontal:hover .feature-icon-simple {
    border-color: #006e18;
    transform: rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 110, 24, 0.2);
}

.feature-icon-simple i {
    font-size: 28px;
    color: #333;
}

/* Feature Text Content */
.feature-content-horizontal {
    flex: 1;
    text-align: left;
}

.feature-title-horizontal {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   MAIN FOOTER SECTION (LIGHT SECTION)
   ============================================ */

footer {
    background: #f8f9fa;
    color: #333;
    position: relative;
}

/* Footer Main Content */
.footer-main {
    padding: 50px 0 40px;
    background: #f8f9fa;
    border-top: 2px solid #e0e0e0;
}

.footer-main .container {
    max-width: 1400px;
}

/* Footer Column Styling */
.footer-column {
    padding: 0 20px;
}

/* HEAD OFFICE Section */
.footer-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.footer-heading i {
    font-size: 20px;
    color: #006e18;
}

.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info-list li i {
    color: #006e18;
    margin-top: 3px;
    min-width: 18px;
}

.footer-info-list li a {
    color: #555;
    transition: all 0.3s ease;
}

.footer-info-list li a:hover {
    color: #006e18;
    padding-left: 5px;
}

/* PAGE Section */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    display: block;
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #006e18;
    padding-left: 10px;
}

/* Logo Section (Right Side) */
.footer-logo-section {
    text-align: center;
    padding: 20px;
}

.footer-logo-section img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-logo-section img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.footer-tagline {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 16px;
    color: #555;
    font-style: normal;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}

/* Follow Us Section */
.follow-us-section {
    margin-top: 25px;
}

.follow-us-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    justify-content: flex-start;
    color: #333;
}

.follow-us-title i {
    color: #ffd700;
}

/* Social Icons */
.social-icons-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

.social-icon-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Social Media Colors */
.social_list .fa-facebook-f,
.social-icon-link .fa-facebook-f {
    padding: 5px 8px;
    color: white;
    background-color: #3b5998;
}

.social_list .fa-facebook-f:hover,
.social-icon-link:has(.fa-facebook-f):hover {
    background-color: #2d4373;
}

.social_list .fa-twitter,
.social-icon-link .fa-twitter {
    padding: 5px 8px;
    color: white;
    background-color: #1da1f2;
}

.social_list .fa-twitter:hover,
.social-icon-link:has(.fa-twitter):hover {
    background-color: #0c85d0;
}

.social_list .fa-instagram,
.social-icon-link .fa-instagram {
    padding: 5px 8px;
    color: white;
    background-color: #e4405f;
}

.social_list .fa-instagram:hover,
.social-icon-link:has(.fa-instagram):hover {
    background-color: #bc2a8d;
}

.social_list .fa-linkedin,
.social-icon-link .fa-linkedin {
    padding: 5px 8px;
    color: white;
    background-color: #0077b5;
}

.social_list .fa-linkedin:hover,
.social-icon-link:has(.fa-linkedin):hover {
    background-color: #005983;
}

.social_list .fa-whatsapp,
.social-icon-link .fa-whatsapp {
    padding: 5px 8px;
    color: white;
    background-color: #25d366;
}

.social_list .fa-whatsapp:hover,
.social-icon-link:has(.fa-whatsapp):hover {
    background-color: #128c7e;
}

.social_list .fa-youtube,
.social-icon-link .fa-youtube {
    padding: 5px 8px;
    color: white;
    background-color: #ff0000;
}

.social_list .fa-youtube:hover,
.social-icon-link:has(.fa-youtube):hover {
    background-color: #cc0000;
}

/* Footer Bottom - COPYRIGHT ONLY (DARK) */
.footer-bottom {
    background: #0A0036;
    padding: 20px 0;
    border-top: 2px solid #ddd;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
}

/* Divider Line Between Sections */
.footer-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.footer-column {
    position: relative;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 35px 0 30px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-logo-section img {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .footer-features-top {
        padding: 30px 0;
    }
    
    .feature-item-horizontal {
        margin-bottom: 20px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 20px 10px;
    }
    
    .feature-content-horizontal {
        text-align: center;
    }
    
    .feature-icon-simple {
        width: 55px;
        height: 55px;
        min-width: 55px;
        margin: 0 auto 12px;
    }
    
    .feature-icon-simple i {
        font-size: 26px;
    }
    
    .feature-title-horizontal {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-logo-section img {
        max-width: 150px;
    }
    
    /* Social icons centered on mobile */
    .social-icons-footer {
        justify-content: center;
    }
    
    .follow-us-title {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-features-top .row {
        margin: 0 -5px;
    }
    
    .footer-features-top .row > [class*='col-'] {
        padding: 0 5px;
    }
    
    .feature-item-horizontal {
        margin-bottom: 15px;
        padding: 15px 8px;
    }
    
    .feature-title-horizontal {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .feature-icon-simple {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-bottom: 10px;
    }
    
    .feature-icon-simple i {
        font-size: 24px;
    }
}

/* Smooth Animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Animation for Footer */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease both;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}