/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

/* ================= GLOBAL ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin: 10px auto 40px;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    color: #d4af37;
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #d4af37;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
}

/* ================= HOME ================= */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.home-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.home-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    border-radius: 20px;
    margin-bottom: 15px;
}

.home-content h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.home-content h1 span {
    color: #d4af37;
}

.home-subtitle {
    color: #ccc;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.home-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

.btn-secondary {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
}

.home-stats {
    display: flex;
    gap: 40px;
}

.home-stats h3 {
    color: #d4af37;
    font-size: 1.8rem;
}

.home-image img {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
/* Social icon base */
.s-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 8px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    background: #222;
    transition: all 0.35s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Hover effect */
.s-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Instagram gradient */
.s-icon .fa-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Instagram hover */
.s-icon:hover .fa-instagram {
    -webkit-text-fill-color: #fff;
}

/* Facebook color */
.s-icon .fa-facebook {
    color: #1877f2;
}

/* Facebook hover */
.s-icon:hover .fa-facebook {
    color: #fff;
}

/* Individual hover backgrounds */
.s-icon:hover:has(.fa-instagram) {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.s-icon:hover:has(.fa-facebook) {
    background: #1877f2;
}


/* ================= ABOUT ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-highlights {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.highlight-box {
    flex: 1;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.highlight-box h3 {
    color: #d4af37;
    font-size: 1.6rem;
}

.about-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.about-card ul {
    list-style: none;
    margin-top: 15px;
}

.about-card li {
    margin-bottom: 10px;
    color: #ccc;
}

/* ================= SKILLS ================= */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skills-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.skills-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.skill-item {
    margin: 15px 0;
}

.skill-item span {
    display: block;
    margin-bottom: 6px;
    color: #ccc;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-bar div {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #b8962e);
}

/* ================= EXPERIENCE ================= */
.experience-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.exp-year {
    color: #d4af37;
    font-weight: 600;
}

.exp-right img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* ================= JOURNEY ================= */
.journey-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.journey-dot {
    width: 14px;
    height: 14px;
    background: #d4af37;
    border-radius: 50%;
    margin-top: 5px;
}

.journey-year {
    color: #d4af37;
    font-weight: 600;
}
.swiper-wrapper{
    overflow:scroll;
    scrollbar-width:none;
}

.journey-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    transition: 0.3s ease;
    height: 100%;
    min-width: 350px;
    width: 30%;
    margin: 15px ;
    display: flex;
    flex-direction: column;
}

.journey-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    border-color: rgba(212, 175, 55, 0.6);
}

.journey-image-wrap {
    overflow: hidden;
    height: 250px;
}

.journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.journey-card:hover .journey-image {
    transform: scale(1.08);
}

.journey-content {
    padding: 18px;
}

.journey-content h3 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.journey-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* BIG CLEAN SOCIAL ICONS */
.social-big-icons {
    display: flex;
    gap: 1.2rem;
}
.social-big-icons a{
   text-decoration: none;
}
.s-icon {
    font-size: 2.2rem;          /* LARGE ICON */
    color: var(--gold);         /* GOLD COLOR */
    transition: 0.25s ease;
    display: inline-flex;
}

.s-icon:hover {
    transform: scale(1.28);     /* SIZE INCREASE */
    color: #f9d98b;             /* BRIGHTER GOLD */
    text-shadow: 0 0 18px rgba(243, 201, 106, 0.7); /* GOLD GLOW */
}


/* ================= CONTACT ================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-form-box {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.btn-submit {
    margin-top: 15px;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 30px 20px;
    background: #000;
    color: #aaa;
    font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .home-grid,
    .about-grid,
    .skills-wrapper,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .form-row {
        flex-direction: column;
    }
}




