/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);
    --bg-color: hsl(0, 2%, 10%);
    --bg-transparent: hsla(0, 2%, 10%);
    --bg2-transparent: hsla(0, 2%, 10%, 0.99);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background: #1a1919;
    color: #fff;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    /* max-width: 1120px; */
    max-width: 1800px;
    margin-inline: 1.5rem;
}








/* ================= PRELOADER ================= */
/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /* change if needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

/* Hidden state (when finished) */
#preloader.hidden {
  opacity: 0;
  transform: translateY(-30px);
  /* slide up */
  visibility: hidden;
}

/* Loader text styling */
#loader-text {
  margin-bottom: 20px;
  /* space between % and loader */
  font-weight: bold;
  font-size: 2rem;
  color: #9ff14e;
  /* your theme color */
  text-align: center;
}

/* Loader animation */
/* .loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #000;
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  animation: bxSpin 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

@keyframes bxSpin {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
} */

/* HTML: <div class="loader"></div> */
.loader {
  width: 80px;
  aspect-ratio: 1;
  border: 10px solid #0000;
  padding: 5px;
  box-sizing: border-box;
  background: 
    radial-gradient(farthest-side,#fff 98%,#0000 ) 0 0/20px 20px no-repeat,
    conic-gradient(from 90deg at 10px 10px,#0000 90deg,#fff 0) content-box,
    conic-gradient(from -90deg at 40px 40px,#0000 90deg,#fff 0) content-box,
    #000;
  filter: blur(4px) contrast(10);
  animation: l11 2s infinite;
}
@keyframes l11 {
  0%   {background-position:0 0}
  25%  {background-position:100% 0}
  50%  {background-position:100% 100%}
  75%  {background-position:0% 100%}
  100% {background-position:0% 0}
}

/* ================= PRELOADER /END ================= */

/*=============== HEADER & NAV ===============*/
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  /* background-color: var(--bg-transparent); */
  background-color: transparent;
  transition: background-color 0.4s ease;
  z-index: var(--z-fixed);
}

/* When scrolled */
.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

/* Style the picture container */
.nav__logo picture {
  display: block;
  width: 200px;
  height: auto;
}

/* Make the image fill the picture container responsively */
.nav__logo picture img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

/* Responsive scaling */
@media screen and (max-width: 1150px) {
  .nav__logo picture {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .nav__logo picture {
    width: 120px;
  }
}

.nav__close,
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {

  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* hide it completely when closed */
    width: 100%;
    height: 100vh;
    /* full viewport */
    background-color: var(--bg2-transparent);
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s ease;
    overflow-y: auto;
    /* allow scrolling inside */
    z-index: var(--z-fixed);
    /* make sure it sits above navbar but not always on top */
  }

  /* When menu is open */
  .show-menu {
    left: 0;
    /* slide in */
  }


  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__social__desk {
    display: none;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }

  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }

  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }

  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }

  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}


.nav__list,
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #78ff00;
  transition: width .4s ease-out;
  box-shadow: 0px 02px 6px #78ff00, 0px 02px 6px #78ff00;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
  /* box-shadow: 8px 8px 80px #78ff00, 8px 8px 80px #78ff00; */
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: all .4s ease;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
  color: #78ff00;
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + .5rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
    margin-right: 90px;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }

  .nav__social__desk {
    display: flex;
    column-gap: 1rem;
  }

  .nav__social {
    display: none;
  }

}

/*=============== DROPDOWN MENU STYLES ===============*/

/* Dropdown container */
.nav__item--dropdown {
  position: relative;
}

/* Dropdown icon */
.nav__dropdown-icon {
  font-size: 1.5rem !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 0.5rem;
  transition: transform .3s ease;
}

/* Rotate icon when dropdown is active */
.nav__item--dropdown.dropdown-active .nav__dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}

/* Show dropdown */
.nav__item--dropdown.dropdown-active .nav__dropdown {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.5rem;
}

/* Dropdown item */
.nav__dropdown-item {
  padding-left: 2rem;
}

/* Dropdown link */
.nav__dropdown-link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
  padding: 0.75rem 0;
}

.nav__dropdown-link i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  opacity: 1;
  visibility: visible;
  transition: transform .3s ease, color .3s ease;
}

.nav__dropdown-link span {
  position: relative;
  transition: margin .4s;
}

.nav__dropdown-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #78ff00;
  transition: width .4s ease-out;
  box-shadow: 0px 02px 6px #78ff00, 0px 02px 6px #78ff00;
}

/* Dropdown link hover animation */
.nav__dropdown-link:hover i {
  transform: translateX(0.25rem);
  color: #78ff00;
}

.nav__dropdown-link:hover span::after {
  width: 100%;
}

/* Desktop dropdown styles */
@media screen and (min-width: 1150px) {
  
  /* Remove dropdown icon rotation for desktop hover */
  .nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
  }
  
  /* Position dropdown absolutely on desktop */
  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    padding: 1rem 0;
    border-radius: 0.5rem;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
  }
  
  /* Show dropdown on hover for desktop */
  .nav__item--dropdown:hover .nav__dropdown {
    max-height: 500px;
    opacity: 1;
  }
  
  /* Dropdown item spacing for desktop */
  .nav__dropdown-item {
    padding: 0;
  }
  
  /* Dropdown link styles for desktop */
  .nav__dropdown-link {
    font-size: var(--normal-font-size);
    padding: 0.75rem 1.5rem;
    display: flex;
    width: 100%;
  }
  
  .nav__dropdown-link i {
    font-size: 1.25rem;
  }
  
  /* Adjust main nav link for dropdown items on desktop */
  .nav__item--dropdown > .nav__link {
    display: flex;
    align-items: center;
  }
  
  .nav__item--dropdown > .nav__link .nav__dropdown-icon {
    margin-left: 0.25rem;
    font-size: 1.25rem !important;
  }
  
  /* Keep parent nav link hovered when hovering dropdown */
  .nav__item--dropdown:hover > .nav__link span {
    margin-left: 2.5rem;
  }
  
  .nav__item--dropdown:hover > .nav__link i:not(.nav__dropdown-icon) {
    opacity: 1;
    visibility: visible;
  }
  
  .nav__item--dropdown:hover > .nav__link span::after {
    width: 100%;
  }
  
  /* Prevent sibling fade when hovering dropdown parent */
  .nav__list:has(.nav__item--dropdown:hover) .nav__link:not(.nav__item--dropdown:hover > .nav__link) {
    opacity: .4;
  }
}

/* =============== NAVBAR /END ================== */









/* ===================WEB-HERO================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #9ff14e;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 .highlight {
    color: #9ff14e;
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #9ff14e;
    color: #1a1919;
}

.btn-primary:hover {
    background: #8de03d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 241, 78, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #9ff14e;
    border: 2px solid #9ff14e;
}

.btn-secondary:hover {
    background: #9ff14e;
    color: #1a1919;
    transform: translateY(-3px);
}

.hero-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.browser-window {
    width: 400px;
    background: #0d0d0d;
    border-radius: 8px;
    border: 6px solid rgba(159, 241, 78, 0.3);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    position: relative;
    z-index: 2;
}

.language-tag {
    position: absolute;
    background: rgba(159, 241, 78, 0.1);
    border: 1px solid rgba(159, 241, 78, 0.4);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ff14e;
    animation: float 4s ease-in-out infinite;
}

.tag-1 {
    top: 10%;
    right: 30%;
    animation-delay: 0s;
}

.tag-2 {
    top: 50%;
    left: 0%;
    animation-delay: 1s;
}

.tag-3 {
    bottom: 5%;
    right: 40%;
    animation-delay: 2s;
}

.tag-4 {
    top: 20%;
    left: 3%;
    animation-delay: 1.5s;
}

.tag-5 {
    bottom: 35%;
    right: 2%;
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.browser-header {
    background: #252525;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(159, 241, 78, 0.2);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(159, 241, 78, 0.4);
}

.browser-address {
    flex: 1;
    background: #1a1919;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #9ff14e;
    margin-left: 12px;
}

.browser-content {
    padding: 24px;
}

.content-block {
    height: 12px;
    background: rgba(159, 241, 78, 0.2);
    border-radius: 4px;
    margin-bottom: 12px;
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}

.content-block:nth-child(1) {
    width: 60%;
    animation-delay: 1s;
}

.content-block:nth-child(2) {
    width: 80%;
    animation-delay: 1.2s;
}

.content-block:nth-child(3) {
    width: 50%;
    animation-delay: 1.4s;
}

.content-block:nth-child(4) {
    width: 90%;
    animation-delay: 1.6s;
}

.content-block:nth-child(5) {
    width: 70%;
    animation-delay: 1.8s;
}

.button-mockup {
    width: 100px;
    height: 32px;
    background: #9ff14e;
    border-radius: 6px;
    margin-top: 20px;
    opacity: 0;
    animation: slideIn 0.5s ease-out 2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding: 5% 5%;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .browser-window {
        width: 380px;
    }
}

/* ===== Improved Mobile Responsiveness ===== */

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding: 12% 5% 5% 5%;
        text-align: center;
        min-height: auto;
        margin-top: 50px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.9rem 1.4rem;
        font-size: 0.95rem;
    }

    .hero-animation {
        min-height: 380px;
        margin-top: 1rem;
        transform: scale(0.9);
    }



    /* Smaller floating tags */
    .language-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Reposition tags to avoid overlap */
    .tag-1 {
        top: 5%;
        right: 15%;
        display: none;
    }

    .tag-2 {
        top: 45%;
        left: 5%;
        display: none;
    }

    .tag-3 {
        bottom: 10%;
        right: 20%;
        display: none;
    }

    .tag-4 {
        top: 20%;
        left: 10%;
        display: none;
    }

    .tag-5 {
        bottom: 30%;
        right: 10%;
        display: none;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .language-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {
    .hero-animation {
        transform: scale(0.78);
        min-height: 300px;
    }
}

/* =================WEB-HERO-END=============== */









/* ===============MOBILE-HERO================== */
.mobile-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.mobile-hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.mobile-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #9ff14e;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.mobile-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mobile-hero h1 .mobile-highlight {
    color: #9ff14e;
}

.mobile-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.mobile-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.mobile-btn-primary {
    background: #9ff14e;
    color: #1a1919;
}

.mobile-btn-primary:hover {
    background: #8de03d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 241, 78, 0.3);
}

.mobile-btn-secondary {
    background: transparent;
    color: #9ff14e;
    border: 2px solid #9ff14e;
}

.mobile-btn-secondary:hover {
    background: #9ff14e;
    color: #1a1919;
    transform: translateY(-3px);
}

.mobile-hero-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.phone-mockup {
    width: 240px;
    height: 460px;
    background: #0d0d0d;
    border-radius: 40px;
    border: 8px solid rgba(159, 241, 78, 0.3);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.platform-tag {
    position: absolute;
    background: rgba(159, 241, 78, 0.1);
    border: 1px solid rgba(159, 241, 78, 0.4);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ff14e;
    animation: float 4s ease-in-out infinite;
}

.platform-tag-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.platform-tag-2 {
    top: 50%;
    left: 7%;
    animation-delay: 1s;
}

.platform-tag-4 {
    top: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.platform-tag-5 {
    bottom: 35%;
    right: 2%;
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.phone-notch {
    width: 120px;
    height: 25px;
    background: #1a1919;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.phone-screen {
    background: #1a1919;
    height: calc(100% - 25px);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideIn 0.5s ease-out 1s forwards;
}

.app-menu-icon {
    width: 24px;
    height: 3px;
    background: #9ff14e;
    position: relative;
}

.app-menu-icon::before,
.app-menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #9ff14e;
    left: 0;
}

.app-menu-icon::before {
    top: -8px;
}

.app-menu-icon::after {
    top: 8px;
}

.app-notification-dot {
    width: 8px;
    height: 8px;
    background: #9ff14e;
    border-radius: 50%;
}

.app-content-block {
    height: 12px;
    background: rgba(159, 241, 78, 0.2);
    border-radius: 4px;
    margin-bottom: 12px;
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}

.app-content-block:nth-child(1) {
    width: 60%;
    animation-delay: 1.2s;
}

.app-content-block:nth-child(2) {
    width: 80%;
    animation-delay: 1.4s;
}

.app-content-block:nth-child(3) {
    width: 50%;
    animation-delay: 1.6s;
}

.app-image-mockup {
    width: 100%;
    height: 120px;
    background: rgba(159, 241, 78, 0.15);
    border-radius: 8px;
    margin: 16px 0;
    opacity: 0;
    animation: slideIn 0.5s ease-out 1.8s forwards;
}

.app-content-block:nth-child(5) {
    width: 90%;
    animation-delay: 2s;
}

.app-content-block:nth-child(6) {
    width: 70%;
    animation-delay: 2.2s;
}

.app-button-mockup {
    width: 100%;
    height: 40px;
    background: #9ff14e;
    border-radius: 8px;
    margin-top: auto;
    opacity: 0;
    animation: slideIn 0.5s ease-out 2.4s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .mobile-hero {
        flex-direction: column;
        padding: 12% 5% 5% 5%;
        text-align: center;
        min-height: auto;
        margin-top: 50px;
    }

    .mobile-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .mobile-hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .mobile-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .mobile-cta-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .mobile-btn {
        width: 100%;
        max-width: 260px;
        padding: 0.9rem 1.4rem;
        font-size: 0.95rem;
    }

    .mobile-hero-animation {
        min-height: 380px;
        margin-top: 1rem;
        transform: scale(0.9);
    }

    .platform-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .platform-tag-1,
    .platform-tag-2,
    .platform-tag-3,
    .platform-tag-4,
    .platform-tag-5 {
        display: none;
    }
}

@media (max-width: 600px) {
    .mobile-hero h1 {
        font-size: 1.8rem;
    }

    .platform-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {
    .mobile-hero-animation {
        transform: scale(0.78);
        min-height: 300px;
    }

}

/* =============MOBILE-HERO-END =============== */







/* ===============3DVIS-HERO==================== */
.visualization-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.visualization-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: slideInFromLeft 1s ease-out;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #9ff14e;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-heading .accent-text {
    color: #9ff14e;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.action-btn-main {
    background: #9ff14e;
    color: #1a1919;
}

.action-btn-main:hover {
    background: #8de03d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 241, 78, 0.3);
}

.visualization-display {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.workspace-frame {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1919 100%);
    border-radius: 12px;
    border: 6px solid rgba(159, 241, 78, 0.3);
    overflow: hidden;
    opacity: 0;
    animation: appearFromBottom 1s ease-out 0.5s forwards;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.workspace-topbar {
    background: #252525;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(159, 241, 78, 0.2);
}

.topbar-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(159, 241, 78, 0.4);
}

.file-name {
    flex: 1;
    background: #1a1919;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #9ff14e;
    margin-left: 12px;
}

.drawing-area {
    padding: 30px;
    height: calc(100% - 44px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artboard {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    border: 2px solid rgba(159, 241, 78, 0.2);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(159, 241, 78, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 241, 78, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.sketch-line {
    position: absolute;
    stroke: #9ff14e;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(159, 241, 78, 0.6));
}

.stylus-cursor {
    position: absolute;
    width: 50px;
    height: 50px;
    transform-origin: bottom left;
    z-index: 10;
    filter: drop-shadow(0 4px 12px rgba(159, 241, 78, 0.4));
}

.stylus-shaft {
    fill: #9ff14e;
}

.stylus-point {
    fill: #6bc91c;
}

.tool-badge {
    position: absolute;
    background: rgba(159, 241, 78, 0.1);
    border: 1px solid rgba(159, 241, 78, 0.4);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ff14e;
    animation: floatMotion 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: 30%;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: 0%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 5%;
    right: 40%;
    animation-delay: 2s;
}

.badge-4 {
    top: 20%;
    left: 3%;
    animation-delay: 1.5s;
}

.badge-5 {
    bottom: 35%;
    right: 2%;
    animation-delay: 0.5s;
}

@keyframes floatMotion {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes appearFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes traceSketch {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 968px) {
    .visualization-hero {
        flex-direction: column;
        padding: 12% 5% 5% 5%;
        text-align: center;
        min-height: auto;
        margin-top: 50px;
    }

    .visualization-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .main-heading {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .intro-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .action-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .action-btn {
        width: 100%;
        max-width: 260px;
        padding: 0.9rem 1.4rem;
        font-size: 0.95rem;
    }

    .visualization-display {
        min-height: 380px;
        margin-top: 1rem;
        transform: scale(0.9);
    }

    .tool-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        display: none;
    }
}

@media (max-width: 600px) {
    .main-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .visualization-display {
        transform: scale(0.78);
        min-height: 300px;
    }
}

/* =============3DVIS-HERO-END================== */







/* ==================AI CHIP=================== */
.ai-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.ai-hero-text-container {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: aiSlideInFromLeft 1s ease-out;
}

.ai-services-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #9ff14e;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.ai-hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-heading-highlight {
    color: #9ff14e;
}

.ai-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.ai-cta-button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.ai-cta-button-primary {
    background: #9ff14e;
    color: #1a1919;
}

.ai-cta-button-primary:hover {
    background: #8de03d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 241, 78, 0.3);
}

.ai-hero-visual-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.ai-chip-visual-wrapper {
    width: 500px;
    height: 500px;
    position: relative;
    opacity: 0;
    animation: aiFadeInUp 1s ease-out 0.5s forwards;
}

.ai-chip-svg-element {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(159, 241, 78, 0.3));
}

.ai-pcb-circuit-trace {
    stroke: #305705;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: aiDrawCircuitTrace 3s ease-out forwards;
}

.ai-pcb-circuit-trace:nth-child(1) {
    animation-delay: 0.1s;
}

.ai-pcb-circuit-trace:nth-child(2) {
    animation-delay: 0.15s;
}

.ai-pcb-circuit-trace:nth-child(3) {
    animation-delay: 0.2s;
}

.ai-pcb-circuit-trace:nth-child(4) {
    animation-delay: 0.25s;
}

.ai-pcb-circuit-trace:nth-child(5) {
    animation-delay: 0.3s;
}

.ai-pcb-circuit-trace:nth-child(6) {
    animation-delay: 0.35s;
}

.ai-pcb-circuit-trace:nth-child(7) {
    animation-delay: 0.4s;
}

.ai-pcb-circuit-trace:nth-child(8) {
    animation-delay: 0.45s;
}

@keyframes aiDrawCircuitTrace {
    to {
        stroke-dashoffset: 0;
    }
}

.ai-circuit-connection-pad {
    fill: #9ff14e;
    animation: aiCircuitPadPulse 2s ease-in-out infinite;
}

.ai-circuit-connection-pad:nth-child(odd) {
    animation-delay: 0s;
}

.ai-circuit-connection-pad:nth-child(even) {
    animation-delay: 0.5s;
}

@keyframes aiCircuitPadPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.ai-microchip-body {
    fill: url(#aiChipGradientFill);
    stroke: #305705;
    stroke-width: 4;
}

.ai-chip-connection-pin {
    fill: #305705;
    opacity: 0.8;
}

.ai-circuit-glow-effect {
    stroke: #305705;
    stroke-width: 3;
    fill: none;
    opacity: 0;
}




.ai-chip-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 900;
    color: #9ff14e;
    z-index: 10;
    letter-spacing: 12px;
    animation: aiTextGlowPulse 2s ease-in-out infinite;
}



@keyframes aiSlideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aiFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .ai-hero-section {
        flex-direction: column;
        padding: 12% 5% 5% 5%;
        text-align: center;
        min-height: auto;
        margin-top: 50px;
    }

    .ai-hero-text-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .ai-hero-heading {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .ai-hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .ai-cta-button-group {
        justify-content: center;
        gap: 0.8rem;
    }

    .ai-cta-button {
        width: 100%;
        max-width: 260px;
        padding: 0.9rem 1.4rem;
        font-size: 0.95rem;
    }

    .ai-hero-visual-container {
        min-height: 380px;
        margin-top: 1rem;
    }

    .ai-chip-visual-wrapper {
        width: 380px;
        height: 380px;
    }

    .ai-chip-center-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .ai-hero-heading {
        font-size: 1.8rem;
    }

    .ai-chip-visual-wrapper {
        width: 320px;
        height: 320px;
    }

    .ai-chip-center-text {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    .ai-hero-visual-container {
        transform: scale(0.78);
        min-height: 300px;
    }
}

/* =================AI-CHIP-END================ */











/* =============WHY NOXBLOC============== */
/* Why Choose Section */
.why-choose {
    padding: 100px 5%;
    background: #0d0d0d;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(159, 241, 78, 0.2);
    border: 1px solid rgba(159, 241, 78, 0.2);
}

.feature-card {
    background: #1a1919;
    padding: 50px 40px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    background: #0d0d0d;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(159, 241, 78, 0.3);
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #9ff14e;
    font-weight: 600;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 30px 10%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =============WHY NOXBLOC============== */



/* ===============Deliver================ */
.deliver-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.deliver-container h1 {
    font-size: 3rem;
    margin-bottom: 80px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -1px;
}

.deliver-container .service {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(159, 241, 78, 0.1);
}

.service:last-child {
    border-bottom: none;
}

.deliver-container .service-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #9ff14e;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.deliver-container .service-description {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    max-width: 700px;
}

@media (max-width: 768px) {
    .deliver-container {
        padding: 60px 24px;
    }

    .deliver-container h1 {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .deliver-container .service {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
}

/* ================Deliver End=============== */






/* ============PORTFOLIO============== */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 25, 25, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.fullscreen-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fullscreen-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.fullscreen-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.fullscreen-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
}

.fullscreen-info .project-title {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 5px;
}

.fullscreen-info .project-category {
    font-size: clamp(14px, 2vw, 16px);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: clamp(40px, 4vw, 50px);
    height: clamp(40px, 4vw, 50px);
    background: rgba(159, 241, 78, 0.2);
    border: 2px solid #9ff14e;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 2.5vw, 24px);
    color: #9ff14e;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-button:hover {
    background: #9ff14e;
    color: #1a1919;
    transform: rotate(90deg);
}

.portfolio-section {
    position: relative;
    min-height: 100vh;
    padding: clamp(20px, 5vh, 80px) clamp(20px, 5vw, 100px);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to top, #0c1519 0%, #1a1919 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(50px, 12vw, 220px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: clamp(1.5px, 0.2vw, 3px) #9ff14e;
    text-stroke: clamp(1.5px, 0.2vw, 3px) #9ff14e;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
}

.mockups-container {
    position: relative;
    width: 100%;
    max-width: min(1600px, 95vw);
    height: clamp(400px, 75vh, 800px);
    margin: 0 auto;
}

.mockup {
    position: absolute;
    background: #ffffff;
    border-radius: clamp(8px, 1vw, 20px);
    padding: clamp(5px, 0.6vw, 10px);
    box-shadow: 0 clamp(10px, 2vh, 20px) clamp(30px, 4vh, 60px) rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.mockup:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 100 !important;
    box-shadow: 0 clamp(15px, 3vh, 30px) clamp(45px, 6vh, 90px) rgba(0, 0, 0, 0.6);
}

.mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 241, 78, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mockup:hover::before {
    opacity: 1;
}

/* Fluid positioning - scales perfectly with container */
.mockup-1 {
    top: 0;
    left: 5%;
    width: min(28vw, 450px);
    aspect-ratio: 16 / 10;
    z-index: 5;
}

.mockup-2 {
    top: 5%;
    left: 35%;
    width: min(24vw, 380px);
    aspect-ratio: 16 / 10.5;
    z-index: 6;
}

.mockup-3 {
    top: 0;
    right: 10%;
    width: min(26vw, 420px);
    aspect-ratio: 16 / 10.7;
    z-index: 4;
}

.mockup-5 {
    bottom: 1%;
    left: 8%;
    width: min(25vw, 400px);
    aspect-ratio: 16 / 11.2;
    z-index: 3;
}

.mockup-6 {
    bottom: 1%;
    left: 35%;
    width: min(22.5vw, 360px);
    aspect-ratio: 16 / 10.6;
    z-index: 7;
}

.mockup-7 {
    bottom: 2%;
    right: 8%;
    width: min(27.5vw, 440px);
    aspect-ratio: 16 / 10.3;
    z-index: 8;
}

.mockup-content {
    width: 100%;
    height: 100%;
    border-radius: clamp(5px, 0.6vw, 10px);
    position: relative;
    overflow: hidden;
}

.mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(10px, 1.5vw, 20px);
    background: linear-gradient(to top, rgba(26, 25, 25, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mockup:hover .mockup-overlay {
    transform: translateY(0);
}

.project-title {
    color: #9ff14e;
    font-size: clamp(12px, 1.2vw, 18px);
    font-weight: 700;
    margin-bottom: clamp(3px, 0.5vh, 5px);
}

.project-category {
    color: #ffffff;
    font-size: clamp(11px, 1vw, 14px);
    opacity: 0.8;
}

/* Large Desktop (1920x1080 and above) */
@media (min-width: 1920px) {
    .mockups-container {
        height: 800px;
    }
}

/* Standard Desktop (1366x768) */
@media (min-width: 1200px) and (max-width: 1900px) {
    .mockups-container {
        height: clamp(600px, 70vh, 750px);
    }
}

/* Laptop and smaller desktops */
@media (min-width: 1024px) and (max-width: 1199px) {
    .portfolio-section {
        padding: clamp(15px, 4vh, 60px) clamp(15px, 4vw, 80px);
    }
    
    .mockups-container {
        height: clamp(500px, 65vh, 650px);
    }
    
    .mockup-1 {
        width: min(30vw, 400px);
    }
    
    .mockup-2 {
        width: min(26vw, 340px);
    }
    
    .mockup-3 {
        width: min(28vw, 380px);
    }
    
    .mockup-5 {
        width: min(27vw, 360px);
    }
    
    .mockup-6 {
        width: min(24vw, 320px);
    }
    
    .mockup-7 {
        width: min(29vw, 400px);
    }
}

/* Tablet landscape and small laptops */
@media (min-width: 768px) and (max-width: 1023px) {
    .portfolio-section {
        padding: clamp(15px, 3vh, 50px) clamp(15px, 3vw, 60px);
    }
    
    .portfolio-title {
        font-size: clamp(60px, 10vw, 120px);
    }
    
    .mockups-container {
        height: clamp(450px, 60vh, 600px);
    }
    
    .mockup-1 {
        width: min(32vw, 280px);
        top: 2%;
        left: 4%;
    }
    
    .mockup-2 {
        width: min(28vw, 250px);
        top: 6%;
        left: 32%;
    }
    
    .mockup-3 {
        width: min(30vw, 270px);
        top: 2%;
        right: 4%;
    }
    
    .mockup-5 {
        width: min(30vw, 260px);
        bottom: 5%;
        left: 6%;
    }
    
    .mockup-6 {
        width: min(26vw, 240px);
        bottom: 8%;
        left: 36%;
    }
    
    .mockup-7 {
        width: min(31vw, 280px);
        bottom: 4%;
        right: 6%;
    }
}

/* Tablet portrait and large phones */
@media (min-width: 481px) and (max-width: 767px) {
    .portfolio-section {
        padding: clamp(10px, 2vh, 40px) clamp(10px, 3vw, 40px);
    }
    
    .portfolio-title {
        font-size: clamp(50px, 11vw, 90px);
    }
    
    .mockups-container {
        height: clamp(400px, 65vh, 550px);
    }
    
    .mockup-1 {
        width: min(36vw, 260px);
        top: 4%;
        left: 3%;
    }
    
    .mockup-2 {
        width: min(32vw, 230px);
        top: 7%;
        left: 35%;
    }
    
    .mockup-3 {
        width: min(34vw, 245px);
        top: 4%;
        right: 3%;
    }
    
    .mockup-5 {
        width: min(34vw, 240px);
        bottom: 6%;
        left: 5%;
    }
    
    .mockup-6 {
        width: min(30vw, 220px);
        bottom: 9%;
        left: 37%;
    }
    
    .mockup-7 {
        width: min(35vw, 250px);
        bottom: 5%;
        right: 5%;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .portfolio-section {
        padding: clamp(10px, 2vh, 30px) clamp(10px, 3vw, 30px);
    }
    
    .portfolio-title {
        font-size: clamp(40px, 12vw, 70px);
    }
    
    .mockups-container {
        height: clamp(350px, 70vh, 500px);
    }
    
    .mockup-1 {
        width: min(40vw, 140px);
        top: 6%;
        left: 2%;
    }
    
    .mockup-2 {
        width: min(36vw, 130px);
        top: 10%;
        left: 36%;
    }
    
    .mockup-3 {
        width: min(38vw, 135px);
        top: 6%;
        right: 2%;
    }
    
    .mockup-5 {
        width: min(38vw, 135px);
        bottom: 7%;
        left: 4%;
    }
    
    .mockup-6 {
        width: min(34vw, 125px);
        bottom: 11%;
        left: 38%;
    }
    
    .mockup-7 {
        width: min(39vw, 140px);
        bottom: 7%;
        right: 4%;
    }
    
    .mockup-overlay {
        padding: clamp(8px, 1.2vw, 15px);
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .portfolio-title {
        font-size: clamp(35px, 13vw, 60px);
    }
    
    .mockups-container {
        height: clamp(320px, 65vh, 450px);
    }
    
    .mockup-1, .mockup-2, .mockup-3,
    .mockup-5, .mockup-6, .mockup-7 {
        width: min(42vw, 130px);
    }
    
    .mockup-1 {
        top: 8%;
        left: 1%;
    }
    
    .mockup-2 {
        top: 12%;
        left: 37%;
    }
    
    .mockup-3 {
        top: 8%;
        right: 1%;
    }
    
    .mockup-5 {
        bottom: 9%;
        left: 3%;
    }
    
    .mockup-6 {
        bottom: 13%;
        left: 39%;
    }
    
    .mockup-7 {
        bottom: 9%;
        right: 3%;
    }
}

/* Ultra-wide screens */
@media (min-width: 2560px) {
    .mockups-container {
        max-width: 2000px;
        height: 900px;
    }
}

/* ==========PORTFOLIO-END============ */

/* ============= How we do it Section ================= */
        .how-we-do-it-section {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(to bottom, #0c1519 0%, #1a1919 100%);
            width: 100%;
            padding: 60px 0;
        }

        .how-we-do-it-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-btn {
            background-color: #9ff14e;
            color: #0c1519;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 40px;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #baff6b;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(159, 241, 78, 0.3);
        }

        .contact-btn::after {
            content: "→";
            font-size: 18px;
        }

        .main-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin: 0 0 60px 0;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .process-section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 40px;
            color: #baff6b;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .content-wrapper.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .step-number {
            min-width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .step-number.outlined {
            border: 2px solid #20282d;
            color: #9ff14e;
            background: transparent;
        }

        .step-number.filled {
            background: linear-gradient(135deg, #9ff14e 0%, #baff6b 100%);
            color: #0c1519;
        }

        .step-content {
            flex: 1;
            padding-top: 8px;
        }

        .step-text {
            font-size: 14px;
            line-height: 1.6;
            color: #d1d5db;
            margin: 0;
        }

        .image-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .illustration {
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: contain;
        }

        .illustration-box {
            background: #20282d;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(159, 241, 78, 0.1);
        }

        /* Tablet and smaller desktop screens */
        @media (max-width: 1024px) {
            .how-we-do-it-content {
                padding: 0 40px;
            }
        }

        /* iPad and smaller tablets - maintain desktop layout */
        @media (max-width: 968px) and (min-width: 641px) {
            .how-we-do-it-content {
                padding: 0 30px;
            }

            .content-wrapper {
                gap: 40px;
            }

            .illustration-box {
                padding: 30px;
            }
        }

        /* Mobile devices only */
        @media (max-width: 640px) {
            .how-we-do-it-section {
                padding: 40px 0;
            }

            .how-we-do-it-content {
                padding: 0 16px;
            }

            .content-wrapper,
            .content-wrapper.reverse {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-wrapper.reverse .steps-list {
                order: 2;
            }

            .content-wrapper.reverse .image-container {
                order: 1;
            }

            .process-section {
                margin-bottom: 60px;
            }

            .main-title {
                margin-bottom: 40px;
            }

            .section-title {
                margin-bottom: 30px;
            }

            .step-item {
                gap: 15px;
            }

            .step-number {
                min-width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .step-text {
                font-size: 13px;
            }

            .illustration-box {
                padding: 20px;
            }
        }

/* ============= How we do it Section /END ================= */




/* =============TECH-STACK============ */
.stack-container {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h1 {
    font-size: 3.5rem;
    color: #9ff14e;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #999;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.tech-category {
    border-left: 3px solid #9ff14e;
    padding-left: 25px;
    transition: border-color 0.3s ease;
}

.tech-category:hover {
    border-left-color: #fff;
}

.category-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-item {
    color: #aaa;
    font-size: 1rem;
    padding: 8px 0;
    transition: all 0.2s ease;
    cursor: default;
}

.tech-item:hover {
    color: #9ff14e;
    padding-left: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(159, 241, 78, 0.08) 0%, rgba(159, 241, 78, 0.02) 100%);
    border: 1px solid rgba(159, 241, 78, 0.2);
    padding: 40px;
    margin-top: 60px;
    border-radius: 4px;
}

.highlight-box h3 {
    color: #9ff14e;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.highlight-box p {
    color: #bbb;
    line-height: 1.7;
}

@media (max-width: 768px) {

    .section-header h1 {
        font-size: 2.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .highlight-box {
        padding: 30px 25px;
    }

    .stack-container {
        padding: 0 15px;
    }
}

/* ===========TECH-STACK-END========== */






/* ================== CTA section ======================= */
.contain-cta {
    background: #1a1919;
    padding: 40px 40px;
}
.cta-section {
  max-width: 1400px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

.cta-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(159, 241, 78, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: ctaWave 20s ease-in-out infinite;
}

@keyframes ctaWave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 800px;
}

.cta-link {
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button {
  background: transparent;
  color: #ffffff;
  border: 2px solid #9ff14e;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9ff14e 0%, #baff6b 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: #0c1519;
  border-color: #baff6b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(159, 241, 78, 0.4);
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-link:focus {
  outline: 2px solid #9ff14e;
  outline-offset: 4px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .cta-section {
    margin: 3rem auto 1.5rem;
  }

  .cta-container {
    border-radius: 24px;
  }

  .cta-content {
    padding: 3rem 1.5rem;
    gap: 1.25rem;
  }

  .cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    margin: 2rem auto 1rem;
    padding: 0 0.75rem;
  }

  .cta-container {
    border-radius: 20px;
  }

  .cta-content {
    padding: 2.5rem 1.25rem;
    gap: 1rem;
  }

  .cta-link {
    width: 100%;
  }

  .cta-button {
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .cta-content {
    padding: 5rem 3rem;
  }
}

/* ================== CTA section /END ======================= */









/*=============== FOOTER ===============*/
footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 90px 8%;
    overflow: hidden;
    z-index: 1;
}

footer {
    position: relative;
    overflow: hidden;
}

/* First Logo */
footer::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 35%;
    /* shifted a bit left */
    transform: translateX(190%);
    /* hidden initially */
    width: 400px;
    height: 400px;
    background: url("../img/rahul.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transition: transform 1.8s ease-out, opacity 1.8s ease-out;
}

/* Second Logo */
footer::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 65%;
    /* shifted a bit right */
    transform: translateX(220%);
    /* hidden initially */
    width: 300px;
    height: 400px;
    background: url("../img/Icon-01.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transition: transform 1.8s ease-out 0.6s, opacity 1.8s ease-out 0.6s;
    /* delay for "after" effect */
}

/* Active State */
footer.show-logo::before {
    transform: translateX(-90%);
    opacity: 0.07;
}

footer.show-logo::after {
    transform: translateX(-50%);
    opacity: 0.07;
}


footer * {
    position: relative;
    z-index: 2;
    /* keeps text & links above logo */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: #9FF14E;
    /* accent color */
}

.footer-column ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #9FF14E;
    /* green */
    transform: scaleX(0);
    transform-origin: left;
    /* start from left */
    transition: transform 0.6s ease;
}

.footer-column ul li a:hover {
    color: #9FF14E;
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: right;
    /* collapse to right when leaving */
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #9FF14E;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.glow-text {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    animation: greenGlow 1s infinite alternate;
}

@keyframes greenGlow {
    0% {
        text-shadow: 0 0 0px #9FF14E;
        color: #fff;
    }

    100% {
        text-shadow: 0 0 10px #9FF14E, 0 0 30px #9FF14E;
        color: #9FF14E;
    }
}

@media (max-width: 900px) {

    /* Hide first logo on mobile */
    footer::before {
        display: none;
    }

    /* Center second logo on mobile */
    footer::after {
        left: 50%;
        transform: translateX(-50%);
        /* center horizontally */
        width: 250px;
        /* scale down a bit if needed */
        height: 250px;
        transition: transform 1.8s ease-out, opacity 1.8s ease-out;
        margin-bottom: 300px;
    }

    /* Keep text above */
    footer * {
        position: relative;
        z-index: 2;
    }
}