
        :root {
            /* Colors */
            --color-background: #fff;
            --color-border: #D4F1DE;
            --color-primary: #79de9b;
            --color-secondary: #04536C;
            --color-accent: #7CE49F;
            --color-nav-bg: #fff;
            --color-nav-shadow: rgba(0,0,0,0.04);
            --color-heading: #333;
            --color-subheading: gray;
            --color-text: #333;
            --color-text-light: #555;
            --color-dot: #e8e8e8;
            --color-dot-active: rgb(121 222 155);
            --color-tooltip-bg: #fff;
            --color-tooltip-border: #ccc;
            --color-tooltip-shadow: 0 4px 16px rgba(0,0,0,0.12);
            /* Light green */
            --color-light-green: #f1fff6;
            /* Typography */
            --font-family-base: Arial, sans-serif;
            --font-family-heading: 'Playfair Display', serif;
            --font-size-h1: 4rem;
            --font-size-h2: 2.8rem;
            --font-size-h3: 1.4rem;
            --font-size-p: 1.2rem;
            --font-size-project-title: 1.2rem;
            --font-size-carousel-btn: 1.2rem;

            /* Spacing */
            --space-xs: 8px;
            --space-sm: 12px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-xxl: 40px;

            /* Border radius */
            --radius-sm: 2px;
            --radius-md: 4px;
            --radius-lg: 6px;
            --radius-xl: 8px;

            /* Shadows */
            --shadow-nav: 0 2px 8px var(--color-nav-shadow);
            --shadow-carousel: inset 0 0 0 0px var(--color-accent);
            --shadow-carousel-hover: inset 0 0 0 6px var(--color-accent);

            /* Sizes */
            --nav-min-height: 64px;
            --logo-start: 240px;
            --logo-scroll: 96px;

            --company-img-width: 200px;
            --carousel-item-height: 100px;
            --carousel-dot-size: 14px;
            --carousel-controls-width: 40px;
            --container-width: 60%;
            --container-min-width: 640px;
        }

        body {
            font-family: var(--font-family-base);
            background: var(--color-light-green);
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        body > *:not(canvas) {
            position: relative;
            z-index: 1;
        }

        body.preloader-active > *:not(.preloader) {
            opacity: 0;
            pointer-events: none;
        }

        .preloader {
            position: fixed;
            inset: 0;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            z-index: 12345;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .preloader h1 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--color-secondary);
            font-family: var(--font-family-heading);
            font-weight: 900;
        }

        .removePreloader {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 9rem;
            margin: 0 auto;
        }

        .preloader .loader {
            width: 14rem;
        }

        .loader img {
            width: 100%;
            height: auto;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-20px);
            }

            60% {
                transform: translateY(-10px);
            }
        }

        .bounce {
            animation: bounce 2s infinite;
        }
h2{
    font-size: var(--font-size-h2) !important;
    margin: 0 !important;
    font-weight: 300;
    color: var(--color-secondary) !important;
    font-family: var(--font-family-heading) !important;
}
       
        section{
            margin-bottom: 120px;
        }

        .blogcontainer {
	margin: 0 auto;
    width: 100%;
	max-width: 1280px;
	padding: 4rem;
	
}
        .arrowContainer {
            display: flex;
            justify-content: center;
            margin-bottom: var(--space-md);
            cursor: pointer;
            pointer-events: auto;
            z-index: 10;
        }
        .carousel-item a{
            display:none
        }
        .main-nav a{
            color: var(--color-text);
            text-decoration: none;
            border-bottom: 3px solid white;
            transition: background 0.3s ease;
        }
        .main-nav a.active {
            color: var(--color-secondary);
            border-bottom: 3px solid var(--color-secondary);
            pointer-events: auto;
        }
        .main-nav a:hover {
           border-bottom: 0px solid var(--color-accent);
            color: var(--color-background);
        }
        .main-nav {
            width: 100%;
            display: flex;
            height: var(--nav-min-height);
            justify-content: center;
            align-items: center;
            margin: 0 0 var(--space-md) 0;
            position: sticky;
            top: 0;
            background: var(--color-nav-bg);
            z-index: 100;
            box-shadow: var(--shadow-nav);
            min-height: var(--nav-min-height);
            padding: 0 var(--space-lg);
        }


        .nav-logo img {
            margin-top: var(--space-lg);
        }
        .active{
            color: var(--color-primary);
            border-bottom: 3px solid var(--color-primary);
        }
        .main-nav .nav-logo {
            height: 40px;
            margin-right: 32px;
            display: flex;
            align-items: center;
        }
        .tooltip{
            pointer-events: none;
        }
        h1 {
            font-size: 4rem;
            margin: 0;
            font-family: 'Playfair Display', serif;
            color: var(--color-secondary);
        }
        h3, .year {
            font-size: var(--font-size-h3) !important;
            margin: 0 !important;
            color: var(--color-secondary) !important;
            font-family: var(--font-family-heading) !important;
            width:auto !important;
        }
        h4{
            margin:0px;
        }
        .company p{
            font-size: 1rem !important;
            color: var(--color-secondary) !important;
        }
.carousel-item .projDesc p{
            display:none;
            font-size: 1rem !important;
            color: var(--color-text) !important;
            margin: 0 !important;
            line-height: 1.5rem !important;
        }
        .carousel-item:hover .projDesc p{
            display:block;
        }
        .carousel-item:hover .projDesc {
            color: var(--color-heading);    
        }
        .carousel-item:hover h3,
        .carousel-item:hover .year {
            color: var(--color-secondary);
        }
        .main-nav, .main-nav a {
            font-family: var(--font-family-heading);
        }
        .main-nav {
            width: -webkit-fill-available;
            display: flex;
            justify-content: center;
            
    border: 0px red solid;
        }
        .main-nav a {
            margin: 0 18px;
            text-decoration: none;
            color: var(--color-text);
            font-weight: 600;
            position: relative;
            overflow: hidden;
                display: flex;
    align-content: center;
    align-items: center;
    color: var(--color-primary);
            font-size: 1.6rem;
            padding: 10px 0;
            
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--color-secondary);
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 3px;
            background: var(--color-heading);
            background-size: 200% 100%;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55), background-position 1s linear;
            z-index: 1;
        }

        p {
            font-size: var(--font-size-p);
            color: var(--color-text);
            margin: 0;
            line-height: 1.5rem;
        }
        .symbol {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin: 40px 0px;
            align-items: flex-start;
        }
        .symbol img {
            width: var(--logo-start);
            height: auto;
            margin: 0 auto;
        }
        .headerRight {
            display: flex;
            flex-direction: column;
            align-items: left;
            margin-left: var(--space-lg);
            gap: var(--space-xs);
            width: 620px;
        }
        .headerRight p{
            font-size: 1.2rem;
            color: var(--color-text-light);
            max-width: 600px;
            text-align: left;
            line-height: 150%;
        }
        .company img {
            width: var(--company-img-width) !important;
            height: auto;
            padding: 16px;
            background: white;
            border-radius: 8px;
        }
        .company h3 {
            font-size: var(--font-size-h3);
            color: var(--color-secondary);
            margin: 0;
            font-family: 'Playfair Display', serif;
        }

        .skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        .skill-badge {
            background: #c6fed8;
            color: var(--color-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            display: inline-block;
            font-family: var(--font-family-base);
        }

.aboutContainer {
	width: 100%;
    max-width: 1280px;
	height: auto;
	margin: 0 auto;
	padding: 2rem;
	display: flex;
	gap: 24px;
    justify-content: center;
}
.left{
    width:280px;
}
.left p{
    padding:0px;
    margin: 0;
    text-align:left;
}
.right{
    width: 680px;
}
.left{
    display: flex;
    flex-direction: column;
}
        .aboutContainer h2 {
            font-size: 2.5rem;
            color: var(--color-secondary);
            margin-bottom: 16px;
            font-family: 'Playfair Display', serif;
        }

        .carousel-item {
            background: #e6fbed;
           display: flex;
            align-items: center;
            font-size: 2rem;
            background: #f0f0f0;
            box-sizing: border-box;
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            scroll-snap-align: start;
            box-shadow: var(--shadow-carousel);
            transition: all 0.3s ease;
        }

        .carousel-dots-container, .about-carousel-dots{
            margin-top: -48px;
        }

        .carousel-item:hover {
            background: var(--color-background) !important;
            box-shadow: var(--shadow-carousel-hover);
        }
        .projDesc {
            font-size: var(--font-size-h3);
            color: var(--color-secondary);
                margin: 0 !important;
                line-height: 1.5rem !important;
                font-family: var(--font-family-heading) !important;
            white-space: normal;
            word-break: break-word;
            width: -webkit-fill-available;
        }
        .projectTitle {
            font-size: var(--font-size-project-title);
            font-weight: bold;
                color: var(--color-secondary);
        }
        .company {
            display: flex;
            flex-direction: row;
            gap: var(--space-md);
            align-items: center;
        }

        .company-accordion-trigger {
            cursor: pointer;
            position: relative;
            padding-right: 2.25rem;
        }

        .company-accordion-trigger::after {
            content: '';
            position: absolute;
            right: 4px;
            top: 50%;
            width: 10px;
            height: 10px;
            border-right: 2px solid var(--color-secondary);
            border-bottom: 2px solid var(--color-secondary);
            transform: translateY(-50%) rotate(45deg);
            transition: transform 0.2s ease;
        }

        .carousel-container.company-open .company-accordion-trigger::after {
            transform: translateY(-50%) rotate(-135deg);
        }

        .company-accordion-panel.is-hidden {
            display: none;
        }
        .carousel-item h3 {
            width: calc(var(--company-img-width) + 20px);
            }
            .scrolldown-svg {
                position: absolute;
                pointer-events: none;
                z-index: -32000;
                transition:  all 1.2s ease;
            }


.text::after {
  content: '';
  animation: blink 1s step-end infinite;
  border-right: 2px solid #00bcd4;
  margin-left: 5px;
}

.dot {
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes dots {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

#work > div.mywork > img{
    width:auto;
height: 100%;
}
        .container {
            display: flex;
            gap: 56px;
            width: 880px;
            flex-direction: column;
            justify-content: center;
            }

            /* Contact Form Styles */
            #contactForm {
                background: #f8fff9;
                border: 1px solid var(--color-border);
                border-radius: var(--radius-lg);
                box-shadow: 0 2px 8px rgba(121, 222, 155, 0.08);
                padding: 32px 40px;
                width: 100%;
                max-width: 620px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 18px;
            }

            #contactForm label {
                font-family: var(--font-family-heading);
                font-size: 1.1rem;
                color: var(--color-secondary);
                margin-bottom: 6px;
                display: flex;
                flex-direction: column;
                gap: 6px;
            }

            #contactForm input,
            #contactForm textarea {
                font-family: var(--font-family-base);
                font-size: 1rem;
                padding: 10px 12px;
                border: 1px solid var(--color-border);
                border-radius: var(--radius-md);
                background: #fff;
                color: var(--color-text);
                margin-top: 4px;
                transition: border-color 0.2s;
                outline: none;
                resize: vertical;
            }

            #contactForm input:focus,
            #contactForm textarea:focus {
                border-color: var(--color-primary);
            }

            #contactForm textarea {
                min-height: 100px;
                max-height: 240px;
            }

            #contactForm button[type="submit"] {
            display: flex;
            background: var(--color-primary);
            color: #fff;
            font-family: var(--font-family-heading);
            font-size: 1.1rem;
            border: none;
            border-radius: var(--radius-md);
            transition: background 0.2s;
            margin-top: 10px;
            font-weight: 600;
            padding: 16px;
            justify-content: center;
            }
            
.mywork{
        height: 56px;
    margin: 0px auto;
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    justify-content: space-between;
    padding: 0 24px;
}

.mywork h6{
    font-size: var(--font-size-h);
    color: var(--color-secondary);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

            #contactForm button[type="submit"]:hover {
                background: var(--color-secondary);
            }


        .carousel-container {
            width: -webkit-fill-available;
            margin: var(--space-xxl) auto;
            overflow: hidden;
            position: relative;
            border-radius: 40px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: var(--space-lg);
            border: 10px solid #ededed;
            padding: 24px;
            margin: 0px;
            background-color: #f0f0f0;
            transition: all 0.3s ease;
        }
        .carousel-track-wrapper {
            flex: 1;
            overflow: hidden;
            scroll-snap-type: y mandatory;
        }
        .carousel-track {
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
            transition: transform 0.4s ease;
            scroll-snap-type: y mandatory;
        }
        .carousel-controls {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm) var(--space-xs);
            background: transparent;
            width: var(--carousel-controls-width);
        }
        .carousel-button {
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: var(--font-size-carousel-btn);
            border-radius: var(--radius-md);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ececec;
        }
        .nav-logo img {
            width: var(--logo-start);
            height: auto;
        }
        .carousel-dots {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-xs);
        }
        .carousel-dot {
            width: var(--carousel-dot-size);
            height: var(--carousel-dot-size);
            border-radius: 50%;
            border: none;
            outline: none;
            cursor: pointer;
            transition: background 0.2s;
        }
        .carousel-dot.active {
            background: var(--color-dot-active);
        }

        
#header .logo>* {

margin-top:10px;
}

.tooltip img{
    width:320px;
    height:auto;
    /* pointer-events: none; */
    transform: translateX(-60px);
    }
        .tooltip {
            border-radius: 6px;
           padding: 8px;
            z-index: 1000;
            /* pointer-events: none; Removed to allow clicks */
            transition: opacity 0.2s;
            opacity: 0;
            height:240px;
            height: auto;
            transition: all 0.2s ease;;
        }

    .tool-stack {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .tool {
      background: white;
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      width: 100%;
      display: flex;
      gap: 24px
    }
    
    .toolright{
        text-align: left;
    }

    .aboutmeimg{
        width:500px;
        height:auto;
        max-width:500px !important;
        margin-bottom: 16px;
    }

    .tool img {
      margin-bottom: 1rem;
      width: 56px
    }
    .tool h2 {
      color: var(--color-secondary);
      font-size: 1.2rem;
      margin: 0;
    }
.greenShape{
    position: absolute;
    /* top: -60px; */
    /* right: -60px; */
    width: 500px;
    height: 500px;
    z-index: -1;
    /* opacity: 0.3; */
    transform: rotate(0deg);
    transition: all 0.5s ease;
}   
.aboutMeBody {
    display: flex;
    flex-direction: column;
}
.aboutMeBody > p {
    width: 240px;
    position: absolute;
}
.carouselNext{
    padding: 12px 80px;
}

.aboutMeBody img {
    height: 420px;
    width: auto;
    margin-left: 150px;
}
.contactContainer {
    display: flex;
    align-items: center;
}   
button{
        background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    border: none;
    border-radius: var(--radius-md);
   cursor: pointer;
    display:flex;
    align-items: center;
    transition: background 0.2s;
    margin-top: 10px;
 
    font-weight: 600;
}

body.twglow-page {
    display: block;
    align-items: stretch;
    background: #fff;
}

body.twglow-page #wrapper {
    width: 100%;
}

body.twglow-page #main {
    width: 100%;
}

body.twglow-page #main .inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

body.twglow-page #page-title {
    line-height: 150%;
    margin-bottom: 1rem !important;
}

body.twglow-page h3 {
    font-size: 1.5rem !important;
    margin: 1.25rem 0 0.65rem !important;
}

body.twglow-page p,
body.twglow-page li {
    line-height: 1.7;
}

body.twglow-page .aboutCard {
    margin-bottom: 1.1rem;
}

body.twglow-page .contentContainer {
    padding-top: 1.5rem;
}

@media screen and (max-width: 900px) {
    body.twglow-page #main .inner {
        padding: 1.25rem 1rem 3rem;
    }

    body.twglow-page #page-title {
        font-size: 1.9rem !important;
    }
}
.about-carousel-item {
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
  width: 620px;
  transform: translateY(-80px) scale(0.98);
}
.highlightrole {
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    height:68px;
}

/* Plinko Modal */
.plinko-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.plinko-modal.active {
    display: flex;
}

.plinko-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.plinko-modal-content h2 {
    color: var(--color-secondary);
    margin: 0 0 24px 0;
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
}

.plinko-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-secondary);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plinko-close:hover {
    color: var(--color-primary);
}

#plinkoCanvas {
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: #f9f9f9;
    margin: 20px 0;
    cursor: crosshair;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.plinko-instruction {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 12px 0;
}

.plinko-result {
    margin-top: 20px;
    padding: 16px;
    background: var(--color-light-green);
    border-radius: 8px;
    color: var(--color-secondary);
    font-weight: 600;
    min-height: 24px;
}

.plinko-play-again {
    margin-top: 16px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plinko-play-again:hover {
    background: var(--color-secondary);
    color: white;
}