  .supply-section {
            margin: 50px auto;
            padding: 20px;
            margin: 0;
            background-color: #0d6390;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: #e74c3c;
            bottom: -10px;
            left: 25%;
        }
        

        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 500px;
        }
        
        .slide {
            min-width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .slide:hover img {
            transform: scale(1.05);
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .slide:hover .slide-content {
            padding-bottom: 40px;
        }
        
        .slide-content h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .slide:hover .slide-content h3 {
            transform: translateY(-5px);
        }
        
        .slide-content p {
            font-size: 16px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            color: #eee;
            transition: all 0.3s ease;
            opacity: 0.9;
        }
        
        .slide:hover .slide-content p {
            opacity: 1;
        }
        
  
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .slider-btn {
            background: rgba(255, 255, 255, 0.7);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            margin: 0 15px;
            opacity: 0;
            transform: scale(0.8);
        }
        
        .slider-container:hover .slider-btn {
            opacity: 1;
            transform: scale(1);
        }
        
        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.1);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        @keyframes fadeIn {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }
        
        .slide.active {
            animation: fadeIn 0.8s ease;
        }
        

        @media (max-width: 768px) {
            .slider {
                height: 400px;
            }
            
            .slide-content h3 {
                font-size: 22px;
            }
            
            .slide-content p {
                font-size: 14px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
















            .main-content {
            flex: 1;
        }
        
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: right;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #e74c3c;
        }
        
        .footer-about {
            line-height: 1.8;
            opacity: 0.9;
        }
        
        .footer-contact h3, 
        .footer-social h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .footer-contact h3::after,
        .footer-social h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background-color: #e74c3c;
            bottom: -8px;
            right: 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            justify-content: flex-end;
        }
        
        .contact-item i {
            margin-left: 10px;
            color: #e74c3c;
            font-size: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background-color: #e74c3c;
            transform: translateY(-3px);
        }
        
        .social-link i {
            font-size: 18px;
            color: white;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
    
        a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        a:hover {
            color: #0d6390;
        }
        
   
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-contact h3::after,
            .footer-social h3::after {
                right: 25%;
            }
        }