* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
}

/* Navigation Bar */
header {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 500;
}

nav ul li a:hover {
    color: #ff5722;
}

/* Hero Section */
.hero {
    display: flex;
    width: 100%;
    height: 80vh;
}

.hero-left img {
    width: 50vw;
    height: 80vh;
    object-fit: cover;
}

.hero-right {
    width: 50vw;
    background: #fbe9e7;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center;     /* horizontal center */
    text-align: center;
    padding: 60px;

}


.hero-right h1 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #373737;
}

.hero-right button {
    width: 150px;
    padding: 12px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    justify: center;
}

.hero-right button:hover {
    background: #ff784e;
    justify-content: center;
}

/* Dropdown menu basic */
nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    position: relative;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 500;
}

/* Hide dropdown initially */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    width: 180px;
    z-index: 1000;
}

/* Dropdown items */
.dropdown-menu li {
    width: 100%;
    padding: 8px 15px;
}

.dropdown-menu li a {
    display: block;
    color: black;
}

.dropdown-menu li:hover {
    background: #f4f4f4;
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hover on main menu */
nav ul li a:hover {
    color: #ff5722;
}


/* Footer Style */
footer {
    background: #222;
    color: white;
    padding: 50px 0 15px;
    margin-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 300px;
    margin-bottom: 25px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #ff784e;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    text-decoration: none;
    color: #ccc;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-section a:hover {
    color: #ff784e;
    padding-left: 5px;
}

/* Icons */
.footer-section i {
    color: #ff784e;
    margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    margin-top: 25px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }
}

.governing-section {
    text-align: center;
    margin-top: 60px;
}

.governing-section h2 {
    font-size: 32px;
    color: #774333ff;
    margin-bottom: 40px;
}

.gov-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    gap: 60px;
    flex-wrap: wrap;
}

.gov-card {
    text-align: center;
    width: 280px;
}

.gov-card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.gov-card h3 {
    margin-top: 15px;
    color: #c26548;
    font-size: 20px;
}

.gov-card p {
    margin: 5px 0 15px;
    color: #6a6a6a;
    font-size: 16px;
}

.gov-card button {
    padding: 12px 25px;
    background: #ff784e;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.gov-card button:hover {
    background: #ff5722;
}
