* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      user-select: none;
    }

:root {
  --white: #FFFFFF;
  --gray: #898989;
  --dark: #211f1e;
  --accent: #FC8C0A;
}

    html {
      scroll-padding-top: 100px;
      scroll-behavior: smooth;
    }

/* Hide scrollbar, keep scroll working */
html, body {
  overflow-y: scroll;       
  scrollbar-width: none;    
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;           
}


    body {
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      font-weight: 400;
      line-height: 1.6;  
}


    /* HEADER */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: #211f1e;
      z-index: 1000;
      padding: 1rem 0;
      height: 80px;
      transition: all 0.3s ease;
    }

    header.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
  
    }

    .logo {
      height: 120px;
      transition: transform 0.2s ease;
      margin-top: -30px;

    }

    .logo:hover {
      transform: scale(1.5);
    }

    nav {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    nav a {
      color: #FFFFFF;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
      margin-top: -30px;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #FC8C0A;
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: #FC8C0A;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background-color: #211f1e;
    }

    .menu-toggle span {
      width: 28px;
      height: 3px;
      background:#FFFFFF;
      transition: 0.3s;
      border-radius: 2px;
    }

    /* HERO SECTION */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 8rem 2rem 4rem;
      background: linear-gradient(180deg, #b89cff 0%, #9bd3ff 100%);
      background-image: url('Pictures/11.png');
      background-size: cover;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(30px, -30px); }
    }


    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 800px;
      position: relative;
      z-index: 2;
    }

    .greeting {
      font-size: 2rem;
      color: #242424;
      margin-bottom: 1rem;
      opacity: 0;
      animation: slideInLeft 0.8s ease forwards;
    }

    .hero-title {
  font-size: 5rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid #fff;
  width: 0;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #efe3cc, #ffd700, #ff9800, #ef860d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: typing 7s steps(15, end) infinite,
             blinkCaret 0.9s step-end infinite;
}

/* Type → Hold → Delete → Restart */
@keyframes typing {
  0% { width: 0; }
  40% { width: 100%; }
  60% { width: 100%; }
  100% { width: 0; }
}

@keyframes blinkCaret {
  from, to { border-color: transparent; }
  50% { border-color: #FC8C0A; }
}

    .hero-subtitle {
      font-size: 1.8rem;
      color: #898989;
      margin-bottom: 2rem;
      opacity: 0;
      animation: slideInLeft 0.8s ease 0.4s forwards;
    }

    .hero-description {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #898989;
      max-width: 600px;
      opacity: 0;
      animation: slideInLeft 0.8s ease 0.6s forwards;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

.highlight {
  color:#FC8C0A; 
  font-weight: 400;
}

    /* Wave Shape Divider */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(130% + 2px);
  height: 100px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: #FFFFFF;
}

    /* PORTFOLIO SECTION */
    
    .projects-section {
      position: relative;
      padding: 8rem 0;
      background: #FFFFFF;
    }

    .section-title {
      font-weight: 400;
      text-align: center;
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      background: #211f1e;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      margin-top: -2rem;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .projects-section .section-subtitle {
     text-align: center;
     color: #898989;
     margin-bottom: 2rem;
      }

    /* Horizontal Scroll Container */
    .horizontal-scroll {
      display: flex;
      gap: 2rem;
      padding: 2rem 4rem;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .horizontal-scroll::-webkit-scrollbar {
      display: none;
    }

    /* Project Card */
    .project-card {
      flex: 0 0 600px;
      height: 700px;
      scroll-snap-align: center;
      position: relative;
      cursor: pointer;
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .project-card:hover {
      transform: translateY(-20px) scale(1.02);
    }

 /*TAG*/

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(10px); }
}

/* Device Frame */

    .device-frame {
      width: 100%;
      height: 100%;
      position: relative;
      border-radius: 40px;
      padding: 20px;
      background: #413f3f;
    }

    /* Tablet Frame Style */
    .device-frame.tablet {
      border-radius: 30px;
      padding: 30px 25px;
    }

    .device-frame.tablet::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -8px;
      width: 4px;
      height: 60px;
      background:  #898989;
      border-radius: 2px;
      transform: translateY(-50%);
    }

    .device-frame.tablet::after {
      content: '';
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }

    /* Phone Frame Style */
    .device-frame.phone {
      width: 350px;
      border-radius: 50px;
      padding: 15px;
    }

    .device-frame.phone::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 25px;
      background: #1a1a1a;
      border-radius: 0 0 20px 20px;
      z-index: 10;
    }

    .device-frame.phone::after {
      content: '';
      position: absolute;
      top: 22px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 6px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      z-index: 11;
    }

    /* Screen */
    .device-screen {
      width: 100%;
      height: 100%;
      border-radius: 25px;
      overflow: hidden;
      background: #000;
      position: relative;
    }

    .device-frame.tablet .device-screen {
      border-radius: 20px;
    }

    .device-frame.phone .device-screen {
      border-radius: 35px;
    }

    .project-image {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .project-card:hover .project-image img {
      transform: scale(1.1);
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3rem;
      opacity: 0;
      transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
      backdrop-filter: blur(0px);
}

.project-card:hover .project-overlay {
  opacity: 1;
  backdrop-filter: blur(8px);
}

    .project-number {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 5rem;
      font-weight: 900;
      opacity: 0.2;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .project-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color:  #dbd6c7; /* bright and readable on dark overlay */
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .project-card:hover .project-title {
      transform: translateY(0);
    }

    .project-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF; /* bright and readable on dark overlay */
  opacity: 1;     /* remove fade */
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s, color 0.3s ease;
}

    .project-card:hover .project-description {
  color: #FFFFFF;
  transform: translateY(0);
}


    .project-tags {
      display: flex;
      gap: 0.5rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }

   .tag {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(126, 119, 119, 0.95);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.6s ease forwards;
}

.tag:nth-child(1) { animation-delay: 0.1s; }
.tag:nth-child(2) { animation-delay: 0.2s; }
.tag:nth-child(3) { animation-delay: 0.3s; }
.tag:nth-child(4) { animation-delay: 0.4s; }

.tag:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px rgba(0, 140, 255, 0.4);
  cursor: pointer;
}

    /* Responsive */
    @media (max-width: 768px) {
      .project-card {
        flex: 0 0 90vw;
        height: 600px;
      }

      .horizontal-scroll {
        padding: 2rem 1rem;
        gap: 2rem;
      }

      .projects-section {
        padding: 4rem 0;
      }

      .project-title {
        font-size: 1.8rem;
      }

      .project-overlay {
        padding: 2rem;
      }
    }
    
.project-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-image video {
  transform: scale(1.1);
}


/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
  padding: 6rem 2rem;
  background: #FFFFFF;
  text-align: center;
}

.certifications .section-subtitle {
  font-size: 1rem;
  color:#898989;
  margin-bottom: 3rem;
}
.certifications .section-title {
  margin-top: 0; 
  margin-bottom: 2rem;
}

.certifications-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.certification-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.certification-card img {
  width:100%;
  height: 160px;
  object-fit: contain;
}

.certification-content {
  padding: 1.5rem;
}

.certification-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #898989;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 400;
}


    /* CONTACT FORM SECTION */
.contact {
  padding: 1rem 2rem 8rem; 
  text-align: center;
}

.contact .section-title {
  margin-top: 0; 
  margin-bottom: 2rem;
}

.contact .section-subtitle {
  margin-bottom: 2rem;
}

/* Layout */
.contact-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

/* Left side: image */
.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right side: form */

.contact-form-container {
  flex: 1;
  padding: 3rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  text-align: left;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #898989;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background: #FFFFFF;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ed781f;
  background: #FFFFFF;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(90deg,#f6f1d8, #ff9800, #FC8C0A);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #f19142;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-image {
    height: 280px;
  }

  .contact-form-container {
    padding: 2rem;
  }
}


    /* FOOTER */
    footer {
      background: #242424;
      color: #FFFFFF;
      padding: 4rem 2rem 2rem;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-name {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      background: #FFFFFF;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
        display: inline-block;
        transition: 0.3s ease;
    }
    
    .footer-name:hover {
  -webkit-text-fill-color: #ef860d;
  transform: translateY(-5px);
}

     .footer-subtext {
  font-size: 1rem;
  color: #FFFFFF;
  display: block; 
  margin-bottom: 2rem;
}

    .social-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .social-links a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-links a:hover {
      background: linear-gradient(90deg, #FFFFFF, #ffd700, #ff9800, #ef860d);
      transform: translateY(-5px);
    }

    .social-links svg {
      width: 24px;
      height: 24px;
      fill: #FFFFFF;
    }

    .footer-text {
      color: #FFFFFF;
      margin-top: 2rem;
    }

    /* RESPONSIVE */
     @media (max-width: 768px) {
       .menu-toggle {
         display: flex; 
        } 
        nav { 
          position: fixed;
           top: 80px; right: -100%; 
           width: 250px; 
           height: calc(100vh - 80px); 
           background: #000; 
           flex-direction: column;
            padding: 2rem; 
            transition: right 0.3s ease; 
            gap: 2rem; 
          }
             nav.active {
               right: 0;
               } 
               .hero-title { 
                font-size: 3rem;
               } 
               .hero-subtitle { 
                font-size: 1.4rem;
               } 
               .section-title { 
                font-size: 2rem;

              } .portfolio-grid { 
                grid-template-columns: 1fr; 
              } 

            }
/* Cookie Banner */
#cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      max-width: 600px;
      margin: auto;
      background: rgba(255, 255, 255, 0.95);
      color: #979191;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      z-index: 9999;
       font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      flex-wrap: wrap;
    }

    #cookie-banner p {
      margin: 0;
      flex: 1;
      text-align: left;
      line-height: 1.4;
    }

    #accept-cookies {
      background: #FC8C0A;
      color: #111;
      font-weight: 600;
      border: none;
      padding: 8px 16px;
      border-radius: 4px;
      cursor: pointer;
      text-align: center;
      transition: background 0.3s ease;
    }

    #accept-cookies:hover {
      background: #f6c461;
    }

    @media (max-width: 600px) {
      #cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
        padding: 20px;
      }

      #cookie-banner p {
        text-align: center;
      }

      #accept-cookies {
        width: 100%;
      }
    }

    /* Chat Bot */
    .chat-button {
      position: fixed;
      bottom: 150px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: #FC8C0A;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
      z-index: 1000;
       font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .chat-button:hover {
      transform: scale(1.1);
    }

    .chat-button svg {
      width: 30px;
      height: 30px;
      fill: #111;
    }
    .chat-window {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 350px;
      height: 500px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      display: none;
      flex-direction: column;
      z-index: 1000;
      overflow: hidden;
    }

    .chat-window.active {
      display: flex;
    }

    .chat-header {
      background:#FC8C0A;
      color: #111;
      padding: 15px 20px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .chat-close {
      cursor: pointer;
      font-size: 24px;
      line-height: 1;
    }
    .chat-messages {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
      background: #f9f9f9;
    }

    .message {
      margin-bottom: 15px;
      display: flex;
      gap: 10px;
    }

    .message.bot {
      justify-content: flex-start;
    }

    .message.user {
      justify-content: flex-end;
    }

    .message-bubble {
      max-width: 70%;
      padding: 10px 15px;
      border-radius: 12px;
      word-wrap: break-word;
    }

    .message.bot .message-bubble {
      background: white;
      color: #333;
      border: 1px solid #e0e0e0;
    }

    .message.user .message-bubble {
      background: #FC8C0A;
      color: #111;
    }
    .quick-questions {
      padding: 10px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      border-top: 1px solid #e0e0e0;
      background: white;
    }

    .quick-question {
      background: #f5f5f5;
      border: 1px solid #ddd;
      padding: 8px 12px;
      border-radius: 20px;
      cursor: pointer;
      font-size: 13px;
      transition: all 0.2s;
    }

    .quick-question:hover {
      background: #FC8C0A;
      border-color: #FC8C0A;
    }

    .chat-input-area {
      padding: 15px 20px;
      border-top: 1px solid #e0e0e0;
      display: flex;
      gap: 10px;
      background: white;
    }

    .chat-input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #ddd;
      border-radius: 20px;
      outline: none;
      font-size: 14px;
    }

    .chat-send {
      background: #FC8C0A;
      border: none;
      padding: 10px 20px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.2s;
    }

    .chat-send:hover {
      background: #f3c939;
    }
    /* Responsive */
    @media (max-width: 480px) {
      .chat-window {
        width: calc(100% - 40px);
        height: 70vh;
        bottom: 80px;
      }
    }