/* =====================================================
   RAMJAN ALI WEBSITE
   PREMIUM DARK GLASSMORPHISM UI
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');


/* ================= ROOT ================= */

:root {

    --bg: #05070b;
    --bg-soft: #080d16;

    --gold: #d9ad4b;
    --gold-light: #f4d477;

    --blue: #1687ff;
    --blue-light: #55b8ff;

    --white: #ffffff;
    --text: #e9edf5;
    --muted: #9da8ba;

    --border: rgba(255,255,255,0.10);

    --glass:
        rgba(255,255,255,0.055);

    --shadow:
        0 20px 60px rgba(0,0,0,0.45);

    --radius: 22px;

    --container: 1180px;
}


/* ================= RESET ================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(22,135,255,0.09),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 40%,
            rgba(217,173,75,0.07),
            transparent 30%
        ),

        var(--bg);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;

}


img {

    width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


/* ================= CONTAINER ================= */

.container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: auto;

}


/* ================= GLASS ================= */

.glass {

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    border:

        1px solid

        rgba(255,255,255,0.10);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        var(--shadow);

}


/* ================= NAVBAR ================= */

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(5,7,11,0.78);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid var(--border);

}


.nav-container {

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    font-family: 'Outfit';

    font-weight: 800;

    letter-spacing: 1px;

}


.logo strong {

    color: var(--gold);

}


.logo-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #fff;

    background:

        linear-gradient(
            135deg,
            var(--gold),
            #9b7120
        );

    box-shadow:
        0 8px 25px
        rgba(217,173,75,0.25);

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 10px;

}


.nav-menu a {

    padding: 9px 16px;

    color: var(--muted);

    font-size: 14px;

    font-weight: 600;

    border-radius: 10px;

    transition: .3s;

}


.nav-menu a:hover,
.nav-menu a.active {

    color: white;

    background:
        rgba(255,255,255,0.07);

}


.nav-menu a.active {

    color: var(--gold-light);

}


.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    color: white;

    font-size: 24px;

    cursor: pointer;

}


/* ================= HERO ================= */

.hero {

    min-height: 720px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 70px;

    align-items: center;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.small-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.small-label span {

    width: 32px;

    height: 2px;

    background: var(--gold);

}


.hero h1 {

    font-family: 'Outfit';

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 1.05;

    margin-bottom: 18px;

}


.hero h1 span,
.page-hero h1 span {

    color: var(--gold);

}


.hero h2 {

    font-size: 18px;

    color: #d6deea;

    font-weight: 500;

    margin-bottom: 20px;

}


.hero h2 b {

    color: var(--blue-light);

    margin: 0 7px;

}


.hero p {

    max-width: 620px;

    color: var(--muted);

    font-size: 17px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 21px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}


.btn-primary {

    color: #07101d;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 12px 30px
        rgba(217,173,75,0.18);

}


.btn-primary:hover {

    transform:
        translateY(-3px);

}


.btn-outline {

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.035);

    color: white;

}


.btn-outline:hover {

    border-color:
        rgba(85,184,255,.5);

    background:
        rgba(22,135,255,.08);

}


.hero-location {

    margin-top: 25px;

    color: var(--muted);

    font-size: 13px;

}


.hero-location i {

    color: var(--blue-light);

    margin-right: 7px;

}


/* ================= HERO PROFILE ================= */

.hero-profile {

    position: relative;

    display: flex;

    justify-content: center;

}


.profile-glow {

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    background:
        rgba(22,135,255,.20);

    filter:
        blur(80px);

}


.profile-card {

    width: min(
        390px,
        100%
    );

    border-radius: 30px;

    padding: 22px;

    position: relative;

    z-index: 2;

}


.profile-image {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    aspect-ratio: 1 / 1;

    background:
        linear-gradient(
            135deg,
            #101b2b,
            #070b11
        );

}


.profile-image img {

    height: 100%;

    object-fit: cover;

}


.online-dot {

    width: 13px;

    height: 13px;

    background: #22c55e;

    border: 3px solid #07101a;

    border-radius: 50%;

    position: absolute;

    right: 15px;

    bottom: 15px;

}


.profile-info {

    padding: 20px 4px 10px;

}


.profile-info h3 {

    font-family: 'Outfit';

    font-size: 24px;

}


.profile-info p {

    color: var(--muted);

    font-size: 13px;

}


.profile-social {

    display: flex;

    gap: 10px;

}


.profile-social a {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    border:
        1px solid var(--border);

    color: var(--muted);

    transition: .3s;

}


.profile-social a:hover {

    color: var(--gold-light);

    border-color:
        rgba(217,173,75,.4);

}


/* ================= GLOW ================= */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

}


.glow-one {

    width: 300px;
    height: 300px;

    background:
        rgba(22,135,255,.12);

    top: -100px;
    left: -100px;

}


.glow-two {

    width: 250px;
    height: 250px;

    background:
        rgba(217,173,75,.08);

    bottom: -100px;
    right: -50px;

}


/* ================= SECTIONS ================= */

.section {

    padding: 100px 0;

}


.section-dark {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.015),
            rgba(0,0,0,.15)
        );

}


.section-heading {

    text-align: center;

    margin-bottom: 55px;

}


.section-heading > span,
.section-label {

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    font-family: 'Outfit';

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 9px 0 12px;

}


.section-heading h2 strong {

    color: var(--gold);

}


.section-heading p {

    color: var(--muted);

    max-width: 600px;

    margin: auto;

}


/* ================= FEATURE GRID ================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.feature-card {

    padding: 30px;

    border-radius: var(--radius);

    transition: .35s;

}


.feature-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(85,184,255,.25);

}


.feature-icon {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    margin-bottom: 22px;

    font-size: 20px;

}


.feature-icon.gold {

    color: var(--gold-light);

    background:
        rgba(217,173,75,.12);

}


.feature-icon.blue {

    color: var(--blue-light);

    background:
        rgba(22,135,255,.12);

}


.feature-icon.white {

    color: white;

    background:
        rgba(255,255,255,.08);

}


.feature-card h3 {

    font-family: 'Outfit';

    font-size: 22px;

    margin-bottom: 10px;

}


.feature-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;

}


.feature-card a,
.vlog-content a {

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 700;

}


/* ================= SPLIT HEADING ================= */

.split-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    text-align: left;

}


.text-link {

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 700;

}


/* ================= FEATURED VLOG ================= */

.featured-vlog {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    overflow: hidden;

    border-radius: 25px;

}


.video-wrapper {

    min-height: 400px;

}


.video-placeholder {

    height: 100%;

    position: relative;

}


.video-placeholder img {

    height: 100%;

    object-fit: cover;

}


.video-placeholder::after {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,0,0,.3)
        );

}


.play-button {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    z-index: 3;

    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--gold);

    color: #05070b;

    font-size: 20px;

    box-shadow:
        0 0 0 12px
        rgba(217,173,75,.13);

}


.featured-content {

    padding: 45px;

    display: flex;

    justify-content: center;

    flex-direction: column;

}


.video-category {

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.featured-content h3 {

    font-family: 'Outfit';

    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 15px;

}


.featured-content p {

    color: var(--muted);

    margin-bottom: 25px;

}


/* ================= CTA ================= */

.cta-section {

    padding: 70px 0;

}


.cta-card {

    border-radius: 25px;

    padding: 35px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.cta-card span {

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.cta-card h2 {

    font-family: 'Outfit';

    font-size: 34px;

    margin: 6px 0;

}


.cta-card p {

    color: var(--muted);

}


/* ================= PAGE HERO ================= */

.page-hero {

    padding: 120px 0 80px;

    text-align: center;

    background:

        radial-gradient(
            circle at center,
            rgba(22,135,255,.08),
            transparent 45%
        );

}


.page-hero h1 {

    font-family: 'Outfit';

    font-size:
        clamp(42px, 6vw, 68px);

    line-height: 1.05;

    margin-bottom: 20px;

}


.page-hero p {

    color: var(--muted);

}


/* ================= ABOUT ================= */

.about-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    align-items: center;

}


.about-image {

    padding: 10px;

    border-radius: 25px;

}


.about-image img {

    border-radius: 18px;

}


.about-content h2 {

    font-family: 'Outfit';

    font-size: 40px;

    margin: 10px 0 20px;

}


.about-content h2 strong {

    color: var(--gold);

}


.about-content p {

    color: var(--muted);

    margin-bottom: 15px;

}


/* ================= SKILLS ================= */

.skill-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.skill-card {

    padding: 28px;

    border-radius: 20px;

}


.skill-card > i {

    color: var(--gold-light);

    font-size: 28px;

    margin-bottom: 18px;

}


.skill-card h3 {

    font-family: 'Outfit';

    margin-bottom: 8px;

}


.skill-card p {

    color: var(--muted);

    font-size: 13px;

}


/* ================= VLOG ================= */

.vlog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.vlog-card {

    overflow: hidden;

    border-radius: 20px;

    transition: .35s;

}


.vlog-card:hover {

    transform:
        translateY(-6px);

}


.vlog-thumbnail {

    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

}


.vlog-thumbnail img {

    height: 100%;

    object-fit: cover;

}


.vlog-play {

    position: absolute;

    inset: 0;

    margin: auto;

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(217,173,75,.95);

    color: #05070b;

}


.vlog-content {

    padding: 24px;

}


.vlog-content > span {

    color: var(--blue-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.vlog-content h3 {

    font-family: 'Outfit';

    font-size: 21px;

    margin: 7px 0;

}


.vlog-content p {

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 15px;

}


/* ================= CONTACT ================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 35px;

}


.contact-info h2 {

    font-family: 'Outfit';

    font-size: 42px;

    line-height: 1.1;

    margin: 10px 0 15px;

}


.contact-info > p {

    color: var(--muted);

    margin-bottom: 25px;

}


.contact-item {

    display: flex;

    gap: 16px;

    padding: 18px;

    border-radius: 16px;

    margin-bottom: 12px;

}


.contact-icon {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: var(--gold-light);

    background:
        rgba(217,173,75,.10);

}


.contact-item span {

    display: block;

    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.contact-item strong,
.contact-item a {

    display: block;

    color: white;

    font-size: 14px;

}


.btn-whatsapp {

    width: 100%;

    background:
        rgba(34,197,94,.10);

    border:
        1px solid rgba(34,197,94,.25);

    color: #86efac;

    margin-top: 10px;

}


.map-card {

    border-radius: 22px;

    padding: 14px;

}


.map-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 10px 18px;

}


.map-header span {

    color: var(--blue-light);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;

}


.map-header h3 {

    font-family: 'Outfit';

}


.map-header > i {

    color: var(--gold);

    font-size: 24px;

}


.map-wrapper {

    height: 430px;

    border-radius: 15px;

    overflow: hidden;

}


.map-wrapper iframe {

    width: 100%;

    height: 100%;

    border: 0;

    filter:
        grayscale(.2)
        contrast(1.1);

}


.map-link {

    display: block;

    padding: 15px 10px 5px;

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 700;

}


/* ================= FOOTER ================= */

.footer {

    border-top:
        1px solid var(--border);

    padding: 35px 0 0;

    background: #030509;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 40px;

    align-items: center;

}


.footer p {

    color: var(--muted);

    font-size: 12px;

    margin-top: 8px;

}


.footer-links {

    display: flex;

    gap: 20px;

}


.footer-links a {

    color: var(--muted);

    font-size: 12px;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 9px;

}


.copyright {

    text-align: center;

    color: #667085;

    font-size: 11px;

    padding: 25px 20px;

    margin-top: 30px;

    border-top:
        1px solid rgba(255,255,255,.05);

}


/* ================= WHATSAPP ================= */

.whatsapp-float {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 27px;

    z-index: 900;

    box-shadow:
        0 12px 35px
        rgba(37,211,102,.25);

}


/* ================= PRELOADER ================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: #05070b;

    display: grid;

    place-items: center;

    transition: .4s;

}


.loader {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border:
        3px solid rgba(255,255,255,.1);

    border-top-color:
        var(--gold);

    animation:
        spin 1s linear infinite;

}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width: 900px) {


    .menu-toggle {

        display: block;

    }


    .nav-menu {

        position: absolute;

        top: 78px;

        left: 20px;

        right: 20px;

        padding: 12px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        background:
            rgba(8,13,22,.97);

        border:
            1px solid var(--border);

        border-radius: 16px;

        box-shadow:
            var(--shadow);

    }


    .nav-menu.show {

        display: flex;

    }


    .nav-menu a {

        padding: 13px 15px;

    }


    .hero {

        min-height: auto;

        padding: 80px 0;

    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .hero-profile {

        order: -1;

    }


    .feature-grid,
    .vlog-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .featured-vlog {

        grid-template-columns: 1fr;

    }


    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .skill-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


}


@media(max-width: 600px) {


    .container {

        width:
            min(
                var(--container),
                calc(100% - 28px)
            );

    }


    .nav-container {

        height: 70px;

    }


    .nav-menu {

        top: 70px;

        left: 14px;

        right: 14px;

    }


    .hero {

        padding: 65px 0;

    }


    .hero h1 {

        font-size: 46px;

    }


    .hero h2 {

        font-size: 15px;

    }


    .hero p {

        font-size: 14px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .profile-card {

        max-width: 330px;

    }


    .section {

        padding: 70px 0;

    }


    .feature-grid,
    .vlog-grid,
    .skill-grid {

        grid-template-columns: 1fr;

    }


    .split-heading {

        display: block;

    }


    .split-heading .text-link {

        display: inline-block;

        margin-top: 12px;

    }


    .featured-content {

        padding: 28px;

    }


    .featured-content h3 {

        font-size: 25px;

    }


    .cta-card {

        padding: 28px;

        flex-direction: column;

        align-items: flex-start;

    }


    .cta-card h2 {

        font-size: 29px;

    }


    .page-hero {

        padding: 85px 0 60px;

    }


    .about-content h2,
    .contact-info h2 {

        font-size: 34px;

    }


    .map-wrapper {

        height: 350px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .footer .logo {

        justify-content: center;

    }


    .footer-links,
    .footer-social {

        justify-content: center;

    }


}