* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 10%;
    background: linear-gradient(245.59deg, #f1b04c 0%, #ec9007 28.53%, #dc6601 75.52%);
}

.logo {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.navlist {
    display: flex;
}

.navlist a {
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.55s ease;
}

.navlist a:hover {
    border-bottom: 2px solid white;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #ffffff;
}

.sidebar {
	height: 100vh;
	width: 250px;
	position: fixed;
	top: 0;
	/*display: none;*/
	left: 0;
	transition: all ease-in-out 300ms;
	transform: translateX(-100%);
	background-color: #ffffff;
	padding-top: 20px;
	z-index: 1000;
}

.sidebar h2 {
	color: #000000;
	text-align: center;
	margin-bottom: 30px;
}

.sidebar ul {
	list-style-type: none;
}

.sidebar ul li {
	padding: 10px;
	text-align: center;
}

.sidebar ul li a {
	color: #000000;
	text-decoration: none;
	display: block;
}

.sidebar ul li a:hover {
	background-color: #ffffff;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(245.59deg, #f1b04c 0%, #ec9007 28.53%, #dc6601 75.52%);
}

.accordian {
    margin: 60px auto;
    width: 900px;
    padding-top: 50px;
}

.accordian li {
    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    background: #ec9007;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
        -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.accordian li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

label::before {
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"] {
    display: none;
}

.accordian .content {
    color: #ffffff;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordian input[type="radio"]:checked+label+.content {
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordian input[type="radio"]:checked+label::before {
    content: '-';
}

.contact-container {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title {
    font-weight: 600;
    color: #111111;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 430px;
    height: 1px;
    background-color: #111111;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #000000, #111111);
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.scroll-down { 
    position:bottom;
    bottom: 6%;
    width:100%;
    padding-left:80%;  
}

.scroll-down i {
    display: center;
    padding: 12px;
    font-size: 25px;
    color: white;
    background: #f1b04c;
    border-radius: 20px;
    transition: all 0.55s ease;
}

.scroll-down i:hover {
    transform: translateY(-5px);
} 


/* .Copyright {
    position: bottom;
    bottom: 6%;
    right: 20px;
    color: white;
    padding-left: 20px;
    font-size: small;
} */

.Copyright {
    position: bottom;
    bottom: 6%;
    left: 9%;
    color: white;
    font-size: small;
    padding-left: 35px;
}

.grievance {
    position: bottom;
    right: 200px;
    padding-left: 35px;
}

@media (max-width: 768px) {

    .logo {
        font-size: 30px;
    }

    .navlist {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ec9007;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
    }

    .navlist a {
        margin-left: 0;
        font-size: 18px;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid white;
    }

    .hamburger {
		display: flex;
	}

    .accordian {
        margin-top: 27%;
        width: 90%;
        padding-top: 20px;
    }

    .accordian li {
        margin: 10px 0;
    }

    .contact-container {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .contact-left {
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .contact-inputs,
    .contact-left button {
        width: 90%;
        font-size: 16px;
    }

    .contact-left button {
        padding: 12px 25px;
    }

    .scroll-down {
        display: none;
    }

    .grievance {
        position: static;
        padding-left: 35px;
        margin-top: 20px;
        text-align: center;
    }

    .Copyright {
        position: static;
        text-align: center;
        padding-left: 0;
        font-size: 12px;
    }
}
