* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
.header {
    background: #353535;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .logo img {
    max-width: 100px;
}

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

.navbar ul li {
    display: inline-block;
    margin-right: 20px;
}

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

.navbar ul li a:hover {
    color: #f4b41a;
}

/* Meetings Section */
.meetings-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.meetings-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Conference Halls */
.conference-halls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.conference-halls .hall {
    width: 30%;
    text-align: center;
}

.conference-halls .hall img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.conference-halls .hall h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.conference-halls .hall p {
    font-size: 16px;
    color: #555;
}

/* Brochure Button */
.brochure-section {
    text-align: center;
    margin-bottom: 40px;
}

.brochure-section button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.brochure-section button:hover {
    background-color: #0056b3;
}

/* Enquiry Form */
.enquiry-form {
    width: 50%;
    margin: 0 auto;
}

.enquiry-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.enquiry-form form {
    display: flex;
    flex-direction: column;
}

.enquiry-form form label {
    margin-bottom: 10px;
    font-size: 16px;
}

.enquiry-form form input,
.enquiry-form form select,
.enquiry-form form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.enquiry-form form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enquiry-form form button:hover {
    background-color: #218838;
}
.side-menu {
    position: fixed;
    top: 0;
    right: -35%;
    width: 35%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}


.hamburger {
display: none; 
text-align: center;
font-size: 24px;
color: #fff;
margin-top: 10px; 
}

@media (max-width: 768px) {
.hamburger {
    display: block; 
}

.logo {
    text-align: center; 
}
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0px;
    margin-bottom: 0px;
}
