* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #333;
    color: #fff;
}

header .logo {
    font-size: 24px;
}

header nav {
    position: relative;
}

header .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

header .nav-list {
    list-style: none;
    display: flex;
}

header .nav-list li {
    margin: 0 10px;
}

header .nav-list li a {
    color: #fff;
    text-decoration: none;
}

.hero img {
    width: 100%;
    height: auto;
}

.container {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 10px;
    flex: 1;
    transition: all 0.3s ease;
}

.sidebar {
    padding: 10px;
    background: #f4f4f4;
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    flex: 0 0 50px;
}

.content {
    padding: 10px;
    display: grid;
    grid-template-rows: repeat(3, auto) auto;
    gap: 20px;
}

.section {
    padding: 0px;
    background: #fff;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.split-left {
    padding: 10px;
    background: #fff;
	margin-left:20%;
}
.split-right {
    padding: 10px;
    background: #fff;
	height:165px;
	margin-right:20%;
}

footer {
    padding: 10px;
    background: #f4f4f4;
    color: #808080;
    text-align: center;
   /* position: sticky;*/
   /* bottom: 0;*/
    width: 100%;
	min-height:150px;
}

/* Responsive Design */
@media (max-width: 768px) {
	
		.split-right{
		height:165px;
		margin:0;
		}
		
		.split-left {
			margin:0;
		}
	
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
    }
    .left-sidebar {
        order: -1;
    }
    .right-sidebar {
        order: 1;
    }
    header .nav-toggle {
        display: block;
    }
    header .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #333;
        width: 100%;
    }
    header .nav-list.active {
        display: flex;
    }
    .split-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header .nav-list li {
        margin: 5px 0;
        text-align: center;
    }
	
		.split-right{
		height:150px;
		margin:0;
		}

		
		.split-left {
			margin:0;
		}
}
.borderLatestNews{
	border-left: 6px solid #1f2d5f !important;
	margin:0 0 18px 0;
	padding:10px 20px 10px 20px;
	}
	
	a {
	text-decoration: none;
	}

html,body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto", sans-serif;
}

h4 {
	color:#1f2d5f;
	font-size: 20px;
    margin: 10px 0px 10px 0px;
	}


p {
	margin: 10px 0px 0px 0px;
	}

h3 {
	color:#8f3e3e;
	margin:15px 0px;
}


.w3-sidebar {
  z-index: 3;
  width: 250px;
  top: 43px;
  bottom: 0;
  height: inherit;
}

.w3-theme {
    color: #fff !important;
    background-color: #8f3e3e !important;
	
}

.borderLeft{
	background-color: #e9f6f48a !important;
	border-left: 6px solid #1f2d5f !important;
	margin:0 0 18px 0;
	padding:10px 20px 20px 20px;
	}
	
	
li {
position: relative;
  padding-left: 10px;
  margin: 10px 15px;
	}


.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
	height:300px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    display: block;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}




@media only screen and (max-width: 400px) {
	.split-right{
		height:145px;
		margin:0;
		}
}



/* events  */

.event {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            margin: 15px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
			
        }
        .event img {
            max-width: 90%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        .event-details {
            flex-grow: 1;
        }
        .event h2 {
            margin: 0;
            color: #007BFF;
        }
        .event p {
            margin: 10px 0;
        }
        .date {
            font-weight: bold;
            font-size: 1.2em;
            color: #FF5733; /* Emphasized color */
        }
        @media (min-width: 600px) {
            .event {
                flex-direction: row;
                text-align: left;
            }
            .event img {
                max-width: 150px;
                margin-bottom: 0;
                margin-right: 15px;
            }
        }
		
/* events end  */





