* {
  box-sizing: border-box;
}
body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* Nav Bar */
.header {
    position: fixed;
    top: 0;
    right: 0;
    height: 13vh;
    width: 100%;
    background: linear-gradient(90deg, rgb(228, 222, 228), #6a1b9a, #8e24aa);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* When page is scrolled add blur */
.header.scrolled {
    /* preserve original gradient but make it translucent */
    background: linear-gradient(90deg,
        rgba(228, 222, 228, 0.55),
        rgba(106, 27, 154, 0.55),
        rgba(142, 36, 170, 0.55)
    );
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
/* Change nav link colors when header is scrolled */
.header.scrolled .nav-links a {
    color: #f3e5f5;
}
.header.scrolled .nav-links a:hover {
    color: #ffffff;
}
.header.scrolled .nav-links a.active {
    color: #fff7ff;
}
.container.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    height: 68%;
    width: 11%; /* Adjust as needed */
    /* border: 1px solid white; */
    background-image: url(../PICTURES/hplogoo-removebg-preview.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 15px;
}
.nav-links {
    display: flex;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 35px;
      transition: transform 0.3s ease;
}
.nav-links a.active {
    color: #ffe4ff;
}
.nav-links a:hover {
    /* background-color: #4a148c; */
    transform: scale(1.1);
    color: #e1bee7;
}
/* Burger toggle styles */
.nav-toggle{
    display:none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 12px;
}
.nav-toggle .hamburger{
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    position: relative;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after{
    content: '';
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
}
.nav-toggle .hamburger::before{ top: -8px; }
.nav-toggle .hamburger::after{ top: 8px; }


/* end of nav bar */

/* about page content goes here */
.about{
    height: 60vh;
    background: linear-gradient(
        rgba(14, 2, 29, 0.7),
        rgba(72, 25, 128, 0.7)
    ),
    url("../PICTURES/cdc-jjrXvzbqC5E-unsplash.jpg") center/cover no-repeat;
    display: flex;
    border: 1px solid black;
    align-items: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
    padding: 20px;
    /* width: 100%; */
    /* background-color: #25D366; */
}
.about div{
    margin: auto;
}
.about h3{
    font-size: 3rem;
    margin-bottom: 15px;
}
.about p{
    font-size: 1.2rem;
}
.about a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
      transition: transform 0.3s ease;
}
.ma{
    height: 150vh;
    /* background-color: white; */
    /* border: 1px solid red; */
     width: 100%;
     /* background-color: #aba8ac; */
}
.mat1{
    width: 55%;
    float: left;
    padding: 40px 48px;
    background: #ffffff;
    color: #2c3e50;
    box-shadow: 0 6px 20px rgba(34,41,47,0.06);
    border-radius: 10px;
    margin: 5px;
    margin-top: 50px;
    line-height: 1.6;
    font-size: 1rem;
}
.mat1 h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    color:#2c3e50;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
}
.mat1 p{
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 14px;
}


.map1{
    width: 25%;
    height: 35%;
    float: right;
    margin: 30px;
    margin-right: 70px;
    box-shadow: 0 6px 20px rgba(34,41,47,0.06);
    border-radius: 80px;
    background-image: url(../PICTURES/frankie-83jldfu9voE-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #2c3e50; */
}
.mat2{
    width: 35%;
    border: 1px solid #e5e7eb;
    float: right;
    padding: 40px 48px;
    background: #ffffff;
    color: #2c3e50;
    box-shadow: 0 6px 20px rgba(34,41,47,0.06);
    border-radius: 10px;
    /* margin: 30px; */
    margin-right: 50px;
    line-height: 1.6;
    font-size: 1rem;
}
.map2{
    width: 20%;
    height: 25%;
    float: left;
    margin: 30px;
    margin-bottom: 0px;
    /* margin-right: 70px; */
    box-shadow: 0 6px 20px rgba(34,41,47,0.06);
    border-radius: 100px;
    background-image: url(../PICTURES/josue-michel-FhsFUo-Wfc0-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* border: 1px solid #e5e7eb; */
    /* background-color: red; */
    
} 
.map3{
    width: 20%;
    height: 25%;
    float: left;
    margin: 30px;
    margin-bottom: 0px;
    /* margin-right: 70px; */
    box-shadow: 0 6px 20px rgba(34,41,47,0.06);
    border-radius: 100px;
    background-image: url(../PICTURES/oppo-find-x5-pro-Ogo_xK1FVkw-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* border: 1px solid #e5e7eb; */
    /* background-color: red; */
    
} 
/* ================= MEET THE TEAM ================= */
.mtt{
    width: 90%;
    margin: 80px auto;
    padding: 50px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(34,41,47,0.14);
    color: black;
    /* border: 1px solid black; */
}

.mtt-header{
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
}
.mtt-header h2{
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.mtt-header p{
    font-size: 1rem;
    color: black;
}

/* Team grid */
.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    justify-items: center;
    /* border: 1px solid black; */
}

/* Team card */
.team-card{
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition: transform 260ms ease, box-shadow 260ms ease;
}
.team-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.25);
}

/* Image */
.team-card .subf{
    height: 220px;
    background-image: url("../PICTURES/WhatsApp\ Image\ 2026-01-06\ at\ 10.26.33\ AM.jpeg");
    background-size: cover;
    background-position: center;
}

/* Text */
.team-card .smallf{
    padding: 18px;
    text-align: center;
}
.team-card h4{
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #2c3e50;
}
.team-card p{
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Mobile spacing */

/* Footer */
footer {
    background: linear-gradient(90deg, #4a148c, #6a1b9a);
    color: white;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Left block (copyright) */
.lf{
    flex: 1 1 250px;
    text-align: left;
    padding: 6px 0;
}

/* Right block (icons) */
.rf{
    display: flex;
    gap: 12px;
    align-items: center;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Footer icon buttons */
footer .rf a{
    display: inline-flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #6a1b9a;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
footer .rf a .fa{
    font-size: 1.1rem;
}
footer .rf a:hover{
    transform: translateY(-4px) scale(1.03);
    background: #6a1b9a;
    color: #fff;
    box-shadow: 0 10px 28px rgba(106,27,154,0.22);
}



/* Floating WhatsApp button */
#whatsapp-link{
    position: fixed;
    right: 20px;
    /* place above the footer so it doesn't overlap footer icons */
    bottom: calc(18px + 56px + 12px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.18);
    z-index: 2000;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
#whatsapp-link .fa{
    font-size: 1.25rem;
}
#whatsapp-link:hover{
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(37,211,102,0.28);
}

@media (max-width: 600px){
    /* on narrow screens give a slightly larger gap from footer */
    #whatsapp-link{ right: 14px; bottom: calc(18px + 56px + 10px); width: 50px; height: 50px; }
}



/* Responsive navbar */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, #6a1b9a, #8e24aa);
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        border-radius: 8px;
        overflow: hidden;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 15px;
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
    }
}