
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background: #f9f9f9;
        }

        /* Header Styling */
       

        header h1 {
            font-size: 1.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .menu-icon, .search-icon {
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .menu-icon:hover, .search-icon:hover {
            color: #ffd700;
        }

        /* Sticky Left-Side Menu (Desktop) */
        .sidebar {
            display: none;
            width: 300px;
            height: calc(100vh - 4rem);
            background: linear-gradient(180deg, #1a2a44, #2e4a88);
            position: fixed;
            top: 4rem;
            left: 0;
            z-index: 900;
            color: white;
            padding: 1.5rem;
            overflow-y: auto;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        }

        .sidebar .logo {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .sidebar .logo img {
            width: 120px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar ul li {
            margin: 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sidebar ul li i {
            font-size: 0.9rem;
            color: #ffd700;
        }

        .sidebar ul li a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.3s;
        }

        .sidebar ul li a:hover {
            color: #ffd700;
        }

        /* Off-Canvas Menu (Mobile) */
        .off-canvas {
            width: 280px;
            height: 100%;
            background: #1a2a44;
            position: fixed;
            top: 0;
            left: -280px;
            transition: left 0.3s ease;
            z-index: 2000;
            color: white;
            padding: 1.5rem;
            overflow-y: auto;
        }

        .off-canvas.active {
            left: 0;
        }

        .off-canvas .logo {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .off-canvas .logo img {
            width: 120px;
            height: auto;
        }

        .off-canvas ul {
            list-style: none;
        }

        .off-canvas ul li {
            margin: 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .off-canvas ul li i {
            font-size: 1rem;
            color: #ffd700;
        }

        .off-canvas ul li a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.3s;
        }

        .off-canvas ul li a:hover {
            color: #ffd700;
        }

        /* Overlay for Off-Canvas */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1500;
        }

        .overlay.active {
            display: block;
        }

        /* Main Content Adjustment for Sidebar */
        .main-content {
            margin-left: 0;
        }

        /* Moving Text Section */
        .moving-text {
            background: #1a2a44;
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 300;
            width: 100%;
            overflow: hidden;
            position: relative;
            margin-top: 4rem;
            z-index: 950;
        }

        .marquee {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        
        /* Welcome Section */
        .welcome {
            text-align: center;
            padding: 3rem 1.5rem;
            background: #fff;
        }

        .welcome h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1a2a44;
            margin-bottom: 1rem;
        }

        .welcome p {
            font-size: 1.1rem;
            font-weight: 300;
            color: #555;
        }

        

      
        /* Connect With Us Header */
        .connect-header {
            background: #fff;
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .connect-header .logo img {
            width: 150px;
            height: auto;
            display: block;
            margin: 0 auto 0.5rem;
        }

        .connect-header h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1a2a44;
            margin-bottom: 0.5rem;
        }

        .connect-header .tagline {
            font-size: 1rem;
            font-weight: 300;
            color: #555;
        }

        /* Connect With Us */
        .connect {
            text-align: center;
            padding: 3rem 1.5rem;
            background: #1a2a44;
            color: white;
        }

        .connect h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: nowrap;
        }

        .social-icons a {
            color: white;
            font-size: 1.3rem;
            text-decoration: none;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: linear-gradient(135deg, #1a2a44, #2e4a88);
            transition: transform 0.3s, color 0.3s;
        }

        .social-icons a:nth-child(1) { background: linear-gradient(135deg, #1a2a44, #2e4a88); }
        .social-icons a:nth-child(2) { background: linear-gradient(135deg, #25D366, #128C7E); }
        .social-icons a:nth-child(3) { background: linear-gradient(135deg, #ffd700, #d4a017); }
        .social-icons a:nth-child(4) { background: linear-gradient(135deg, #0088cc, #005f8b); }
        .social-icons a:nth-child(5) { background: linear-gradient(135deg, #3b5998, #2a4373); }
        .social-icons a:nth-child(6) { background: linear-gradient(135deg, #e1306c, #c13584); }
        .social-icons a:nth-child(7) { background: linear-gradient(135deg, #ff0000, #cc0000); }

        .social-icons a:hover {
            color: #ffd700;
            transform: scale(1.1) rotate(10deg);
        }
      

        /* Footer */
        footer {
            background: linear-gradient(180deg, #333, #1a2a44);
            color: white;
            text-align: center;
            padding: 2.5rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 300;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        }

        footer .address {
            margin: 1rem 0;
        }

        footer .address p {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        footer .footer-links {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        footer .footer-links a {
            color: #ffd700;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.3s;
        }

        footer .footer-links a:hover {
            color: #fff;
        }

        footer p {
            margin: 0.3rem 0;
        }

        /* Back to Top Icon */
        .back-to-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, #1a2a44, #2e4a88);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, color 0.3s;
            z-index: 1000;
        }

        .back-to-top.show {
            display: flex;
        }

        .back-to-top:hover {
            color: #ffd700;
            transform: scale(1.1) rotate(10deg);
        }

        /* WhatsApp Floating Icon and Chatbox */
        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            z-index: 1000;
        }

        .whatsapp-icon {
            background: #25D366;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .whatsapp-icon:hover {
            transform: scale(1.1) rotate(10deg);
        }

        .whatsapp-chatbox {
            display: none;
            position: fixed;
            bottom: 5.5rem;
            left: 1.5rem;
            width: 280px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            z-index: 1000;
        }

        .chat-header {
            background: #128C7E;
            color: white;
            padding: 0.6rem;
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 600;
        }

        .chat-header i {
            margin-right: 0.4rem;
        }

        .chat-body {
            padding: 0.8rem;
            background: #ECE5DD;
            min-height: 120px;
        }

        .welcome-msg {
            background: #DCF8C6;
            padding: 0.6rem;
            border-radius: 8px 8px 8px 0;
            margin-bottom: 0.4rem;
            max-width: 80%;
            font-size: 0.85rem;
            font-weight: 300;
        }

        .chat-input {
            display: flex;
            padding: 0.6rem;
            background: #F0F0F0;
            align-items: center;
        }

        .chat-input input {
            flex: 1;
            padding: 0.6rem;
            border: none;
            border-radius: 15px;
            margin-right: 0.4rem;
            font-size: 0.85rem;
        }

        .chat-input button {
            background: #128C7E;
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .chat-input button i {
            font-size: 1.1rem;
        }

        .chat-input button:hover {
            background: #0A6E5F;
        }

/* 404 Error Section */
        .error-section {
            padding: 40px 20px;
            text-align: center;
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .error-section h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
        }

        .error-section p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 20px;
            max-width: 600px;
        }

        .error-section a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #333;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .error-section a:hover {
            background-color: #555;
        }
        
         /* Search Results Styles */
.search-results {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-results h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.search-term {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.no-results {
    font-size: 1.2rem;
    color: #888;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.result-card {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.result-card h3 a {
    text-decoration: none;
    color: #333;
}

.result-card h3 a:hover {
    color: #555;
}

.result-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.pagination {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
}
    


        /* Responsive Design hai */
        @media (min-width: 1024px) {
            .menu-icon {
                display: none;
            }

            .off-canvas {
                display: none;
            }

            .sidebar {
                display: block;
            }

            .main-content {
                margin-left: 300px;
            }

            .moving-text {
                width: calc(100%);
                margin-top: 75px;
            }



            .whatsapp-float {
                left: auto;
                right: 1.5rem;
            }

            .whatsapp-chatbox {
                left: auto;
                right: 1.5rem;
            }
            
        }
        
            

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.5rem;
            }


            .welcome h2 {
                font-size: 1.8rem;
            }

            .welcome p {
                font-size: 1rem;
            }

            
            .whatsapp-chatbox {
                width: 90%;
                left: 5%;
            }

            .social-icons a {
                font-size: 1.1rem;
                width: 30px;
                height: 30px;
            }

            .connect-header h2 {
                font-size: 1.8rem;
            }

            .connect-header .tagline {
                font-size: 0.9rem;
            }

        }

        @media (max-width: 480px) {
            header {
                padding: 0.8rem;
            }

            .menu-icon, .search-icon {
                font-size: 1.2rem;
            }

            .off-canvas {
                width: 80%;
                left: -80%;
            }

            header h1 {
                font-size: 1.2rem;
            }

            .welcome h2 {
                font-size: 1.5rem;
            }

            .welcome p {
                font-size: 0.9rem;
            }

            .connect h2 {
                font-size: 1.5rem;
            }

            .connect-header h2 {
                font-size: 1.5rem;
            }

            .connect-header .tagline {
                font-size: 0.85rem;
            }

            .footer .address p {
                font-size: 0.85rem;
            }

            .footer .footer-links a {
                font-size: 0.85rem;
            }
        }
    
    
      /* Header search Styles */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            background-color: #333;
            color: white;
            position: relative;
        }

        .menu-icon, .search-icon {
            cursor: pointer;
            font-size: 24px;
            margin: 0 10px;
        }

        h1 {
            margin: 0;
            flex: 1;
            text-align: center;
        }

        .search-form {
            display: flex;
            align-items: center;
            max-width: 0;
            overflow: hidden;
            transition: max-width 0.3s ease;
            background: white;
            border-radius: 5px;
        }

        .search-form input {
            padding: 8px;
            border: none;
            outline: none;
            flex: 1;
            border-radius: 5px 0 0 5px;
        }

        .search-form button {
            padding: 8px 12px;
            background: #555;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 0 5px 5px 0;
        }

        .search-form button:hover {
            background: #777;
        }

        header.search-active .search-form {s
            max-width: 300px;
        }

        @media (max-width: 768px) {
            header.search-active h1 {
                display: none;
            }

            header.search-active .search-form {
                max-width: calc(100vw - 80px); /* Adjust for icons */
            }
        }    
