/* Reset default margin and padding */
body,
h1,
h2,
h3,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    /* Adjust height as needed */
    width: auto;
    margin-right: 20px;
}

.logo {
    display: flex;

}
.logo-a{
    text-decoration: none;
    color: #000;
}

.logo h1:hover {
    color: #ffcc00;
    cursor: pointer;
    pointer-events: auto;


}


.active {
    color: #ffcc00;
    font-weight: bold;
}

.heading-tag{
    text-align: center;
    margin-top: 30px;
    font-size: 30px;
}
.heading-color{
    color: orangered;
}

header {
    margin-top: 20px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

#des-sec-1{
    margin: 100px 50px;
}

#mvisit-sec-1{
    margin: 200px 50px;
}
.img-border-radius{
    border-radius: 5%;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}