
	/* Universal box-sizing rule */
*, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

/* Basic styling for the body */
body {
            font-family: 'Arial', sans-serif;
            line-height:1.6 ;
            color: #333;
            background-color: #e0dcdc;
            display: flex; /* Make body a flex container */
            flex-direction: column; /* Stack header, nav, main, footer vertically */
            min-height: 100vh; /* Ensure body takes full viewport height */
        }

       /* Header with Monogram */
    header {
      background: linear-gradient(-90deg,#027a02, #fff);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0px 20px;
      border-bottom: 4px solid #fff;
    }
 /* Logo Image */
    header img.logo {
	width:120px;
      height:100px;
      border-radius 10px;
      box-shadow 0 4px 8px rgba(0,0,0,0.2);
	  
    }
 



/* Navigation styles */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Use flex-wrap on a single line */
    background-color:  #2c3e50;
    padding: 1px;
    border-right: 1px solid #ccc;
    transition: background-color 0.3s ease-in-out;
}

/* Flexible link button styles */
.flex-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0px 10px;
    border-radius: 10px;
    background-color:#3498db;
    text-decoration: none;
    margin-left: 5px;
    margin-top: 2px;
    margin-bottom: 4px;
}

.flex-link-btn: {
    background-color: #CCD4BC;
}

.flex-link-btn:active {
    background-color: #2e7d34;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.quotes {
            background: linear-gradient(90deg, #6a5acd, #483d8b);
            color: white;
            padding: 0px 0;
            overflow: hidden;
            position: relative;
        }
        
        .quotes-container {
            display: flex;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }
        
        .quotes p {
            display: inline-block;
            padding: 0 0px;
            font-size: 0px;
            font-weight: 100;
        }
 @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }



/* Main content styles */
main {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 10px;
	
}

/* Content area and column styles */
.content-area {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin: 5px; /* Space between content and sidebar */
}

.column {
	
    width: 90%; /* Default width for larger screens */
    margin: 2.5%; /* Added semicolon for margin */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
	background-color: #fff;
	border-color:1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.column img {
           display: block;
            	max-width: 60%; /* Make images responsive within their columns */
            	height: auto;
            	border-radius: 5px;
             	margin: 10px auto;
            	box-shadow: 0 2px 5px rgba(0,0,0,0.1);

        }
		
		.column article {
            text-align: justify; /* Use CSS for justification */
            margin: 30px;
		
			
        }
		
.whatsapp-button {
            display: flex;
            align-items: center;
            background-color: #25D366;
            color: white;
            padding: 8px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            width:60px;
            height:60px;
		
        }
        
        .whatsapp-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        
        .whatsapp-button i {
            margin-right: 8px;
        }
        
        .moveable-container {
            position: fixed;
            left:20px;
            top: 70%;
            transform: translateY(-30%);
            z-index: 1000;
            cursor: move;
            user-select: none;
        }
        
        .image-preview {
            max-width: 200px;
            margin: 10px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
/* Sidebar styles */
.sidebar {
    width: 350px; /* Fixed width for sidebar */
    padding: 10px;
    background-color: #f4f4f4
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	sidebar-bg: #f9f9f9
	 border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			border-color: #ddd;
	
}
/* Sidebar */
        .sidebar {
           display: flex;
            flex-direction: column;
			padding:1px;
            gap: 30px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		padding:10px;
		margin:10px;
			
        }

        .widget-title {
            background-color: #2c3e50;
            color: white;
            padding: 15px 20px;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px
			padding:5px;
			 border-radius: 5px;
			

        }

        .widget-content {
            padding: 20px;
			padding:2px;
			
        }

        .sidebar-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
			border:1px solid black
			padding:2px;
			
        }

        .sidebar-image:hover {
            transform: scale(1.02);
        }

        .popular-posts {
            list-style: none;
			
        }

        .popular-posts li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
			padding:2px;
			
        }

        .popular-posts li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
			padding:2px;
			
        }

        .popular-post-image {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 15px;
			padding:2px;
        }

        .popular-post-content {
            flex: 1;
        }

        .popular-post-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.3;
            color: #2c3e50;
			padding:2px;
        }


/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color:#063d0a;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .column {
        width: 100%; /* Stack columns on smaller screens */
        margin: 0; /* Corrected margin to stack properly */
    }

    .sidebar {
        width: 100%; /* Sidebar takes full width below the content */
        margin-left: 0; /* Remove left margin */
    }

    main {
        flex-direction: column; /* Stack content and sidebar */
    }
}

	
	
	