


.container {
	width: 100%;
	margin: 0 auto;
	
}

* {
	padding: 0;
	margin: 0;
}



a{
	text-decoration: none;
}


.header {
	height: 30px;
	border-bottom: 1px solid #ededed;
}

.header p,
.header ul li {
	margin: 0 20px;
	font-size: 12px;
}

.header p {
	line-height: 30px;
	float: left;
	color: #7d7d7d;
}

.header p a {
	color: #7d7d7d;
	margin-left: 12px;
}

.header p a:hover,
.header li a:hover,
.foot-top dd a:hover,
.foot-bottom span a:hover {
	color: #008cd6;
}

.header ul {
	float: right;
	list-style: none;
}

.header ul li {
	margin-right: 20px;
	
	margin-top: 8px;
	float: left;
}

.header ul li a{
	color: #2c2c2c;
	text-decoration: none;
    font-weight: bold;
}

.header ul li:last-child {
	border: none;
}




.header-down {
	height: 120px;
}

.header-down img {
	float: left;
	margin-top: 12px;
}

.search {
    margin-top: 44px;
    margin-right: 12px;
    float: right;
    width: 800px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search > form {
    display: flex;
    width: 100%;
}

.search > form > input {
    font-size: 14px;
    padding-left: 10px;
    color: #333;
    border: none;
    outline: none;
    flex-grow: 1;
    border-radius: 5px 0 0 5px;
}

.search select {
    border: none;
    color: #65696b;
    font-size: 14px;
    padding-left: 10px;
    background-color: #e9ecef;
    width: 200px;
    height: 40px;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-text {
    flex-grow: 1;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 10px;
    border-radius: 0 5px 5px 0;
}

.header-button {
    width: 93px;
    height: 40px;
}

.header-button input {
    padding-left: 8px;
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 100%;
    border: none;
    background: url(../images/search_03.gif) no-repeat center left 10px;
    background-color: #007bff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: none;
}



.navigation-module {
	height: 50px;
}
.nav {
	height: 44px;
	background-color: #31a6ff;
}
.nav ul{
	margin-left: 100px;
	list-style: none;
}
.nav li {
	text-align: center;
	float: left;
	width: 100px;
	line-height: 44px;
	
}

.nav li a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}

.nav li:hover {
	background-color: #f58a25;
}

.banner {
	overflow: hidden;
	height: 300px;
	background: url(../images/bpic.jpg) no-repeat;
	background-size: 100% 300px;
}

.cont{

	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}



footer {
    background-color: #c7c7c7;
    padding: 10px 0;
}
footer a{
	text-decoration: none;
	color: white;
}



.foot-bottom {
    text-align: center;
    padding: 10px 0;
 
}




.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}





:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4bb543;
    --error-color: #ff3333;
}









.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Rating Styles */
.rating-container {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.rating-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.rating-option:hover {
    transform: translateY(-5px);
    background-color: rgba(76, 201, 240, 0.1);
}

.rating-emoji {
    font-size: 2.5rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.rating-option:hover .rating-emoji {
    animation: float 1.5s infinite;
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-option input[type="radio"]:checked + .rating-emoji {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(76, 201, 240, 0.7));
}

/* Button Styles */
.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
    animation: pulse 1.5s infinite;
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: rgba(75, 181, 67, 0.1);
    border-radius: 10px;
    border-left: 5px solid var(--success-color);
    animation: fadeIn 0.8s ease-out;
}

.success-message h2 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 20px;
}

.success-message .icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: float 3s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .rating-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .rating-option {
        flex: 1 0 40%;
    }
}

@media (max-width: 480px) {
    .rating-option {
        flex: 1 0 100%;
    }
}


