 :root {
            --primary: #0056b3;
            --primary-dark: #003d82;
            --secondary: #f8f9fa;
            --accent: #ff6b00;
            --text: #333;
            --light-text: #6c757d;
            --border: #dee2e6;
            --success: #28a745;
            --danger: #dc3545;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 15px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide-content {
            max-width: 800px;
            padding: 0 20px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-1 {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.8));
        }
        
        .slide-2 {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.8));
        }
        
        .slide-3 {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.8));
        }
        
        .slide h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .slide p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #e05e00;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: white;
            transform: scale(1.3);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .modal-content {
            background-color: white;
            max-width: 700px;
            margin: 50px auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
            animation: modalOpen 0.4s ease;
        }
        
        @keyframes modalOpen {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.8rem;
            color: var(--light-text);
            cursor: pointer;
            transition: color 0.3s;
            background: none;
            border: none;
            z-index: 10;
        }
        
        .close-modal:hover {
            color: var(--primary);
        }
        
        .modal-header {
            padding: 25px 30px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 10px 10px 0 0;
        }
        
        .modal-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--light-text);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.1rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(to bottom right, #f0f7ff, #e6f2ff);
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;

        }
        
        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .testimonial-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-content::before {
            content: "";
            position: absolute;
            top: -30px;
            left: 20px;
            font-size: 100px;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--light-text);
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.3);
        }
        
        /* Blog Section */
        .blog {
            padding: 80px 0;
            background-color: white;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .blog-img {
            height: 220px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--accent);
        }
        
        .blog-date {
            margin-right: 20px;
        }
        
        .blog-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .blog-excerpt {
            color: var(--light-text);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .blog-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .blog-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .blog-link:hover {
            color: var(--accent);
        }
        
        .blog-link:hover i {
            transform: translateX(5px);
        }
        
        /* Tracking Results */
        .tracking-result {
            margin-top: 30px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .status-bar {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 30px 0;
        }
        
        .status-bar::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--border);
            z-index: 1;
        }
        
        .status-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            position: relative;
        }
        
        .status-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .status-step.active .status-dot {
            background-color: var(--success);
            transform: scale(1.2);
        }
        
        .status-step.completed .status-dot {
            background-color: var(--primary);
        }
        
        .shipment-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .detail-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
        }
        
        .detail-card h4 {
            margin-bottom: 10px;
            color: var(--primary);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        
        .detail-card h4 i {
            margin-right: 8px;
            color: var(--accent);
        }
        
        .movement-history {
            margin-top: 30px;
        }
        
        .history-item {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .history-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e6f2ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        .history-content h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .history-content p {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to right, var(--primary-dark), #002856);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-column ul li a i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }
        
        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-column p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 1.2rem;
            width: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Alert Messages */
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .alert i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }
        
        /* Admin Panel */
        .admin-panel {
            padding: 40px 0;
            min-height: 100vh;
            background-color: #f5f7fa;
        }
        
        .admin-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .admin-header {
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            color: white;
            padding: 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .admin-main {
            background: white;
            padding: 30px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .admin-nav {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .admin-nav-item {
            padding: 12px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .admin-nav-item.active {
            border-bottom: 3px solid var(--accent);
            color: var(--accent);
        }
        
        .admin-section {
            display: none;
        }
        
        .admin-section.active {
            display: block;
        }
        
        .admin-form {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .admin-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .admin-table th,
        .admin-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .admin-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .admin-table tr:hover td {
            background-color: #f5f7fa;
        }
        
        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .status-processing {
            background-color: #e6f2ff;
            color: var(--primary);
        }
        
        .status-intransit {
            background-color: #fff4e6;
            color: #e67700;
        }
        
        .status-delivered {
            background-color: #d3f9d8;
            color: var(--success);
        }
        
        .btn-admin {
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            border: none;
            font-size: 0.9rem;
        }
        
        .btn-edit {
            background-color: #e6f2ff;
            color: var(--primary);
        }
        
        .btn-delete {
            background-color: #ffe6e6;
            color: var(--danger);
            margin-left: 5px;
        }
        
        .btn-logout {
            background-color: #ffe6e6;
            color: var(--danger);
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 500;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .slide h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 12px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-slider {
                height: 70vh;
            }
            
            .slide h2 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .logo {
                margin-left: 10px;
            }
            
            .logo img {
                height: 40px;
            }
            
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-img {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .slide h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                width: 100%;
                padding: 12px;
                font-size: 1rem;
            }
            
            .status-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .status-bar::before {
                display: none;
            }
            
            .status-step {
                flex-direction: row;
                margin-bottom: 20px;
            }
            
            .status-dot {
                margin-right: 15px;
                margin-bottom: 0;
            }
            
            .logo h1 {
                font-size: 1.3rem;
            }
            
            .mobile-menu-btn {
                margin-right: 10px;
            }
            
            .admin-nav {
                flex-wrap: wrap;
            }
            
            .admin-nav-item {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
		
		
		  /* Header */
        .blog-header {
            background: linear-gradient(135deg, var(--primary-color), #1a2530);
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            margin-bottom: 50px;
        }

        .blog-header h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .post-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Blog Layout */
        .blog-layout {
            display: flex;
            gap: 40px;
            padding: 20px 0 60px;
        }

        .blog-content {
            flex: 1;
            min-width: 0;
        }

        .blog-sidebar {
            width: 320px;
        }

        /* Blog Post */
        .blog-post {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            margin-bottom: 40px;
        }

        .post-thumbnail {
            position: relative;
            overflow: hidden;
        }

        .post-thumbnail img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: var(--transition);
        }

        .post-thumbnail:hover img {
            transform: scale(1.05);
        }

        .post-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--secondary-color);
            color: white;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .post-content {
            padding: 30px;
        }

        .post-content p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .post-footer {
            padding: 20px 30px;
            border-top: 1px solid #eee;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .share-section h6 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .social-share {
            display: flex;
            gap: 10px;
        }

        .social-share a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-color);
            transition: var(--transition);
        }

        .social-share a:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Comments Section */
        .comments-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            margin-bottom: 40px;
        }

        .comments-list {
            margin-top: 30px;
        }

        .comment-item {
            display: flex;
            gap: 20px;
            padding: 25px 0;
            border-bottom: 1px solid #eee;
        }

        .comment-item:last-child {
            border-bottom: none;
        }

        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-content {
            flex: 1;
        }

        .comment-author {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .comment-meta {
            font-size: 0.85rem;
            color: var(--gray-color);
            margin-bottom: 10px;
        }

        .comment-text {
            margin-bottom: 10px;
        }

        .comment-reply {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--secondary-color);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* Comment Form */
        .comment-form-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .required {
            color: var(--accent-color);
        }

        /* Sidebar */
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }

        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .search-form {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .search-button {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 45px;
            background: none;
            border: none;
            color: var(--gray-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .search-button:hover {
            color: var(--secondary-color);
        }

        .recent-posts {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            align-items: center;
            transition: var(--transition);
            padding: 10px;
            border-radius: var(--border-radius);
        }

        .recent-post:hover {
            background: #f8f9fa;
        }

        .recent-post-thumb {
            width: 80px;
            height: 80px;
            border-radius: var(--border-radius);
            overflow: hidden;
            flex-shrink: 0;
        }

        .recent-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .recent-post:hover .recent-post-thumb img {
            transform: scale(1.1);
        }

        .recent-post-content {
            flex: 1;
        }

        .recent-post-title {
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }


        .recent-post-title a {
            color: var(--dark-color);
        }

        .recent-post-title a:hover {
            color: var(--secondary-color);
        }

        .recent-post-date {
            font-size: 0.85rem;
            color: var(--gray-color);
        }

        /* Categories Widget */
        .categories-list {
            list-style: none;
        }

        .categories-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .categories-list li:last-child {
            border-bottom: none;
        }

        .categories-list a {
            display: flex;
            justify-content: space-between;
            color: var(--dark-color);
        }

        .categories-list a:hover {
            color: var(--secondary-color);
        }

        .category-count {
            background: #f1f5f9;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Tags Widget */
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-link {
            display: inline-block;
            padding: 5px 15px;
            background: #f1f5f9;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--gray-color);
            transition: var(--transition);
        }

        .tag-link:hover {
            background: var(--secondary-color);
            color: white;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .blog-layout {
                flex-direction: column;
            }
            
            .blog-sidebar {
                width: 100%;
            }
            
            .post-thumbnail img {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .blog-header h1 {
                font-size: 2.2rem;
            }
            
            .post-thumbnail img {
                height: 300px;
            }
            
            .post-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .comment-item {
                flex-direction: column;
            }
            
            .comment-avatar {
                margin-bottom: 15px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .blog-header {
                padding: 80px 0 40px;
            }
            
            .blog-header h1 {
                font-size: 1.8rem;
            }
            
            .post-thumbnail img {
                height: 250px;
            }
            
            .post-content {
                padding: 20px;
            }
            
            .comments-section,
            .comment-form-section,
            .sidebar-widget {
                padding: 20px;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
		
		
		
		/* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 100px 0;
            background-color: #f8f9fa;
            position: relative;
            overflow: hidden;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-img-main {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .about-img-overlay {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 70%;
            padding: 20px;
            background: var(--primary);
            color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .about-img-overlay h4 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        /* ===== MISSION SECTION ===== */
        .mission-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 61, 130, 0.9)), url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: white;
            position: relative;
        }
        
        .mission-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .mission-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }
        
        .mission-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .mission-card p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* ===== VALUES SECTION ===== */
        .values-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow);
            border-color: var(--primary);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .value-card h4 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: var(--gray);
        }
        
        /* ===== TEAM SECTION ===== */
        .team-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-img {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-member:hover .member-img img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 25px 20px;
            text-align: center;
        }
        
        .member-info h4 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .member-info p {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-social a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .member-social a:hover {
            background: var(--primary);
            color: white;
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 991px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
            
            .about-img-overlay {
                right: 0;
                bottom: -20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-section,
            .mission-section,
            .values-section,
            .team-section {
                padding: 60px 0;
            }
            
            .about-img-overlay {
                position: relative;
                bottom: 0;
                right: 0;
                width: 100%;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .stat-value {
                font-size: 2rem;
            }
        }
