* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #cfc9bc;
    --bg-card: #c8c2b4;
    --bg-deep: #bfb9aa;
    --ink: #1a1a18;
    --ink-mid: #3a3832;
    --ink-soft: #6b6660;
    --rule: rgba(26, 26, 24, 0.18);
    --shadow: rgba(26, 26, 24, 0.12);
}


body {
    background-color: #ded9cc;
}

.box {
    background-color: black;
    color: white;
    height: 4vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


    .header {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 19px;
    font-family: 'Great Vibes', serif;
}

.nav {
    display: flex;
    gap: 30px;
    font-family: "Playfair Display", serif;
}

.nav a {
    text-decoration: none;
    color: black;
    font-size: 19px;
    font-weight: 400;
}

.nav a:hover {
    transition: 0.3s ease-in-out;
    color: #100496;
}

.social {
    display: flex;
    gap: 20px;
}

.social a {
    text-decoration: none;
    color: black;
    font-size: 20px;
}

.social a:hover {
    color: #100496;
    transition: 0.3s ease-in-out;
}

/* MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}


/* Home section CSS */

.Home {
    display: flex;
    margin: 23px;
    justify-content: space-around;
    margin-top: 7%;
}


.left-text {
    color: rgb(0, 0, 0);
    width: 45%;
    height: auto;
}

.right-img {
    width: 45%;
    height: auto;
}

.right-img img {
    width: 35vw;
    border-radius: 50%;
    box-shadow: 0 0 25px;
    transition: 0.4s ease-in-out;
    margin-top: -7%;
}


.element-name {
    font-size: 40px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.element-title {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 3s steps(40, end) infinite, blink 0.7s infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }

    40% {
        width: 100%;
    }

    60% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


.element-para {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 2%;
}


.social-icons a {
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    padding: 1rem;
    background: transparent;
    border-radius: 50%;
    margin: 3rem 0.5rem;
    transition: 0.3s ease;
    color: black;
    margin-top: 2%;
}

.social-icons a:hover {
    color: rgb(0, 0, 0);
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 0 25px;
}

.btn-home button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 20px;
    font-family: "playfair display", serif;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 1rem;
}

.btn-home button:hover {
    color: rgb(11, 11, 11);
    transform: scale(1.1) translateY(-5px);
    color: rgb(0, 0, 0);
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 0 25px;
}

.btn-home button a {
    text-decoration: none;
    color: black;

}

.btn-home button a:hover {
    color: rgb(0, 0, 0);
}




/* About Section */

.about {
    display: flex;
    justify-content: space-around;
    margin: 23px;
    margin-top: 7%;
}

.left-about {
    background-color: black;
    color: white;
    width: 45%;
    height: auto;
}

.right-about {
    color: black;
    width: 45%;
    height: auto;
}

.element-about-heading {
    font-size: 40px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 7%;
}

.element-about-title {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 1%;
}

.element-about-para {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 2%;
}


/* My work section CSS */

.element-work-heading {
    font-size: 40px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 7%;
}

.element-work-title {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 1%;
}

.work-section {
    padding: 60px 10%;
    color: white;
    text-align: center;
}

.work-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.work-card {
    background: #1e293b;
    padding: 25px;
    width: 300px;
    border-radius: 15px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.work-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.work-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.work-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #cbd5f5;
}

.work-card a {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    color: white;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.work-card a:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
}

.element-about-p {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 4%;
    color: black;
}



/* my sevices css */

section.services {
    padding: 80px 20px;
    text-align: center;
}


.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: #1e293b;
    color: #fff;
    width: 250px;
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.4s, box-shadow 0.4s;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}



.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #d1d1d1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}



@media screen and (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}

.element-services-heading {
    font-size: 40px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 7%;
}

.element-services-title {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 1%;
}


/* Education section CSS */

.container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: 7%;
}

/* ── HEADER ── */

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

h1 em {
    font-style: italic;
    font-weight: 400;
}

.rule {
    width: 52px;
    height: 2px;
    background: var(--ink);
    margin-top: 22px;
    opacity: 0.7;
}

/* ── TIMELINE ── */
.timeline {
    margin-bottom: 68px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--rule);
}

.edu-card {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.55s forwards;
}

.edu-card:nth-child(1) {
    animation-delay: 0.35s;
}

.edu-card:nth-child(2) {
    animation-delay: 0.5s;
}

.edu-card:nth-child(3) {
    animation-delay: 0.65s;
}

.edu-card:nth-child(4) {
    animation-delay: 0.8s;
}

.edu-dot {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 18px;
}

.dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.85;
}

.dot-ongoing {
    background: var(--ink);
}

.dot-ongoing .dot-emoji {
    filter: invert(1);
}

.edu-body {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 22px 26px 20px;
    position: relative;
    transition: 0.25s, box-shadow 0.25s, transform 0.25s;
}

.edu-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: var(--ink);
    opacity: 0.15;
    border-radius: 0 2px 2px 0;
    transition: opacity 0.25s;
}

.edu-body:hover {
    background: var(--bg-deep);
    box-shadow: 4px 4px 0 rgba(26, 26, 24, 0.1);
    transform: translate(-2px, -2px);
}

.edu-body:hover::before {
    opacity: 0.45;
}

.edu-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.edu-years {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--ink-soft);
    background: rgba(26, 26, 24, 0.07);
    border: 1px solid rgba(26, 26, 24, 0.14);
    padding: 3px 10px;
    border-radius: 2px;
}

.badge-ongoing {
    font-family: 'DM Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    color: var(--ink);
    background: rgba(26, 26, 24, 0.1);
    border: 1px solid rgba(26, 26, 24, 0.28);
    padding: 3px 10px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.badge-ongoing::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ink);
    animation: blink 1.4s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.15
    }
}

.edu-degree {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 5px;
}

.edu-field {
    font-family: 'DM Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.edu-inst {
    font-family: 'EB Garamond', serif;
    font-size: 0.93rem;
    font-style: italic;
    color: var(--ink-mid);
    border-top: 1px solid var(--rule);
    padding-top: 10px;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 580px) {
    .edu-card {
        gap: 16px;
    }

    .dot {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .timeline::before {
        left: 15px;
    }

    .edu-body {
        padding: 16px 18px 14px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }
}

.element-heading-education {
    font-size: 40px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 7%;

}

.element-title-education {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 1%;
}

.element-para-education {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 4%;
    color: black;
    text-align: center;
}






/* certificates section css */


.element-cre-heading{
    font-size: 40px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 7%;
}

.element-cre-title {
    font-size: 18px;
    font-family: "playfair display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: 1%;
}


/* contact form css */


  /* Animated background */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(200,169,126,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(126,155,200,0.07) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
 
    /* Grid lines */
    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }
 
    .wrapper {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      gap: 0;
    }
 
    /* LEFT PANEL */
    .left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 0;
      border-right: 1px solid var(--border);
      position: sticky;
      top: 0;
      height: 100vh;
    }
 
    .eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }
 
    .left h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 6vw, 80px);
      font-weight: 300;
      line-height: 1.0;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
      color: var(--text);
    }
 
    .left h1 em {
      font-style: italic;
      color: var(--accent);
    }
 
    .left p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
      max-width: 380px;
      margin-bottom: 48px;
    }
 
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
 
    .info-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      color: var(--muted);
      letter-spacing: 0.05em;
    }
 
    .info-icon {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
    }
 
    .deco-line {
      position: absolute;
      right: -1px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 200px;
      background: linear-gradient(to bottom, transparent,  transparent);
    }
 
    /* RIGHT PANEL — FORM */
    .right {
      padding: 80px 0 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    form {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
 
    .field {
      position: relative;
      border-bottom: 1px solid var(--border);
      padding: 28px 0 0;
      transition: border-color 0.3s;
    }
 
    .field:not(:last-of-type):not(.field-full) {
      border-right: 1px solid var(--border);
    }
 
    .field-full {
      grid-column: 1 / -1;
    }
 
    .field:focus-within {
      border-color: rgba(200,169,126,0.4);
    }
 
    
    .field label {
      position: absolute;
      top: 12px;
      left: 0;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgb(0, 0, 0);
      pointer-events: none;
      transition: opacity 0.3s;
    }
 
    .field:not(.field-full) input,
    .field:not(.field-full) select {
      padding: 0 20px 0 0;
    }
    .field-full input,
    .field-full textarea {
      padding: 0;
    }
 
    .field input,
    .field textarea,
    .field select {
      width: 100%;
      background:#c8c2b4;
      border: none;
      outline: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 300;
      color: rgb(255, 255, 255);
      padding-bottom: 16px;
      resize: none;
      line-height: 1.5;
    }
 
    .field textarea {
      min-height: 120px;
    }
  option {
      background: transparent;
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(232,228,220,0.2);
    }
 
    .field select option {
      background: #1a1a22;
      color: var(--text);
    }
 
    /* submit area */
    .submit-area {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 40px;
      gap: 24px;
    }
 
    .privacy-note {
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--muted);
      max-width: 220px;
      line-height: 1.6;
    }
 
    .btn-submit {
      position: relative;
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 18px 40px;
      cursor: pointer;
      overflow: hidden;
      transition: color 0.4s;
      flex-shrink: 0;
    }
 
    .btn-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
      z-index: 0;
    }
 
    .btn-submit:hover::before { transform: scaleX(1); }
    .btn-submit:hover { color: var(--bg); }
 
    .btn-submit span {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .btn-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .btn-submit:disabled::before { transform: scaleX(0) !important; }
 
    /* Toast */
    .toast {
      position: fixed;
      bottom: 40px;
      right: 40px;
      padding: 18px 28px;
      font-size: 13px;
      letter-spacing: 0.08em;
      font-family: 'Syne', sans-serif;
      border-radius: 2px;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 100;
      pointer-events: none;
    }
    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }
    .toast.success {
      background: rgba(112,200,160,0.15);
      border: 1px solid var(--success);
      color: var(--success);
    }
    .toast.error {
      background: rgba(224,112,112,0.15);
      border: 1px solid var(--error);
      color: var(--error);
    }
 
    /* Loading spinner */
    .spinner {
      width: 14px;
      height: 14px;
      border: 2px solid currentColor;
      border-top-color: transparent;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: none;
    }
    .loading .spinner { display: block; }
    .loading .btn-text { display: none; }
 
    @keyframes spin { to { transform: rotate(360deg); } }
 
    /* Stagger animation on load */
    .animate-in {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    .delay-5 { animation-delay: 0.5s; }
    .delay-6 { animation-delay: 0.6s; }
 
    /* Responsive */
    @media (max-width: 900px) {
      .wrapper {
        grid-template-columns: 1fr;
        padding: 0 24px;
      }
      .left {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 60px 0 40px;
      }
      .right { padding: 40px 0 60px; }
      .deco-line { display: none; }
      .left h1 { font-size: 48px; }
      .form-row { grid-template-columns: 1fr; }
      .field:not(:last-of-type):not(.field-full) { border-right: none; }
    }






    /* footer css */


       footer {
      width: 100%;
      background: #111111;
      padding: 28px 36px 24px;
      font-family: 'Inter', sans-serif;
    }
 
    /* TOP META ROW */
    .top-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: start;
      margin-bottom: 0;
    }
 
    .top-row .col {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
 
    .top-row .col:nth-child(2) {
      align-items: center;
    }
 
    .top-row .col:nth-child(3) {
      align-items: flex-end;
      text-align: right;
    }
 
    .meta-text {
      font-size: 11px;
      color: #888;
      line-height: 1.5;
      letter-spacing: 0.01em;
    }
 
    .meta-link {
      font-size: 11px;
      color: #aaa;
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
      line-height: 1.5;
    }
 
    /* BIG NAME */
    .name-row {
      margin: -12px 0 -16px;
      line-height: 1;
      overflow: hidden;
    }
 
    .big-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(80px, 14vw, 160px);
      color: #f0ede8;
      letter-spacing: -0.01em;
      line-height: 0.9;
      display: block;
      white-space: nowrap;
      text-align: center;
    }
 
    /* BOTTOM ROW */
    .bottom-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      padding-top: 10px;
      border-top: 1px solid #2a2a2a;
    }
 
    .bottom-row .col {
      display: flex;
      flex-direction: column;
    }
 
    .bottom-row .col:nth-child(2) {
      align-items: center;
    }
 
    .bottom-row .col:nth-child(3) {
      align-items: flex-end;
    }
 
    .bottom-link {
      font-size: 11px;
      color: #aaa;
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
      letter-spacing: 0.01em;
    }
 
    .copyright {
      font-size: 11px;
      color: #555;
      letter-spacing: 0.01em;
    }
 
    .copyright a {
      color: #777;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
 
    a:hover { color: #fff !important; }






    /* responsive */



/* 📱 MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: transparent;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .social {
        display: none;
    }
}


/* ===============================
   GLOBAL RESPONSIVE FIXES
=================================*/
img {
    width: 100%;
    height: auto;
}

/* ===============================
   TABLET (≤1024px)
=================================*/
@media (max-width: 1024px) {

    .Home {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-text, .right-img {
        width: 80%;
    }

    .right-img img {
        width: 50vw;
        margin-top: 20px;
    }

    .about {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .right-about {
        width: 80%;
    }

    .service-cards {
        gap: 20px;
    }

    .work-container {
        gap: 20px;
    }
}


/* ===============================
   MOBILE (≤768px)
=================================*/
@media (max-width: 768px) {

    /* HEADER */
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
          background: rgba(255, 255, 255, 0.1); /* transparent */
    backdrop-filter: blur(10px); /* main effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .social {
        display: none;
    }

    /* HOME */
    .Home {
        flex-direction: column;
        margin-top: 10%;
    }

    .left-text {
        width: 100%;
        text-align: center;
    }

    .right-img {
        width: 100%;
        text-align: center;
    }

    .right-img img {
        width: 60%;
        margin-top: 20px;
    }

    .element-name {
        font-size: 30px;
    }

    .element-para {
        font-size: 16px;
    }

    .btn-home button {
        font-size: 16px;
        padding: 0.6rem 1.5rem;
    }

    /* ABOUT */
    .about {
        flex-direction: column;
    }

    .right-about {
        width: 100%;
    }

    /* SERVICES */
    .service-card {
        width: 90%;
    }

    /* WORK */
    .work-card {
        width: 90%;
    }

    /* CONTACT */
    .wrapper {
        grid-template-columns: 1fr;
    }

    .left {
        position: static;
        height: auto;
        padding: 40px 0;
        border: none;
        text-align: center;
    }

    .right {
        padding: 40px 0;
    }

    /* FOOTER */
    .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .top-row .col,
    .bottom-row .col {
        align-items: center !important;
    }

    .big-name {
        font-size: 60px;
    }
}


/* ===============================
   SMALL MOBILE (≤480px)
=================================*/
@media (max-width: 480px) {

    .box {
        font-size: 10px;
        padding: 5px;
    }

    .header {
        padding: 15px;
    }

    .logo h1 {
        font-size: 25px;
    }

    .element-name {
        font-size: 26px;
    }

    .element-title {
        font-size: 14px;
    }

    .element-para {
        font-size: 14px;
    }

    .right-img img {
        width: 75%;
    }

    .social-icons a {
        font-size: 20px;
        padding: 0.6rem;
    }

    .btn-home button {
        width: 100%;
        margin-top: 10px;
    }

    .big-name {
        font-size: 45px;
    }
}



footer {
  width: 100%;
  background: #111111;
  padding: 30px 20px;
  font-family: 'Inter', sans-serif;
}

/* TOP ROW */
.top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.top-row .col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.top-row .col:nth-child(2) {
  align-items: center;
}

.top-row .col:nth-child(3) {
  align-items: flex-end;
  text-align: right;
}

/* TEXT */
.meta-text,
.meta-link {
  font-size: 12px;
  color: #aaa;
}

.meta-link {
  text-decoration: underline;
  cursor: pointer;
}

/* BIG NAME */
.name-row {
  text-align: center;
  margin: 10px 0;
}

.big-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 10vw, 120px);
  color: #f0ede8;
  line-height: 1;
}

/* BOTTOM ROW */
.bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #2a2a2a;
  padding-top: 15px;
  gap: 10px;
}

.bottom-row .col {
  display: flex;
  flex-direction: column;
}

.bottom-row .col:nth-child(2) {
  align-items: center;
}

.bottom-row .col:nth-child(3) {
  align-items: flex-end;
}

.bottom-link {
  font-size: 12px;
  color: #aaa;
  text-decoration: underline;
}

.copyright {
  font-size: 11px;
  color: #555;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {

  .top-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .top-row .col {
    align-items: center !important;
  }

  .bottom-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bottom-row .col {
    align-items: center !important;
  }

  .big-name {
    font-size: 60px;
  }
  .box {
    background-color: black;
    color: white;
    width: 100%;
    padding: 10px 15px; /* better than fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Playfair Display", serif;
}

/* Text inside */
.box h2 {
    font-size: clamp(10px, 2.5vw, 16px); /* responsive text */
    line-height: 1.4;
}
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  footer {
    padding: 20px 10px;
  }

  .big-name {
    font-size: 40px;
  }

  .meta-text,
  .meta-link,
  .bottom-link {
    font-size: 11px;
  }

  .copyright {
    font-size: 10px;
  }
  .box {
    background-color: black;
    color: white;
    width: 100%;
    padding: 10px 15px; /* better than fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Playfair Display", serif;
}

/* Text inside */
.box h2 {
    font-size: clamp(10px, 2.5vw, 16px); /* responsive text */
    line-height: 1.4;
}
}

