* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #110a03;
    color: white;
    overflow-x: hidden;
}

/* HEADER */

header {
    width: 100%;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* LOGO */

.logo {
    font-size: 28px;
    font-weight: 700;
}

.green {
    color: #da9046;
}

.text {
    color: #d8d8d8;
    font-weight: 400;
    margin-left: 8px;
}
.logo{
  color:#753d04;
  font-size:24px;
  font-weight:bold;
}

/* NAVBAR */

.navbar{
  width:30%;
  background:#110a03;
  padding:20px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  
}



.nav-links{
  margin-left: auto;
  display:flex;
  gap:20px;
  list-style:none;
}

.nav-links li a{
  color:white;
  text-decoration:none;
  font-size:18px;
}

/* MENU BUTTON */

.menu-btn{
  color:white;
  font-size:30px;
  cursor:pointer;
  display:none;
}

/* MOBILE */

@media(max-width:768px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#110a03;
    flex-direction:column;
    text-align:center;
    display:none;
    padding:20px 0;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links li{
    padding:10px 0;
  }
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 50px;
    position: relative;
    overflow: hidden;
}

/* DOT BACKGROUND */

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: -2;
}

/* GREEN GLOW */

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
            rgba(255, 128, 0, 0),
            transparent 70%);

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: -1;
}

/* CONTENT */

.hero-content {
    max-width: 700px;
}

/* BADGE */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 30px;

    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.05);

    color: #f5f5f5;

    font-weight: 600;

    margin-bottom: 35px;

    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* TITLE */

h1 {
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.gold {
    color: #c4803c;
}

/* PARAGRAPH */

.hero p {
    font-size: 24px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 45px;
}

/* BUTTONS */

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn {
    width: 100%;
    max-width: 500px;

    padding: 24px;

    border-radius: 60px;

    text-decoration: none;

    font-size: 22px;
    font-weight: 600;

    transition: 0.4s;
}

/* PRIMARY BUTTON */

.btn-primary {
    background:
        linear-gradient(to right,
            #9b6733,
            #412a14);

    color: white;

    box-shadow: 0 0 30px rgba(255, 128, 0, 0.26);
}

.btn-primary:hover {
    transform: translateY(-5px);
}

/* SECOND BUTTON */

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* SCROLL ICON */

.scroll {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* MOUSE */

.mouse {
    width: 10px;
    height: 45px;
    background: #888;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: "";
    position: absolute;

    width: 8px;
    height: 15px;

    background: #a87746;

    border-radius: 10px;

    top: 8px;
    left: 1px;

    animation: scroll 1.5s infinite;
}

/* ANIMATION */

@keyframes scroll {

    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }

}

/* ARROW */

.arrow {
    color: #777;
    font-size: 25px;

    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

}

/* RESPONSIVE */

@media(max-width:768px) {

    h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        font-size: 18px;
        padding: 20px;
    }

}

.about-section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
}

/* SMALL TITLE */

.small-title {
    color: #b49332;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

/* MAIN TITLE */

.about-section h1 {
    font-size: 70px;
    color: #4b2d0f;
    font-weight: 800;
    margin-bottom: 25px;
}

/* LINE */

.line {
    width: 160px;
    height: 8px;

    margin: 0 auto 90px;

    border-radius: 20px;

    background:
        linear-gradient(to right,
            #915a23,
            #d4af37);
}

/* CARD */

.about-card {
    max-width: 760px;
    margin: auto;

    background: white;

    border: 1px solid #d9ded9;

    border-radius: 35px;

    padding: 60px 40px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* IMAGE */

.image-box {
    width: 320px;
    height: 320px;

    margin: auto;

    border-radius: 50%;

    padding: 10px;

    border: 5px solid #d4af37;

    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* NAME */

.about-card h2 {
    margin-top: 45px;
    font-size: 55px;
    color: #110a03;
    font-weight: 700;
}

/* PROFESSION */

.about-card h3 {
    margin-top: 10px;
    color: #667267;
    font-size: 30px;
    font-weight: 400;
}

/* STATS */

.stats {
    margin-top: 60px;

    background: #f7f9f7;

    border: 1px solid #d9ded9;

    border-radius: 25px;

    padding: 40px 20px;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* STAT */

.stat-box h4 {
    color: #6d461e;
    font-size: 55px;
    font-weight: 700;
}

.stat-box p {
    color: #5f695f;
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* DIVIDER */

.divider {
    width: 1px;
    height: 90px;
    background: #d9ded9;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .about-section h1 {
        font-size: 48px;
    }

    .image-box {
        width: 230px;
        height: 230px;
    }

    .about-card h2 {
        font-size: 32px;
    }

    .about-card h3 {
        font-size: 20px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .divider {
        width: 80%;
        height: 1px;
    }

}

/* SECTION */

.about-text-section {
    width: 100%;
    padding: 80px 25px;
    display: flex;
    justify-content: center;
}

/* CONTAINER */

.text-container {
    max-width: 760px;
}

/* TITLE */

.text-container h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #110a03;
    margin-bottom: 45px;
}

/* PARAGRAPH */

.text-container p {
    font-size: 28px;
    line-height: 1.9;
    color: #677067;
    margin-bottom: 45px;
    font-weight: 400;
}

/* BOLD TEXT */

.text-container span {
    color: #110a03;
    font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .text-container h1 {
        font-size: 42px;
    }

    .text-container p {
        font-size: 20px;
        line-height: 1.8;
    }

}

/* PRIMARY SECTION */

.primary-section{
    padding: 100px 50px;
    color: white;
}

/* Small Top Text */
.section-title{
    color: #8b4804;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Main Heading */
.primary-section h2{
    font-size: 70px;
    margin-bottom: 20px;
    color: white;

    text-shadow:
    0 0 10px #fff,
    0 0 25px #8d4905;
}

/*  Line */
.small-line{
    width: 100px;
    height: 4px;
    background: #884502;
    border-radius: 20px;
    margin-bottom: 50px;
}

/* Box */
.primary-box{
    width: 100%;
    max-width: 750px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.1);

    padding: 50px;

    border-radius: 40px;

    backdrop-filter: blur(10px);

    box-shadow:
    0 0 30px #7c4003;

}

/* Text */
.primary-box p{
    font-size: 24px;
    line-height: 2;
    color: #e6d9ff;
}

/* Mobile Responsive */
@media(max-width:768px){

    .primary-section{
        padding: 70px 25px;
    }

    .primary-section h2{
        font-size: 50px;
    }

    .primary-box{
        padding: 30px;
        border-radius: 25px;
    }

    .primary-box p{
        font-size: 18px;
        line-height: 1.8;
    }

}
/* SECONDARY SECTION */

.secondary-section{
    padding: 100px 50px;
    color: white;
}

/* Small Top Text */
.section-title{
    color: #8b4805;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Main Heading */
.secondary-section h2{
    font-size: 70px;
    margin-bottom: 20px;
    color: white;

    text-shadow:
    0 0 10px #fff,
    0 0 25px #834304;
}

/*  Line */
.small-line{
    width: 100px;
    height: 4px;
    background: #703902;
    border-radius: 20px;
    margin-bottom: 50px;
}

/* Box */
.secondary-box{
    width: 100%;
    max-width: 750px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.1);

    padding: 50px;

    border-radius: 40px;

    backdrop-filter: blur(10px);

    box-shadow:
    0 0 30px #804103;

}

/* Text */
.secondary-box p{
    font-size: 24px;
    line-height: 2;
    color: #e6d9ff;
}

/* Mobile Responsive */
@media(max-width:768px){

    .secondary-section{
        padding: 70px 25px;
    }

    .secondary-section h2{
        font-size: 50px;
    }

    .secondary-box{
        padding: 30px;
        border-radius: 25px;
    }

    .secondary-box p{
        font-size: 18px;
        line-height: 1.8;
    }

}
/* SIWES SECTION */

.siwes-section{
    padding: 100px 50px;
    color: white;
}

/* Small Top Text */
.section-title{
    color: #804103;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Main Heading */
.siwes-section h2{
    font-size: 70px;
    margin-bottom: 20px;
    color: white;

    text-shadow:
    0 0 10px #fff,
    0 0 25px #804103;
}

/*  Line */
.small-line{
    width: 100px;
    height: 4px;
    background: #804103;
    border-radius: 20px;
    margin-bottom: 50px;
}

/* Box */
.siwes-box{
    width: 100%;
    max-width: 750px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.1);

    padding: 50px;

    border-radius: 40px;

    backdrop-filter: blur(10px);

    box-shadow:
    0 0 30px #804103;

}

/* Text */
.siwes-box p{
    font-size: 24px;
    line-height: 2;
    color: #e6d9ff;
}

/* Mobile Responsive */
@media(max-width:768px){

    .siwes-section{
        padding: 70px 25px;
    }

    .siwes-section h2{
        font-size: 50px;
        padding-right: 30px;
    }

    .siwes-box{
        padding: 30px;
        border-radius: 25px;
    }

    .siwes-box p{
        font-size: 18px;
        line-height: 1.8;
    }

}
/* SKILLS SECTION */

.skills-section{
    padding: 100px 50px;
    color: white;
}

/* Small Top Text */
.skills-title{
    color: #804103;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Main Heading */
.skills-section h2{
    font-size: 70px;
    margin-bottom: 20px;

    text-shadow:
    0 0 10px #fff,
    0 0 25px #bb6006;
}

/* Purple Line */
.skills-line{
    width: 100px;
    height: 4px;
    background:#804103;
    border-radius: 20px;
    margin-bottom: 60px;
}

/* Skills Layout */
.skills-container{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

/* Skill Box */
.skill-box{
    padding: 30px 50px;

    background: rgba(255,255,255,0.05);

    border: 1px solid #804103;

    border-radius: 40px;

    font-size: 28px;
    color: #f1e6ff;

    backdrop-filter: blur(10px);

    box-shadow:
   #804103;

    transition: 0.3s;
}

/* Hover Effect */
.skill-box:hover{
    transform: translateY(-5px);
    box-shadow:
    0 0 30px #804103;
}

/* Mobile Responsive */
@media(max-width:768px){

    .skills-section{
        padding: 70px 25px;
    }

    .skills-section h2{
        font-size: 50px;
    }

    .skill-box{
        width: 100%;
        text-align: center;
        font-size: 22px;
        padding: 25px;
    }

}

/* CONTACT SECTION */

.contact{
    padding: 100px 30px;
}

/* Top Small Text */
.top-text{
    color: #804103;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Main Heading */
.contact h1{
    font-size: 70px;

    text-shadow:
    0 0 10px #fff,
    0 0 25px #804103;
}

/* Underline */
.underline{
    width: 100px;
    height: 4px;
    background: #804103;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Contact Card */
.contact-card{

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 40px;

    padding: 50px 35px;

    backdrop-filter: blur(10px);

    box-shadow:
    0 0 30px #804103;

    max-width: 750px;
}

/* Description */
.description{
    font-size: 25px;
    line-height: 1.8;
    color: #e5d7ff;

    margin-bottom: 40px;
}

/* Emoji */
.emoji{
    font-size: 50px;
    margin-bottom: 40px;
}

/* Contact Boxes */
.box{
    display: flex;
    align-items: center;
    gap: 20px;

    background: rgba(255,255,255,0.03);

    border: 1px solid #804103;

    padding: 25px;

    border-radius: 25px;

    margin-bottom: 25px;

    transition: 0.3s;
}

/* Hover */
.box:hover{
    transform: translateY(-5px);

    box-shadow:
    0 0 20px #804103;
}

/* Icons */
.icon{
    width: 60px;
    height: 60px;

    background: #804103;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 20px;

    font-size: 28px;
}

/* Titles */
.box h3{
    color: white;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

/* Text */
.box span{
    color: #d5c2ff;
    font-size: 18px;
}

/* MOBILE */
@media(max-width:768px){

    .contact{
        padding: 70px 20px;
    }

    .contact h1{
        font-size: 50px;
    }

    .description{
        font-size: 20px;
    }

    .box{
        flex-direction: row;
        align-items: center;
    }

}
.footer{
    background: #0f0f0f;
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-box h3{
    margin-bottom: 15px;
    color: #804103;
}

.footer-box p,
.footer-box a{
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-box a:hover{
    color: #804103;
}

.bottom{
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 13px;
    color: #888;
}

/* Responsive */
@media(max-width:768px){
    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
}