*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}

body{
    background:#000;
    color:#fff;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#0a0a0a;
    position:sticky;
    top:0;
}

.logo{
    color:gold;
    font-size:22px;
    font-weight:bold;
}

nav{
    display:flex;
}

nav a{
    color:#fff;
    margin-left:20px;
    text-decoration:none;
}

.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* HERO */
.hero{
    height:40vh;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h1{
    color:gold;
    font-size:45px;
}

.btn{
    margin-top:20px;
    display:inline-block;
    padding:12px 30px;
    background:gold;
    color:#000;
    text-decoration:none;
}

/* TRUST */
.trust{
    display:flex;
    justify-content:space-around;
    padding:40px;
    background:#111;
}

/* SERVICES */
.services{
    padding:60px;
    text-align:center;
}

.services h2{
    color:gold;
}

.cards{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-top:20px;
}

.card{
    width:300px;
    background:#111;
    border-radius:10px;
}

.card img{
    width:100%;
}

.card h3{
    color:gold;
    padding:10px;
}

/* PROFILES */
.profiles{
    padding:60px;
    text-align:center;
}

.profile-grid{
    display:flex;
    gap:20px;
    justify-content:center;
}

.profile{
    width:220px;
    background:#111;
}

.profile img{
    width:100%;
}

/* CTA */
.cta{
    padding:60px;
    text-align:center;
    background:gold;
    color:#000;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    background:#111;
}

/* MOBILE */
@media(max-width:768px){
    nav{
        display:none;
        flex-direction:column;
        position:absolute;
        right:0;
        top:60px;
        background:#000;
    }

    nav.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .cards, .profile-grid{
        flex-direction:column;
        align-items:center;
    }
}
/* HOTSPOTS */
.hotspots{
    padding:60px 20px;
    text-align:center;
}

.hotspots h2{
    color:#ff4d6d;
    margin-bottom:30px;
}

.hotspot-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:20px;
}

.hotspot-card{
    background:#111;
    padding:20px;
    border-radius:12px;
    border:2px solid #ff4d6d;
    transition:0.3s;
}

.hotspot-card:hover{
    box-shadow:0 0 20px #ff4d6d;
    transform:translateY(-5px);
}

.hotspot-card.active{
    border-color:yellow;
    box-shadow:0 0 25px yellow;
}

.hotspot-card h3{
    color:#ffa94d;
}

.hotspot-card ul{
    margin-top:10px;
    text-align:left;
}
/* FAQ */
.faq{
    padding:60px 20px;
    text-align:center;
}

.faq h2{
    color:#ff4d6d;
    margin-bottom:30px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:20px;
}

.faq-box{
    padding:20px;
    border-radius:12px;
    background:linear-gradient(135deg, #6a11cb, #2575fc);
    color:#fff;
    transition:0.3s;
}

.faq-box:hover{
    transform:scale(1.05);
}
/* CONTENT SECTION */
.content-section{
    max-width:900px;
    margin:60px auto;
    padding:20px;
    line-height:1.8;
}

/* MAIN HEADING */
.content-section h1{
    font-size:32px;
    color:gold;
    margin-bottom:20px;
    text-align:center;
}

/* SUB HEADINGS */
.content-section h2{
    font-size:22px;
    color:#ff4d6d;
    margin-top:30px;
    margin-bottom:10px;
}

/* PARAGRAPH */
.content-section p{
    font-size:16px;
    color:#ddd;
}
/* PROFILE SECTION */
.profiles-section{
    padding:60px 20px;
    text-align:center;
}

.profiles-section h2{
    color:#ff4d6d;
    margin-bottom:30px;
}

/* GRID */
.profiles-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* CARD */
.profile-card{
    position:relative;
    background:#111;
    border-radius:12px;
    overflow:hidden;
    border:2px solid #ff4d6d;
    transition:0.3s;
}

.profile-card:hover{
    transform:scale(1.03);
    box-shadow:0 0 20px #ff4d6d;
}

/* IMAGE */
.profile-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

/* BADGE */
.badge{
    position:absolute;
    top:10px;
    right:10px;
    background:red;
    color:#fff;
    padding:5px 10px;
    font-size:12px;
    border-radius:20px;
}

/* INFO */
.profile-info{
    padding:15px;
}

.profile-info h3{
    color:#fff;
}

/* TAG */
.tag{
    display:inline-block;
    margin-top:5px;
    background:#ff4d6d;
    padding:3px 10px;
    font-size:12px;
    border-radius:20px;
}

/* ICONS */
.icons{
    margin-top:10px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.icons span{
    display:inline-block;
    padding:10px;
    border-radius:50%;
    font-size:16px;
}

.call{
    background:#00bcd4;
}

.whatsapp{
    background:#25d366;
}