 * {
     font-family: 'Poppins', sans-serif;
     box-sizing: border-box;
 }
 html{
    scroll-padding-top: 100px;
 }

 body {
     background-color: #0a0a0a;
     color: #e0e0e0;
     line-height: 1.6;
     padding-top: 70px;
     /* Space for fixed navbar */
 }

 .navbar-custom {
    position: fixed;
     background-color: rgba(10, 10, 10, 0.95);
     padding: 12px 0;
 }

 .navbar-brand,
 .nav-link {
     color: #fff !important;
     font-weight: 400;
     transition: color 0.3s ease;
 }

 .nav-link {
     margin: 0 12px;
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 1.5px;
     bottom: 0;
     left: 0;
     background: #d9a7c7;
     transition: width 0.3s ease;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 100%;
 }

 .brand-tech {
     font-family: 'Fira Code', monospace;
     font-size: 0.75em;
     color: #d9a7c7;
 }

 /* Hero Section */
 .hero-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding: 100px 0;
     /*background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);*/
     background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(14, 13, 14, 0.9) 100%);
 }

 /* .bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 25% 25%, rgba(217, 167, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(217, 167, 199, 0.1) 0%, transparent 50%);
      z-index: 0;
    }*/
 .bg-pattern {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         radial-gradient(circle at 25% 25%, rgba(101, 42, 80, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 75% 75%, rgba(14, 13, 14, 0.1) 0%, transparent 50%);
     z-index: 0;
 }

 .code-element {
     position: absolute;
     background: rgba(20, 20, 30, 0.7);
     border: 1px solid rgba(217, 167, 199, 0.3);
     border-radius: 8px;
     opacity: 0.3;
     padding: 15px;
     font-family: 'Fira Code', monospace;
     font-size: 0.9rem;
     line-height: 1.6;
     z-index: 1;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .code-element-1 {
     top: 20%;
     left: 10%;
     transform: rotate(-5deg);
 }

 .code-element-2 {
     top: 0%;
     right: 10%;
     transform: rotate(3deg);
 }

 .code-element-3 {
     bottom: 20%;
     left: 15%;
     transform: rotate(-2deg);
 }

 .git-terminal {
     position: absolute;
     right: 5%;
     bottom: 15%;
     background: rgba(20, 20, 30, 0.8);
     border: 1px solid rgba(217, 167, 199, 0.3);
     border-radius: 8px;
     padding: 15px;
     font-family: 'Fira Code', monospace;
     font-size: 0.85rem;
     width: 300px;
     opacity: 0.3;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .terminal-header {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
     padding-bottom: 8px;
     border-bottom: 1px solid rgba(217, 167, 199, 0.2);
 }

 .terminal-buttons {
     display: flex;
     margin-right: 10px;
 }

 .terminal-btn {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     margin-right: 6px;
 }

 .terminal-btn-red {
     background: #ff5f56;
 }

 .terminal-btn-yellow {
     background: #ffbd2e;
 }

 .terminal-btn-green {
     background: #27c93f;
 }

 .terminal-title {
     font-size: 0.8rem;
     color: #d9a7c7;
 }

 .terminal-line {
     margin-bottom: 8px;
     line-height: 1.4;
 }

 .terminal-prompt {
     color: #27c93f;
 }

 .terminal-command {
     color: #d9a7c7;
 }

 .terminal-response {
     color: #b5cea8;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     margin: 0 auto;
     padding: 0 20px;
     text-align: center;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     margin-bottom: 20px;
     color: #fff;
 }

 .hero-content h1 span {
     color: #d9a7c7;
 }

 .typing {
     font-size: 1.2rem;
     margin-bottom: 30px;
     color: #c0c0c0;
     line-height: 1.8;
 }

 .tech-stack {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 25px;
     margin: 40px 0;
 }

 .tech-icon {
     font-size: 2.5rem;
     color: #d9a7c7;
     transition: transform 0.3s ease, color 0.3s ease;
 }

 .tech-icon:hover {
     transform: translateY(-5px);
     color: #fff;
 }

 .btn-custom {
     background: transparent;
     color: #d9a7c7;
     border: 2px solid #d9a7c7;
     padding: 12px 30px;
     font-size: 1.1rem;
     border-radius: 30px;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-custom:hover {
     background: #d9a7c7;
     color: #0a0a0a;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(217, 167, 199, 0.3);
 }

 /* About Section */
 .about-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 80px 15px;
 }

 .section-title {
     font-size: 2.5rem;
     margin-bottom: 30px;
     position: relative;
     padding-bottom: 10px;
     color: #fff;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 120px;
     height: 3px;
     background: linear-gradient(90deg, #d9a7c7, transparent);
     border-radius: 3px;
 }

 .about-content {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     margin-bottom: 60px;
 }

 .about-text {
     flex: 1;
     min-width: 320px;
     color: #c0c0c0;
 }

 .about-text p {
     margin-bottom: 1.2rem;
 }

 .about-image {
     flex: 1;
     min-width: 320px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .profile-image {
     max-width: 300px;
     /*border-radius: 8px;
      border: 1.5px solid rgba(217, 167, 199, 0.5);
      /*box-shadow: 0 0 10px #d9a7c7;*/

     object-fit: cover;
 }

 /* Skills Grid */
 .skills-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 25px;
     margin-bottom: 60px;
 }

 .skill-card {
     background: rgba(20, 20, 20, 0.7);
     border-left: 4px solid #d9a7c7;
     padding: 18px 20px;
     border-radius: 8px;
     color: #ddd;
     transition: background 0.3s ease;
 }

 .skill-card:hover {
     background: rgba(217, 167, 199, 0.1);
 }

 .skill-title {
     font-size: 1.2rem;
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     color: #d9a7c7;
 }

 .skill-icon {
     margin-right: 10px;
     font-size: 1.5rem;
 }

 /* Timeline */
 .timeline {
     position: relative;
     max-width: 700px;
     margin: 0 auto 60px auto;
     padding-left: 40px;
 }

 .timeline::before {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     left: 20px;
     width: 3px;
     background: rgba(217, 167, 199, 0.3);
     border-radius: 2px;
 }

 .timeline-item {
     position: relative;
     margin-bottom: 35px;
 }

 .timeline-dot {
     width: 16px;
     height: 16px;
     background: #d9a7c7;
     border-radius: 50%;
     position: absolute;
     left: 12px;
     top: 7px;
     box-shadow: 0 0 8px #d9a7c7;
 }

 .timeline-content {
     background: rgba(20, 20, 20, 0.7);
     padding: 18px 22px;
     border-radius: 8px;
     color: #ccc;
 }

 .timeline-date {
     font-size: 0.9rem;
     color: #d9a7c7;
     margin-bottom: 6px;
     font-weight: 500;
 }

 .timeline-title {
     font-size: 1.15rem;
     margin-bottom: 8px;
     font-weight: 600;
     color: #fff;
 }

 /* Hobbies Grid */
 .hobbies-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
     gap: 20px;
     margin-bottom: 60px;
 }

 .hobby-card {
     background: rgba(20, 20, 20, 0.7);
     border-radius: 8px;
     padding: 22px 15px;
     text-align: center;
     color: #ccc;
     transition: background 0.3s ease;
 }

 .hobby-card:hover {
     background: rgba(217, 167, 199, 0.1);
 }

 .hobby-icon {
     font-size: 2.4rem;
     color: #d9a7c7;
     margin-bottom: 10px;
 }

 .hobby-title {
     font-size: 1.1rem;
     margin-bottom: 6px;
     font-weight: 600;
     color: #fff;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .typing {
         font-size: 1rem;
     }

     .code-element {
         display: none;
     }

     .git-terminal {
         display: none;
     }

     .about-content {
         flex-direction: column;
     }

     .timeline {
         padding-left: 30px;
     }

     .timeline::before {
         left: 15px;
     }

     .timeline-dot {
         left: 7px;
     }

     .hobbies-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 /* Personal Info Card Styles */
 .personal-info-card {
     background: rgba(20, 20, 20, 0.7);
     border-radius: 8px;
     padding: 25px;
     width: 100%;
     border-left: 4px solid #d9a7c7;
 }

 .personal-info-title {
     font-size: 1.5rem;
     color: #d9a7c7;
     margin-bottom: 20px;
     text-align: center;
     position: relative;
     padding-bottom: 10px;
 }

 .personal-info-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 2px;
     background: #d9a7c7;
 }

 .personal-info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .info-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 8px 0;
 }

 .info-icon {
     font-size: 1.2rem;
     color: #d9a7c7;
     width: 24px;
     text-align: center;
 }

 .info-label {
     font-size: 0.8rem;
     color: #b5b5b5;
     margin-bottom: 2px;
 }

 .info-value {
     font-size: 0.95rem;
     color: #e0e0e0;
     font-weight: 500;
 }

 .info-value.available {
     color: #4db33d;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .personal-info-grid {
         grid-template-columns: 1fr;
     }

     .personal-info-card {
         max-width: 100%;
     }
 }

 /* Projects Section - Modern Design */
 /* Projects Section - Modern Design */
 .projects-container {
     background: #0f0f15;
     padding: 80px 0;
 }

 .section-title {
     font-size: 2.5rem;
     color: #fff;
     text-align: center;
     margin-bottom: 15px;
 }

 .section-subtitle {
     color: #b0b0b0;
     text-align: center;
     max-width: 700px;
     margin: 0 auto 50px;
     font-size: 1.1rem;
 }

 .project-showcase {
     max-width: 1200px;
     margin: 0 auto;
 }

 .project-item {
     display: flex;
     background: rgba(30, 30, 40, 0.7);
     border-radius: 12px;
     overflow: hidden;
     margin-bottom: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     transition: transform 0.3s ease;
 }

 .project-item:hover {
     transform: translateY(-5px);
 }

 .project-image {
     height: 350px;
     min-width: 400px;
     position: relative;
 }

 .project-image img {

     width: 75%;
     object-fit: contain;
     height: 75%;
     margin-top: 5%;
 }


 .tech-tags {
     position: absolute;
     bottom: 20px;
     left: 20px;
     display: flex;
     gap: 10px;
 }

 .tech-tags span {
     background: rgba(217, 167, 199, 0.9);
     color: #0a0a0a;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
 }

 .project-details {
     flex: 1;
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .project-details h3 {
     color: #fff;
     font-size: 1.8rem;
     margin-bottom: 20px;
 }

 .project-description {
     color: #b0b0b0;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .project-actions {
     display: flex;
     gap: 15px;
 }

 .btn-github,
 .btn-demo {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 20px;
     border-radius: 6px;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .btn-github {
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .btn-github:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .btn-demo {
     background: #d9a7c7;
     color: #0a0a0a;
 }

 .btn-demo:hover {
     background: #e8b6d5;
     transform: translateY(-2px);
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .project-item {
         flex-direction: column;
     }

     .project-image {
         min-width: 100%;
         height: 300px;
     }
 }

 @media (max-width: 576px) {
     .project-actions {
         flex-direction: column;
     }

     .project-details {
         padding: 25px;
     }
 }

 /* Contact Section Styles */
 /* Minimal Contact Section */
 .contact-minimal {
     background: #0f0f15;
     padding: 80px 0;
 }

 .contact-wrapper {
     max-width: 700px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .contact-methods {
     margin-bottom: 30px;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 15px;
     color: #d9a7c7;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
     padding: 10px 15px;
     background: rgba(30, 30, 40, 0.5);
     border-radius: 6px;
     border-left: 2px solid #d9a7c7;
 }

 .contact-item:hover {
     color: #fff;
     background: rgba(217, 167, 199, 0.1);
 }

 .contact-item i {
     font-size: 1rem;
 }

 .message-form {
     background: rgba(30, 30, 40, 0.7);
     padding: 30px;
     border-radius: 10px;
     border-top: 1px solid rgba(217, 167, 199, 0.2);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 15px;
     background: rgba(20, 20, 30, 0.8);
     border: 1px solid rgba(217, 167, 199, 0.3);
     border-radius: 5px;
     color: #fff;
     font-family: 'Poppins', sans-serif;
     font-size: 0.9rem;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 150px;
 }

 .btn-send {
     background: #d9a7c7;
     color: #0a0a0a;
     border: none;
     padding: 12px 25px;
     border-radius: 5px;
     cursor: pointer;
     font-weight: 500;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .btn-send:hover {
     background: #e8b6d5;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(217, 167, 199, 0.3);
 }

 @media (max-width: 576px) {
     .message-form {
         padding: 20px;
     }
 }

 /* Footer Styles */
 .portfolio-footer {
     background: #0a0a0a;
     color: #e0e0e0;
     padding: 60px 0 30px;
     border-top: 1px solid rgba(217, 167, 199, 0.1);
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 50px;
 }

 .footer-brand {
     max-width: 300px;
 }

 .footer-logo {
     color: #fff;
     font-size: 1.5rem;
     text-decoration: none;
     font-weight: 500;
     margin-bottom: 15px;
     display: inline-block;
 }

 .brand-tech {
     font-family: 'Fira Code', monospace;
     font-size: 0.75em;
     color: #d9a7c7;
 }

 .footer-tagline {
     color: #b0b0b0;
     font-size: 0.9rem;
     line-height: 1.6;
 }

 .footer-heading {
     color: #fff;
     font-size: 1.1rem;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-heading::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background: #d9a7c7;
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #b0b0b0;
     text-decoration: none;
     transition: color 0.3s ease;
     font-size: 0.9rem;
 }

 .footer-links a:hover {
     color: #d9a7c7;
 }

 .social-icons {
     display: flex;
     gap: 15px;
 }

 .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(217, 167, 199, 0.1);
     color: #d9a7c7;
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .social-icons a:hover {
     background: #d9a7c7;
     color: #0a0a0a;
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 30px;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
 }

 .copyright,
 .credits {
     color: #777;
     font-size: 0.8rem;
     margin: 5px 0;
 }

 @media (max-width: 768px) {
     .footer-content {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
         gap: 10px;
     }
 }