    body {
        margin: 0;
        padding: 0;
    }


    /* ===== PROFILE HEADER CSS START ===== */

.profile-header {
    background: linear-gradient(135deg, #020617, #0f172a);
}

/* FULL HEIGHT HERO */
.profile-wrapper {
    min-height: 80vh;
    align-items: center;
}

/* LEFT SIDE IMAGE FULL AREA */
.profile-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-box {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.profile-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #38bdf8;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.profile-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #22c55e;
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
}

/* RIGHT SIDE CONTENT */
.profile-right {
    padding: 60px;
}

.profile-name {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
}

.profile-meta {
    margin: 15px 0;
}

.profile-meta span {
    margin-right: 20px;
    color: #94a3b8;
    font-size: 15px;
}

.profile-desc {
    color: #cbd5f5;
    margin: 20px 0;
    max-width: 500px;
    line-height: 1.6;
}

.profile-tags span {
    display: inline-block;
    margin: 6px 10px 6px 0;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    background: rgba(255,255,255,0.05);
    color: #38bdf8;
    border: 1px solid rgba(56,189,248,0.4);
}

.profile-actions {
    margin-top: 25px;
}

.profile-btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 12px;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
}

.profile-btn.call {
    background: #38bdf8;
    color: #000;
}

.profile-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.profile-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width:768px){

    .profile-wrapper {
        min-height: auto;
    }

    .profile-right {
        padding: 30px 20px;
        text-align: center;
    }

    .profile-image-box {
        max-width: 250px;
        margin: auto;
    }

    .profile-image-box img {
        height: 250px;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-desc {
        font-size: 14px;
    }

    .profile-actions {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .profile-btn {
        font-size: 13px;
        padding: 9px 18px;
    }

}

/* ===== PROFILE HEADER CSS END ===== */



/* ===== PROFILE ABOUT CSS START ===== */

.profile-about {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.profile-about-wrapper {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.profile-about-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.profile-about-title span {
    color: #38bdf8;
}

.profile-about-text {
    color: #cbd5f5;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* GRID INFO BOXES */
.profile-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.profile-about-box {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.profile-about-box h5 {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 5px;
}

.profile-about-box span {
    color: #fff;
    font-weight: 600;
}

/* MOBILE */

@media (max-width:768px){

    .profile-about {
        padding: 60px 0;
    }

    .profile-about-title {
        font-size: 26px;
    }

    .profile-about-text {
        font-size: 14px;
    }

    .profile-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ===== PROFILE ABOUT CSS END ===== */




/* ===== PROFILE DETAILS CSS START ===== */

.profile-details {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.profile-details-wrapper {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.profile-details-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.profile-details-title span {
    color: #38bdf8;
}

/* GRID */
.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.profile-details-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.profile-details-item h6 {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 6px;
}

.profile-details-item span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.profile-details-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

/* MOBILE */

@media (max-width:768px){

    .profile-details {
        padding: 60px 0;
    }

    .profile-details-title {
        font-size: 26px;
    }

    .profile-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ===== PROFILE DETAILS CSS END ===== */



/* ===== PROFILE GALLERY CSS START ===== */

.profile-gallery {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.profile-gallery-wrapper {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.profile-gallery-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.profile-gallery-title span {
    color: #38bdf8;
}

/* GRID */
.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.profile-gallery-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.profile-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER EFFECT */
.profile-gallery-item:hover img {
    transform: scale(1.08);
}

/* MOBILE */

@media (max-width:768px){

    .profile-gallery {
        padding: 60px 0;
    }

    .profile-gallery-title {
        font-size: 26px;
    }

    .profile-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .profile-gallery-item img {
        height: 180px;
    }

}

/* ===== PROFILE GALLERY CSS END ===== */



/* ===== PROFILE HIGHLIGHTS CSS START ===== */

.profile-highlights {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.profile-highlights-wrapper {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.profile-highlights-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.profile-highlights-title span {
    color: #38bdf8;
}

/* GRID */
.profile-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.profile-highlights-item {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.profile-highlights-item i {
    font-size: 28px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.profile-highlights-item h5 {
    color: #fff;
    margin-bottom: 8px;
}

.profile-highlights-item p {
    color: #94a3b8;
    font-size: 14px;
}

.profile-highlights-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
}

/* MOBILE */

@media (max-width:768px){

    .profile-highlights {
        padding: 60px 0;
    }

    .profile-highlights-title {
        font-size: 26px;
    }

    .profile-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ===== PROFILE HIGHLIGHTS CSS END ===== */




/* ===== PROFILE LOCATION CSS START ===== */

.profile-location {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.profile-location-wrapper {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.profile-location-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.profile-location-title span {
    color: #38bdf8;
}

.profile-location-text {
    color: #cbd5f5;
    margin-bottom: 30px;
}

.profile-location-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    border: none;
}

/* MOBILE */

@media (max-width:768px){

    .profile-location {
        padding: 60px 0;
    }

    .profile-location-title {
        font-size: 26px;
    }

    .profile-location-map iframe {
        height: 250px;
    }

}

/* ===== PROFILE LOCATION CSS END ===== */





/* ===== PROFILE INTERNAL LINKS CSS START ===== */

.profile-links {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.profile-links-wrapper {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.profile-links-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.profile-links-title span {
    color: #38bdf8;
}

/* GRID */
.profile-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.profile-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.profile-link-item i {
    color: #38bdf8;
}

.profile-link-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

/* MOBILE */

@media (max-width:768px){

    .profile-links {
        padding: 60px 0;
    }

    .profile-links-title {
        font-size: 26px;
    }

    .profile-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ===== PROFILE INTERNAL LINKS CSS END ===== */