* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    background: #4caf50;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar select {
    padding: 5px;
    border-radius: 4px;
    border: none;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f6f6;
}

/* 🔥 BANNER (same pink overlay style) */
.brand-banner {
    height: 220px;
    background: linear-gradient(rgba(214,170,170,0.6), rgba(214,170,170,0.6)),
                url("images/banner.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-banner h2 {
    font-size: 34px;
    color: #1c3b4a;
    font-weight: 600;
}

/* 🔥 GRID */
.brand-section {
    padding: 60px 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.brand-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    text-align: center;
    transition: 0.3s;
}

/* HOVER */
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 🔥 IMAGE LANDSCAPE */
.brand-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

/* ❌ TEXT HIDE */
.brand-card h3,
.brand-card p {
    display: none;
}

/* FLOAT ICONS */
.call-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    background: red;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.whatsapp-icon {
    position: fixed;
    right: 20px;
    top: 60%;
    background: green;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

/* FOOTER SECTION */
.footer-section {
    background: #e8c3cc;
    padding: 50px 8%;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left h2 {
    color: #d81b60;
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-left p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* RIGHT */
.footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* GRID */
.links-grid {
    display: flex;
    gap: 40px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
}

.links-grid li {
    margin-bottom: 10px;
}

.links-grid a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.links-grid a:hover {
    color: #d81b60;
}

/* HIGHLIGHT LINK */
.highlight {
    color: #d81b60;
    font-weight: 500;
}

* FOOTER */
.footer{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #f8f8f8;
}

.footer h4{
    margin-bottom: 10px;
}


/* SOCIAL */
.social{
    padding: 20px 40px;
}

.icons{
    display: flex;
    gap: 12px;
}
.icons i{
    background: #d63384;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Navbar basic */
.dropdown {
    position: relative;
    list-style: none;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #eee;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Links */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: #ddd;
}

/* Divider line */
.dropdown-menu hr {
    margin: 5px 10px;
    border: 0.5px solid #ccc;
}

/* View all style */
.view-all {
    font-weight: bold;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}