/* =========================
   GLOBAL SETTINGS
========================= */
:root {
    --violet: #6a11cb;
    --orange: #fc4a1a;
    --light-bg: #f8f6ff;
    --dark: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light-bg);
    color: var(--dark);
}

/* =========================
   NAVBAR
========================= */
header {
    background: linear-gradient(90deg, var(--violet), var(--orange));
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1100px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

nav ul li a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(135deg, var(--violet), var(--orange));
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.hero img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.hero h1 {
    margin-top: 15px;
    font-size: 32px;
}

.hero p {
    margin: 10px 0 25px;
    font-size: 15px;
}

/* =========================
   HERO BUTTONS
========================= */
.buttons a {
    display: inline-block;
    padding: 10px 22px;
    margin: 6px;
    border-radius: 25px;
    background: linear-gradient(90deg, var(--orange), var(--violet));
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.buttons a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 0.95;
}

/* =========================
   SECTION COMMON
========================= */
.section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--violet), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section p {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
}

.section ul {
    margin-top: 15px;
    padding-left: 25px;
}

.section ul li {
    margin-bottom: 8px;
}

/* =========================
   LIGHT BACKGROUND SECTIONS
========================= */
.gray {
    background: #ffffff;
}

/* =========================
   SKILLS
========================= */
.skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.skills span {
    background: linear-gradient(90deg, var(--violet), var(--orange));
    color: white;
    padding: 10px 18px;
    margin: 8px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: default;
}

.skills span:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   PROJECTS
========================= */
.project {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.project:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =========================
   CONTACT FORM
========================= */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

form input,
form textarea {
    margin: 8px 0;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

form textarea {
    resize: none;
    height: 100px;
}

/* =========================
   CONTACT BUTTON
========================= */
form button {
    margin-top: 12px;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(90deg, var(--violet), var(--orange));
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

 .footer {
      background-color: #0d0000;
      color: #fff;
      text-align: center;
      padding: 1px 1px;
      font-family: "Poppins", sans-serif;
      position: relative;
      bottom: 0;
      width: 100%;
    }

    .footer-box {
      margin-bottom: 20px;
    }

    .footer-box h3 {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .opinion-input {
      padding: 8px 10px;
      border: none;
      border-radius: 5px;
      width: 200px;
      outline: none;
    }

    

    .footer-box button:hover {
      background-color: #444;
      color: #fff;
    }

    .footer-links {
      margin: 15px 0;
    }

    .footer-links a img {
      width: 28px;
      margin: 0 10px;
      transition: 0.3s;
      filter: brightness(0) invert(1);
    }

    .footer-links a img:hover {
      transform: scale(1.1);
      filter: brightness(1);
    }

    .footer-credit {
      margin-top: 15px;
      font-size: 13px;
      color: #888;
    }


