* {
    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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
}

/* Breadcrumb */
.breadcrumb {
    background: #f5c6d6;
    padding: 12px 60px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    text-decoration: none;
    color: #444;
}

.breadcrumb a:hover {
    color: #e91e63;
}

/* MAIN LAYOUT */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;              
    padding: 25px 110px;    
}

/* LEFT SIDE */
.about-left {
    display: flex;           
    flex-direction: column;  
    gap: 20px;               
    width: 45%;
}

/* RIGHT SIDE */
.about-right {
    width: 50%;
}

.img {
    position: static;        
    width: 100%;             
    height: 200px;           
    object-fit: cover;
    border-radius: 12px;
}

.img:hover {
    transform: scale(1.05);
}


.img1 {
    width: 200px;
    height: 180px;
    top: 30px;
    left: 10px;
}

.img2 {
    width: 300px;
    height: 240px;
    top: 70px;
    left: 30px; 
    z-index: 1;
}

.img3 {
    width: 180px;
    height: 170px;
    bottom: 10px;
    left: 20px;
    z-index: 2;
}

/* TEXT */
.about-right p {
    font-size: 17px; 
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.about-right h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 26px; 
    font-weight: 600;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 30px;
    background: #e91e63;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* CORE VALUES */
.core-values {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/bg.jpg") center/cover no-repeat;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.core-values h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* CARDS */
.values-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-card {
    background: #fff;
    color: #333;
    padding: 25px;
    width: 160px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #e91e63;
}

/* TEAM SECTION */
.team-members {
    padding: 60px 120px;
}

/* MEMBER ROW */
.member {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 🔥 important */
    gap: 60px;
    margin-bottom: 70px;
}

/* IMAGE BOX */
.member-img {
    position: relative;
    width: 280px;
    flex-shrink: 0; /* 🔥 image chhoto hobe na */
}

/* IMAGE */
.member-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* NAME CARD */
.member-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    width: 85%;
    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-name h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.member-name span {
    font-size: 12px;
    color: #777;
}

/* CONTENT */
.member-content {
    max-width: 650px;
}

/* TEXT */
.member-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

/* SOCIAL */
.social {
    margin-top: 15px;
}

.social a {
    display: inline-block;
    margin-right: 8px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    text-decoration: none; 
}

/* COLORS */
.social a:nth-child(1) { background: #3b5998; }
.social a:nth-child(2) { background: #0077b5; }
.social a:nth-child(3) { background: #e91e63; }
.social a:nth-child(4) { background: #1da1f2; }

/* 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;
}

.logo img {
    height: 75px;
    width: 75px;
}