/*=========================== Google fonts =============================*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ========================== web fonts ============================= */
@font-face {
    font-family: 'Aeonik Pro TRIAL';
    src: url('../webfonts/AeonikProTRIAL-Bold.eot');
    src: url('../webfonts/AeonikProTRIAL-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/AeonikProTRIAL-Bold.woff2') format('woff2'),
        url('../webfonts/AeonikProTRIAL-Bold.woff') format('woff'),
        url('../webfonts/AeonikProTRIAL-Bold.ttf') format('truetype'),
        url('../webfonts/AeonikProTRIAL-Bold.svg#AeonikProTRIAL-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik Pro TRIAL';
    src: url('../webfonts/AeonikProTRIAL-Regular.eot');
    src: url('../webfonts/AeonikProTRIAL-Regular.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/AeonikProTRIAL-Regular.woff2') format('woff2'),
        url('../webfonts/AeonikProTRIAL-Regular.woff') format('woff'),
        url('../webfonts/AeonikProTRIAL-Regular.ttf') format('truetype'),
        url('../webfonts/AeonikProTRIAL-Regular.svg#AeonikProTRIAL-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik Pro TRIAL';
    src: url('../webfonts/AeonikProTRIAL-Light.eot');
    src: url('../webfonts/AeonikProTRIAL-Light.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/AeonikProTRIAL-Light.woff2') format('woff2'),
        url('../webfonts/AeonikProTRIAL-Light.woff') format('woff'),
        url('../webfonts/AeonikProTRIAL-Light.ttf') format('truetype'),
        url('../webfonts/AeonikProTRIAL-Light.svg#AeonikProTRIAL-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*========================== Basic css ============================*/
@-ms-viewport {
    width: device-width;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    font-size: 0.86vw;
}

:root {
    /* fonts */
    --inter: "Inter", sans-serif;
    --ibm-plex-mono: "IBM Plex Mono", monospace;
    --aeonik-pro-trial: 'Aeonik Pro TRIAL';

    /* color */
    --white: #FFF;
    --black: #000;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

/* body */
body {
    font-family: var(--aeonik-pro-trial);
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--white);
    color: var(--black);
    margin: 0;
    padding: 0;
}

/*====================== side_bar ========================*/
.side_bar {
    background: var(--white);
    width: 20rem;
    border-right: 1px solid #F3F3F3;
    min-height: 100vh;
    position: fixed;
    left: 0;
}

/* Removed the white fade gradient */

.sidebar_header {
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F3F3F3;
}

.sidebar_header h2 {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: rgba(0, 8, 23, 0.88);
}

.sidebar_header img {
    width: 4.6rem;
}

.side_menu {
    padding: 1.2rem 1rem;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    -ms-overflow-style: none;  
    scrollbar-width: none; 
}

.side_menu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.side_menu a {
    font-family: var(--ibm-plex-mono);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 0.0109rem;
    color: rgba(0, 12, 35, 0.73);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0rem;
    margin-bottom: 0.1rem;
    transition: 0.2s all ease;
    z-index: 1;
}

.side_menu a span {
    width: 1.8rem;
    height: 1.8rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease;
}

.side_menu a span img {
    width: 0.85rem;
}

.side_menu a:hover {
    font-weight: 600;
    color: #000C23;
}

.side_menu a:hover span{
    background: #EDEDED;
}

.side_menu a.active {
    font-weight: 600;
    color: #FFF;
    background: #000;
    padding: 0.2rem 0rem;
    border-radius: 0.15rem;
}

.side_menu a.active span {
    background: transparent;
}

.side_menu a.active img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(264deg) brightness(100%) contrast(103%);
}


/* offcanvas_menu */
.offcanvas_menu {
    width: 100%;
    background: var(--white);
    height: 100vh;
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: -120%;
    overflow: auto;
    transition: 0.5s all ease;
    display: none;
    z-index: 100;
}

.offcanvas_body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 20;
}

.offcanvas_menu ul li a {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: #091122;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid #D9D9D9;
    transition: 0.2s all ease;
} 

.offcanvas_menu ul li a:hover {
    font-weight: 700;
    padding-left: 1.5rem;
}

.offcanvas_menu ul li a img {
    width: 1.8rem;
}

.offcanvas_menu .dropdown_menu {
    padding: 0 2rem;
    border-bottom: 1px solid #D9D9D9;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease;
}

.offcanvas_menu .dropdown_menu.open {
    opacity: 1;
}

.offcanvas_menu .dropdown_toggle.active {
    border-bottom: none;
}

.offcanvas_menu .dropdown_toggle img {
  transition: transform 0.3s ease;
}

.offcanvas_menu .dropdown_toggle.active img {
  transform: rotate(180deg);
}

.offcanvas_menu .dropdown_menu a {
    font-weight: 400;
    border: none;
}


/*===================== main_content =======================*/
.main_content {
    background: var(--white);
    padding: 0.6rem 0.6rem 0.6rem 21rem;
    overflow: hidden;
}

/* REMOVED - This was causing fat space on portfolio page */

.portfolio_header h4 {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: rgba(0, 8, 23, 0.88);
}

.back_btn a {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    text-align: center;
    padding: 0.4rem 1.4rem;
    border-radius: 0.2rem;
    transition: 0.2s all ease;
}

.back_btn a:hover {
    opacity: 0.75;
}

.hamburgar_btn {
    display: none;
    z-index: 1024;
    position: relative;
}

.portfolio_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.4rem;
    position: relative;
}

.portfolio_row2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Removed the white gradient fade */

.portfolio_card {
    background: var(--black);
    transition: 0.25s all ease;
    position: relative;
}

.card_item {
    position: relative;
}

.card_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s all ease;
}

.card_item span {
    font-family: var(--inter);
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--white);
    background: var(--black);
    display: inline-block;
    padding: 0.2rem 0.4rem;
    border-radius: 0.2rem;
    position: absolute;
    left: 0.4rem;
    top: 0.4rem;
    transition: 0.2s all ease;
    z-index: 9;
}

.card_item a {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.25s all ease;
}

.card_text {
    background: var(--white);
    width: 100%;
    padding: 0.8rem 0.8rem;
    z-index: 9;
}

.card_text h4 {
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    line-height: 117.925%;
    color: var(--black);
    margin-bottom: 1px;
}

.card_text p {
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 151.617%;
    color: var(--black);
    margin: 0;
}

.portfolio_card:hover,
.portfolio_card.active {
    background: var(--black);
}

.portfolio_card:hover .card_text,
.portfolio_card.active .card_text {
    background: var(--black);
}

.portfolio_card:hover .card_text h4,
.portfolio_card:hover .card_text p,
.portfolio_card.active .card_text h4,
.portfolio_card.active .card_text p {
    color: var(--white);
}

.portfolio_card:hover .card_item span,
.portfolio_card.active .card_item span {
    background: var(--white);
    color: var(--black);
}

.card_item .card_banner_hover {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s all ease;
    z-index: 9;
}

.portfolio_card:hover .card_banner_hover,
.portfolio_card.active .card_banner_hover {
    visibility: visible;
    opacity: 1;
}

.portfolio_card:hover .card_banner,
.portfolio_card.active .card_banner {
    visibility: hidden;
    opacity: 0;
}

/* carousel container */
.card_banner_hover {
    overflow: hidden;
    transition: 0.2s all ease;
}

.carousel_slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* project_card  */
.project_card {
    position: relative;
}

.project_card .card_text {
    background: transparent!important;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.project_card .card_text h4,
.project_card .card_text p {
    color: var(--white);
}

.project_card a {
    width: 100%;
    height: 100%;
    display: block;
}

.project_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Page Layout */
.portfolio_header {
    position: fixed;
    top: 0;
    left: 21rem; /* Account for sidebar width */
    right: 0;
    background: var(--white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem;
    z-index: 1024;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 0.5rem;
}

/* Add space for fixed header on projects pages */
.portfolio_header + .portfolio_row {
    margin-top: 60px;
}



/* Lightbox Fullscreen Overlay */

.fullscreen-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 21rem);
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  padding: 4rem 4rem;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.fullscreen-content .project_card {
  overflow: auto;
}

.exit-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.5;
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none; 
    z-index: 10000;
}


/*======================== index page start ==========================*/
.header_area {
    width: 100%;
    padding: 1.2rem 2.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.main_nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.main_nav ul li {
    position: relative;
}

.main_nav ul li a {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: #091122;
    transition: 0.2s all ease;
    position: relative;
    z-index: 1024;
    text-transform: none !important;
}

.main_nav ul li a:hover {
    opacity: 0.8;
}

.main_nav .dropdown_menu {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 100%;
    display: block;
    background: transparent;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease;
    z-index: 9;
    transform: translateY(1rem);
}

.main_nav .dropdown_menu::before {
    content: "";
    width: 100%;
    height: 1.2rem;
    display: block;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.main_nav .dropdown_menu a {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #091122;
    transition: initial;
}

.main_nav .dropdown_menu a:hover {
    font-weight: 600;
}

.main_nav ul li:hover .dropdown_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0rem);
}

.menu_togler {
    display: none;
}

/* main_wrapper start */
.main_wrapper {
    background: var(--white);
    min-height: 100vh;
    position: relative;
    padding: 0 2.4rem;
    margin: 0;
}

.big_logo {
    width: 108rem;
    position: absolute;
    top: 44.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.big_logo img {
    width: 108rem;
}

/* feature_box */
.feature_box {
    max-width: 25rem;
    width: 100%;
    border-top: 0.2rem solid #DFDFDF;
    border-right: 0.2rem solid #0A0A0A;
    border-bottom: 0.2rem solid #0A0A0A;
    border-left: 0.2rem solid #DFDFDF;
    z-index: 9;
    position: absolute;
    top: 9%;
    left: 2%;
}

.feature_border {
    border-top: 0.2rem solid #FFFFFF;
    border-right: 0.2rem solid #808080;
    border-bottom: 0.2rem solid #808080;
    border-left: 0.2rem solid #FFFFFF;
}

.feature_innerBorder {
    border: 0.3rem solid #C0C0C0;
}

.feature_title {
    background: linear-gradient(90deg, #00007D 0.5%, #0086D6 100%);
    border-bottom: 0.3rem solid #C0C0C0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.2rem 0.2rem 0.3rem;
}

.feature_title  h3 {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--white);
}

.feature_title ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.feature_title button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.feature_title button img {
    width: 1.6rem;
}

.feature_title ul li:last-child {
    margin-left: 0.2rem;
}

.feature_inner_field {
    background: #1A0842;
    height: 12rem;
}

.animate_content {
    max-width: 16.2rem;
    width: 100%;
}

.animate_content pre {
    font-family: var(--ibm-plex-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: #142C78;
    fill: #1244F0;
    mix-blend-mode: hard-light;
    text-shadow: 0 0.08rem 0.2rem 0 rgba(255, 255, 255, 0.50) inset, 0 -0.08rem 0.24rem 0 rgba(0, 61, 255, 0.50) inset;
    filter: blur(0.01rem) drop-shadow(0 0 0.4rem rgba(0, 31, 109, 0.40));
}

.animate_content span {
    font-family: var(--ibm-plex-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: #142C78;
    fill: #1244F0;
    mix-blend-mode: hard-light;
    text-shadow: 0 0.08rem 0.2rem 0 rgba(255, 255, 255, 0.50) inset, 0 -0.08rem 0.24rem 0 rgba(0, 61, 255, 0.50) inset;
    filter: blur(0.06rem) drop-shadow(0 0 0.4rem rgba(0, 31, 109, 0.40));
}

.animate_content .text1 {
    position: absolute;
    right: 0;
    top: 52%;
}

.animate_content .text2 {
    position: absolute;
    bottom: 11.5%;
    left: 0rem;
}


.animate_text1 {
    position: absolute;
    left: 27%;
    top: 18%;
}

.animate_text2 {
    position: absolute;
    left: 46%;
    top: 5%;
}

.animate_text3 {
    position: absolute;
    right: 4.5%;
    top: 3%; 
}

.animate_text4 {
    position: absolute;
    left: 2.5%;
    top: 62.5%;
}

.animate_text5 {
    position: absolute;
    left: 30%;
    top: 40%;    
}

.animate_text6 {
    position: absolute;
    left: 25%;
    top: 64%;  
}

.animate_text7 {
    position: absolute;
    left: 49%;
    top: 66.5%;
}

.animate_text8 {
    position: absolute;
    right: 1%;
    top: 55%;
}

/* about-text */
.about_text {
    max-width: 25rem;
    width: 100%;
    position: absolute;
    left: 2.4%;
    top: 42%;
}

.about_text h3 {
    font-family: var(--aeonik-pro-trial);
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: -0.5rem;
    color: #08248B;
    filter: blur(0.1rem);
}   

.about_text img {
    width: 21.2rem;
    margin-left: -0.5rem;
}

.uitext {
    fill: #091122;
    text-shadow: 0 0.55rem 0.8rem 0 rgba(0, 61, 255, 0.50) inset, 0 -0.3rem 0.8rem 0 rgba(0, 61, 255, 0.50) inset;
    filter: drop-shadow(0 0 0.8rem rgba(0, 31, 109, 0.40));
    margin-top: -0.6rem;
}

.about_text p {
    font-family: var(--inter);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05rem;
    color: #08248B;
    filter: blur(0.1rem);
}

.toggle_box {
    max-width: 40rem;
    width: 100%;
    margin-left: auto;
    position: absolute;
    top: 2%;
    right: 8%;
}


/* char item */
.char_item {
    max-width: 40rem;
    width: 100%;
    margin-left: auto;
    position: absolute;
    top: 2%;
    right: 0%;
}

.char_item img {
    width: 100%;
}

/* animate_box */
.animate_box {
    max-width: 16.2rem;
    width: 100%;
    border: 0.15rem solid var(--black);
    position: relative;
}

.animate_box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
}

.animate_boxheading {
    background: var(--black);
    padding: 0.05rem 0.2rem 0.3rem;
}

.animate_boxheading h4 {
    font-family: var(--aeonik-pro-trial);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 106.132%;
    color: var(--white);
}

.animate_boxcontent {
    padding: 5rem 0.4rem 0.4rem;
    position: relative;
}

.animate_boxcontent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, #3868FF 0%, #DB00CD 21.15%, #FF005E 42.79%, #FFAB00 62.02%, #FFFC00 83.17%, #FFF 100%);
    background: linear-gradient(105deg, color(display-p3 0.2644 0.4044 1) 0%, color(display-p3 0.7843 0 0.7765) 21.15%, color(display-p3 1 0.1647 0.3843) 42.79%, color(display-p3 1 0.6863 0) 62.02%, color(display-p3 1 0.9882 0.0039) 83.17%, color(display-p3 1 1 1) 100%);
    mix-blend-mode: overlay;
}

.animate_boxcontent pre {
    font-family: var(--ibm-plex-mono);
    font-size: 0.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    mix-blend-mode: exclusion;
}

.animate_box1 {
    position: absolute;
    top: 3rem;
    left: 6rem;
}

.animate_box2 {
    position: absolute;
    top: 21rem;
    left: 3rem;
}

.animate_box3 {
    position: absolute;
    top: 16rem;
    right: 1rem;
}


/* footer_area */
.footer_area {
    background: transparent;
    width: 100%;
    padding: 0rem 2rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -7.5rem;
    position: relative;
    z-index: 20;
}

.footer_left {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    position: relative;
    top: -0.5rem;
}

.footer_item a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.footer_icon1,
.footer_icon2,
.footer_icon3 {
    flex-shrink: 0;
}

.footer_icon1 img {
    width: 7rem;
}

.footer_icon2 img {
    width: 4.3rem;
}

.footer_icon3 img {
    width: 3.7rem;
}

.footer_text h4 {
    font-family: var(--aeonik-pro-trial);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: rgba(0, 8, 23, 0.88);
    margin: 0;
}

.footer_text h4 span {
    color: #9EA1A7;
}

.footer_text p {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: rgba(0, 8, 23, 0.88);
    margin: 0;
}

.footer_right {
    text-align: right;
    position: relative;
    top: -0.5rem;
}

.footer_right img {
    width: 28rem;
}

.footer_right p {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 163.636%;
    color: rgba(0, 8, 23, 0.42);
    margin: 0;
}

.footer_right p a {
    font-style: italic;
    color: var(--black);
    text-decoration: underline;
}


/* ==================== custom animation  ====================== */
/* === SMOOTH FILTER KEYFRAMES === */
@keyframes smoothFilter {

    0%,
    100% {
        filter: blur(0.1rem) drop-shadow(0 0 0.4rem rgba(0, 31, 109, 0.4));
    }

    50% {
        filter: none;
    }
}

@keyframes smoothTextFilter {

    0%,
    100% {
        filter: blur(0.1rem);
    }

    50% {
        filter: none;
    }
}

.animate_content span {
    animation: smoothFilter 2s ease-in-out infinite;
}

/* individual movement and delay */
.animate_text1 span {
    animation-delay: 0.4s;
}

.animate_text2 span {
    animation-delay: 0.4s;
}

/*.animate_text3 pre {
    animation-delay: 0.6s;
}

.animate_text4 pre {
    animation-delay: 0.9s;
}

.animate_text5 pre {
    animation-delay: 1.2s;
}

.animate_text6 pre {
    animation-delay: 1.5s;
}

.animate_text7 pre {
    animation-delay: 1.8s;
}

.animate_text8 pre {
    animation-delay: 2.1s;
}
*/



/* Removed blinkToggle keyframes - no longer needed */

/* LOG blocks are now static - no animations */


/* Removed blinkToggle2 keyframes - no longer needed */

/* LOG blocks are now static - no active animations */

/* Project Context Section */
.project_context {
    width: 100%;
    margin: 3rem 0 0;
    padding: 0 0 0 1rem;
    position: relative;
}

.project_context + .portfolio_row {
    margin-top: 0.5rem;
}

/* Removed problematic spacing rules - will add back more carefully */

.project_context::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #D9D9D9;
}

.context_content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem 2rem 2rem 0;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.context_content p {
    font-family: var(--ibm-plex-mono);
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
}

.context_content p:last-child {
    margin-bottom: 0;
}

/* Position presets */
.pos1 { 
    top: 2rem;
    left: 10rem;
    animation-delay: 0.3s;
}

.pos2 { 
    top: 18rem;
    left: 2rem;
    animation-delay: 2s;
}

.pos3 { 
    top: 21rem;
    right: 0.5rem;
    animation-delay: 5s;
}

.pos4 { 
    top: 8rem;
    left: 15rem;
    animation-delay: 0.8s;
}

.pos5 { 
    top: 25rem;
    left: 8rem;
    animation-delay: 1.2s;
}

.pos6 { 
    top: 12rem;
    right: 3rem;
    animation-delay: 1.5s;
}

.pos7 { 
    top: 5rem;
    left: 5rem;
    animation-delay: 0.6s;
}

.pos8 { 
    top: 30rem;
    right: 8rem;
    animation-delay: 2.5s;
}

.pos9 { 
    top: 15rem;
    left: 20rem;
    animation-delay: 1.8s;
}

.pos10 { 
    top: 35rem;
    left: 12rem;
    animation-delay: 3.2s;
}


/*========================= marquee slider start =====================*/
.marquee_area {
    background: #1854FF;
    padding: 0.5rem 0;
    position: relative;
    z-index: 30;
    width: 100%;
    margin: 0;
}

/* Desktop - fixed to viewport bottom */
@media (min-width: 768px) {
    .marquee_area {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }
}

/* Mobile - at bottom of page content */
@media (max-width: 767px) {
    .marquee_area {
        position: relative;
        margin-bottom: -1rem;
    }
}

.marquee_area::before {
    content: "";
    width: 5rem;
    height: 100%;
    display: block;
    background: linear-gradient(-270deg, #0056FF 0%, #0056FF 100%);
    background: linear-gradient(-270deg, color(display-p3 0.0941 0.3294 1) 0%, color(display-p3 0.0941 0.3294 1 / 0.00) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.marquee_area::after {
    content: "";
    width: 5rem;
    height: 100%;
    display: block;
    background: linear-gradient(270deg, #0056FF 0%, #0056FF 100%);
    background: linear-gradient(270deg, color(display-p3 0.0941 0.3294 1) 0%, color(display-p3 0.0941 0.3294 1 / 0.00) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.marquee {
    overflow-x: clip;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 0;
    will-change: transform;
}

.marquee_item h4 {
    font-family: var(--ibm-plex-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
    fill: #FFF;
    mix-blend-mode: hard-light;
    filter: blur(0.3732718527317047px) drop-shadow(0 0 0.4rem rgba(0, 31, 109, 0.40));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.marquee_item h4 img {
    max-width: 0.8rem;
    width: 0.8rem;
    margin: 0 2rem;
    mix-blend-mode: hard-light;
    filter: blur(0.3732718527317047px) drop-shadow(0 0 0.4rem rgba(0, 31, 109, 0.40));
}


/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.preloader-content {
    max-width: 37rem;
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 0 1.5rem;
}

.flower-img {
    width: 34rem;
    display: block;
    margin: 0 auto;
}

.preloader-content h3 {
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #F00;
    text-align: center;
    margin: 16px 0px 5px;
}

.preloader-content h4 {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--black);
    text-align: center;
    margin-bottom: 7px;
}

.preloader-content p {
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
    text-align: center;
}

.preloader-content p span {
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #FF0000;
}

.preloader_logo img {
    width: 7.8rem;
    display: block;
    margin: 0 auto;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 0.2rem;
    background: rgba(255, 0, 0, 0.10);
    margin-top: 3.2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(0deg, #F00 0%, #F00 100%), #D9D9D9;
    transition: width 0.1s linear;
}

/*========================== Contact Page Styles ============================*/
.contact_content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.contact_content h1 {
    font-family: 'Aeonik Pro TRIAL', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact_content p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2rem;
    color: #0013B5;
    text-shadow: 0 0 10px rgba(0, 19, 181, 0.5);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact_content a {
    color: #0013B5;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 19, 181, 0.5);
    transition: all 0.3s ease;
}

.contact_content a:hover {
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 19, 181, 0.8);
}
