
body {
    background-image: url("images/sno.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-attachment:fixed;
    overflow-x: hidden;
    color: #333;
    margin-top: 100px;
}


.container {
    max-width: 1200px; /* Increased width to fit larger cards */
    margin: 0 auto;
    padding: 20px;
}

.heading-home .heading-title{
    font-size: 60px;
    color: white;
    text-transform: uppercase;
	text-align: center;
    text-shadow: 0 2px 0.5px rgb(3, 115, 79);
    margin-bottom: 30px;
}   

.conclusion {
    text-align: left;
    margin-bottom: 45px;
    font-size: 21px; 
    color: #ffffff; 
    background-color: black; 
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); 
    padding: 30px; 
    transition: transform 0.2s ease;
    font-family: Book Antiqua;
	width:1170px;
}

.conclusion ul {
    list-style-type: circle; 
    padding-left: 20px; 
    font-family: Book Antiqua;
}

.conclusion li {
    margin-bottom: 15px; 
    font-family: Book Antiqua;
}

.conclusion li ul {
    padding-left: 20px; 
    font-family: Book Antiqua;
}

.conclusion li ul li {
    list-style-type: square; 
    margin-bottom: 10px; 
    font-family: Book Antiqua;
}


.conclusion:hover{
    transition: 0.5s;
    transform: scale(1.02); 
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 100px;
}

.card {
    width: calc(33.33% - 30px); 
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
}

.card-content {
    padding: 30px; 
    flex-grow: 0; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.card-content h1 {
    font-size: 28px; 
    font-weight: 800;
    margin-bottom: 14px;
}

.card-content p {
	font-family : Book Antiqua;
	line-height: 1.2;
    font-size: 20px; 
    margin-bottom: 25px;
    color: #555;
}

.overview-container {
    position: relative;
    padding: 20px;
	
}

.overview-data {
    text-align: left;
	margin:45px auto;
	margin-top:-15px;
    margin-bottom: 45px;
    font-size: 21px; 
    color: #ffffff; 
    background-color: black; 
	width:1170px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); 
    padding: 30px; 
    transition: transform 0.2s ease;
    font-family: Book Antiqua;

}


.overview-data:hover{
    transition: 0.5s;
    transform: scale(1.02); 
}


.overview-main-title {
    position: relative; 
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    color: white;
    background-color: rgba(0,19,7,255); 
    padding: 10px 20px; 
    width: 1800px;
    box-shadow: 0 0 10px rgb(111, 112, 110);
    z-index: 10; 
}

#goTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    z-index: 1000;
}
#goTopBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#goTopBtn:hover {
    transform: scale(1.1);
}