*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.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;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #4caf50;
}

.search input {
    width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.icons span {
    margin-left: 10px;
    background: #4caf50;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
}

/* NAVBAR */
.navbar {
    display: flex;
    gap: 25px;
    padding: 12px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #4caf50;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
}

/* TEXT */
.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 42px;
    color: #243444;
}

.hero-text p {
    color: gray;
    margin: 20px 0;
}

/* BUTTON */
.hero-text button {
    background: #2f6fed;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.hero-text button:hover {
    background: #1d4ed8;
}

/* IMAGE */
.hero-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 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: #4caf50;
    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;
}

.logo img {
    height: 75px;
    width: 75px;
}
