 /* =========================
   CSS VARIABLES
========================= */
 :root {
     --primary-color: #030213;
     --secondary-color: #222;
     --accent-color: #e9ebef;

     --gradient-primary: linear-gradient(135deg, #667eea, #764ba2);
     --gradient-secondary: linear-gradient(135deg, #f093fb, #f5576c);
     --gradient-tertiary: linear-gradient(135deg, #4facfe, #00f2fe);
     --gradient-quaternary: linear-gradient(135deg, #43e97b, #38f9d7);

     --shadow-light: 0 5px 15px rgba(0, 0, 0, .08);
     --shadow-medium: 0 10px 30px rgba(0, 0, 0, .12);
     --shadow-heavy: 0 20px 40px rgba(0, 0, 0, .15);
 }

.bg-success.bg-opacity-25.p-2{
	--bs-bg-opacity: 1;
	background-color:#9b86ff24 !important;
}
 
 /* =========================
   RESET & BASE
========================= */
 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Inter", sans-serif;

     line-height: 1.6;
     color: var(--primary-color);
     background: #F8F9FA;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: "Playfair Display", serif;
 }

 /* =========================
   SCROLLBAR
========================= */
 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--primary-color);
     border-radius: 4px;
 }

 p,
 .text-color {
     color: var(--secondary-color)
 }

 /* =========================
   NAVBAR
========================= */
 .navbar {
     background: rgba(255, 255, 255, .95) !important;
     backdrop-filter: blur(10px);
     padding: 1rem 0;
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.5rem;
     color: var(--primary-color) !important;
     font-family: "Playfair Display", serif;
 }

 .navbar-nav .nav-link {
     font-weight: 500;
     margin: 0 .5rem;
     color: var(--primary-color) !important;
     position: relative;
     transition: color .3s ease;
 }

 .navbar-nav .nav-link:hover {
     color: #7055df !important;
 }

 .navbar-nav .nav-link::after {
     content: "";
     position: absolute;
     left: 50%;
     bottom: 0;
     width: 0;
     height: 2px;
     background: var(--gradient-primary);
     transform: translateX(-50%);
     transition: width .3s ease;
 }

 .navbar-nav .nav-link:hover::after {
     width: 100%;
 }

 /* =========================
   HERO
========================= */
 .hero-section {
     padding:130px 0 70px 0;
     display: flex;
     align-items: center;
     position: relative;
 }

 .hero-title {
     font-size: 64px;
     line-height: 1.2;
     margin-bottom: 1.5rem;
 }

 .hero-subtitle {
     font-size: 22px;
     line-height: 1.3;
     color: var(--secondary-color);
     max-width: 800px;
     margin-bottom: 2rem;
 }

 .typing-animation {
     border-right: 2px solid var(--primary-color);
     animation: blink 1s infinite;
 }

 @keyframes blink {

     0%,
     50% {
         border-color: var(--primary-color);
     }

     51%,
     100% {
         border-color: transparent;
     }
 }

 /* =========================
   SOCIAL
========================= */
 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 2rem;
 }

 .social-link {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     text-decoration: none;
     box-shadow: var(--shadow-light);
     transition: transform .3s ease, box-shadow .3s ease;
 }

 .social-link:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-medium);
     color: #667eea;
 }

 /* =========================
   PORTFOLIO
========================= */
 .portfolio-item {
      background:#f6f6f6;
     border: 1px solid #e2e8f0;  
     border-radius: 12px; 
     overflow: hidden;
     height: 100%;
     transition: transform .35s ease, box-shadow .35s ease;
 }

 .portfolio-item:hover {
     transform: translateY(-8px);
     /* box-shadow: var(--shadow-heavy); */
 }

 .portfolio-image {
     width: 100%;
     background: #6c6b7261;
     transition: transform .45s ease;
 }

 .portfolio-item:hover .portfolio-image {
     transform: scale(1.04);
 }

 .portfolio-content {
     padding: 1rem;
 }

 .projName {
     font-size: 22px;
     font-weight: 700;
     letter-spacing: .3px;
     color: #000;
 }

 .projName+p {
     font-size: 16px;
     color: #7a7786;
 }

 /* =========================
   BUTTONS
========================= */
 .btn-figma {
     background: #7055df;
     color: #fff;
     font-size: 13px;
     padding: 6px 14px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     text-decoration: none;
     transition: transform .25s ease, box-shadow .25s ease;
 }

 .btn-figma:hover {
     background: #5b44c6;
     color: #fff;
     transform: translateY(-1px);
     box-shadow: 0 6px 16px rgba(112, 85, 223, .35);
 }

 /* =========================
   UTILITIES
========================= */
 .text-gray {
     color: #b0b0b0;
 }

 /* =========================
   FOOTER
========================= */
 .footer {
     background: #1a1a1a;
     color: #fff;
     padding: 3rem 0 1rem; margin-top:40px;
 }

 /* =========================
   RESPONSIVE
========================= */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 40px;
     }

     .hero-section {
         text-align: center;  padding: 120px 0 60px 0;
     }

     .social-links {
         justify-content: center;
     }
 }


 #scrollTopBtn {
     display: none;
     /* Hidden by default */
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 99;
     font-size: 16px;
     background-color: #333;
     color: white;
     border: none;
     outline: none;
     padding: 10px 15px;
     border-radius: 8px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 #scrollTopBtn:hover {
     background-color: #555;
 }

 .btn-prototype,
 .btn-outline-secondary {

     color: var(--primary-color);
     border-radius: 100px;
     font-size: 13px;
     padding: 6px 14px;
 }

 .btn-prototype:hover,
 .btn-outline-secondary:hover {
     background-color: #222;
     color: #fff;


     transform: translateY(-1px);
     box-shadow: 0 6px 16px rgba(112, 85, 223, .35);
 }

 .btn-figma-file {
     border: 1px solid #000;
     color: #000;
     background: transparent;
 }

 .btn-figma-file:hover {
     background-color: #000;
     color: #fff;
 }


 .btn-primary-cta {
     background: #111;
     color: #fff;
     border-radius: 50px;
     padding: 10px 22px;
     font-weight: 600;
     border: none;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .btn-primary-cta:hover {
     background: #000;
     transform: translateY(-2px);
     color: #fff;
 }

 .btn-secondary-cta {
     border: 1px solid #ccc;
     color: #333;
     border-radius: 50px;
     padding: 10px 20px;
     font-weight: 500;
     background: transparent;
     transition: all 0.3s ease;
     font-size: 14px;
 }  

 .btn-secondary-cta:hover {
     background: #f5f5f5;
 }

 .portfolio-content .btn {
     margin-right: 10px;
     margin-top: 10px;
 }


 .hero-title {
     font-size: 48px;
 }

 .subh {
     font-family: "Playfair Display", serif;
     letter-spacing: 2px;
     font-size: 20px;
     padding-left: 10px;
     position: relative;
     top: 3px;
 }

 .sol {
     font-family: "Playfair Display", serif;
     letter-spacing: 2px;
     font-size: 20px;
     padding-left: 10px;
     position: relative;
     top: 3px;
 }

 .stmnt {
     font-size: 32px;
 }

 .lead {
     font-size: 1.5rem;
     font-weight: 300;
 }

 .color-box {
    height: 60px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.preview .btn{ font-size: 18px; padding:15px 30px;}
 