/* 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Poppins, sans-serif;
        } */

        /* Footer styles */
        /* .footer {
            background: linear-gradient(to right, #e67e22, #f39c12);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }

        .footer-logo-section {
            width: 25%;
        }

        .footer-logo {
            background-color: white;
            padding: 10px;
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .footer-description {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-icon {
            background-color: white;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icon img {
            width: 20px;
            height: 20px;
        }

        .footer-links-section {
            width: 20%;
        }

        .footer-heading {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-contact {
            width: 25%;
        }

        .contact-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-icon {
            margin-right: 10px;
            font-size: 18px;
            min-width: 20px;
        }

        .contact-text {
            font-size: 14px;
            line-height: 1.4;
        }

        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 30px auto;
            max-width: 1160px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            max-width: 1160px;
            margin: 0 auto;
            font-size: 12px;
            padding: 0 20px;
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
        } */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Poppins, sans-serif;
        }
        
        /* Footer styles */
        .footer {
            background: linear-gradient(to right, #e67e22, #f39c12);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            flex-wrap: wrap;
        }
        
        .footer-logo-section {
            width: 45%;
        }
        
        .footer-logo {
            background-color: transparent;
            padding: 10px;
            width: 140px;
            height: 140px;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }
        
        .footer-description {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .social-icon {
            background-color: white;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-icon img {
            width: 20px;
            height: 20px;
        }
        
        .footer-links-section {
            width: 20%;
        }
        
        .footer-heading {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-contact {
            width: 25%;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .contact-icon {
            margin-right: 10px;
            font-size: 18px;
            min-width: 20px;
        }
        
        .contact-text {
            font-size: 14px;
            line-height: 1.4;
        }
        
        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 30px auto;
            max-width: 1160px;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            max-width: 1160px;
            margin: 0 auto;
            font-size: 12px;
            padding: 0 20px;
        }
        
        .footer-bottom a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
        }
        
        /* Media queries for tablet */
        @media screen and (max-width: 992px) {
            .footer-logo-section {
                width: 35%;
            }
            
            .footer-links-section {
                width: 25%;
            }
            
            .footer-contact {
                width: 35%;
            }
        }
        
        /* Media queries for mobile */
        @media screen and (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }
            
            .footer-logo-section, 
            .footer-links-section, 
            .footer-contact {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-bottom a {
                margin: 0 10px;
            }
                        .footer-logo {
                width: 100px;
                height: 100px;
            }
            
            .footer-bottom-links {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 10px;
            }
        }
        
        /* Media queries for very small screens */
        @media screen and (max-width: 480px) {
            .footer {
                padding: 30px 0 15px;
            }
            
            .footer-heading {
                font-size: 16px;
            }
            
            .footer-logo {
                width: 80px;
                height: 80px;
            }
            
            .social-icons {
                justify-content: center;
            }
        }