:root {
    --somnath-pt-coral: #FF6B57;
    --somnath-pt-blue: #3A36DB;
    --somnath-pt-purple: #6C3BFF;
    --somnath-pt-pink: #D94FD5;

    --somnath-pt-text-dark: #1B1B1B;
    --somnath-pt-text-gray: #7A7A7A;
    --somnath-pt-text-light: #A0A0A0;

    --somnath-pt-white: #FFFFFF;

    --somnath-pt-bg-gradient: linear-gradient(135deg, #FFF1EE 0%, #E6F3FA 100%);
    --somnath-pt-grad-text: linear-gradient(90deg, #6C3BFF, #D94FD5);

    --somnath-pt-font-main: 'Poppins', sans-serif;
    --somnath-pt-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.somnath-pt-body {
    font-family: var(--somnath-pt-font-main);
    background: var(--somnath-pt-bg-gradient);
    color: var(--somnath-pt-text-dark);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.somnath-pt-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Progress */

.somnath-pt-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--somnath-pt-grad-text);
    z-index: 10001;
}


/* Header & Navigation */
.somnath-pt-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: transparent;
    z-index: 1050;
    transition: var(--somnath-pt-transition);
}

.somnath-pt-header.somnath-pt-scrolled,
.somnath-pt-header.somnath-pt-menu-open {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.somnath-pt-header.somnath-pt-scrolled {
    height: 75px;
}

.somnath-pt-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.somnath-pt-logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--somnath-pt-text-dark);
}

.somnath-pt-nav-menu {
    display: flex;
    gap: 35px;
}

.somnath-pt-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--somnath-pt-text-gray);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.somnath-pt-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--somnath-pt-coral);
    transition: width 0.3s ease;
}

.somnath-pt-nav-link:hover::after,
.somnath-pt-nav-link.somnath-pt-active::after {
    width: 100%;
}

.somnath-pt-nav-link.somnath-pt-active,
.somnath-pt-nav-link:hover {
    color: var(--somnath-pt-coral);
}

.somnath-pt-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Style */
.somnath-pt-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
}

.somnath-pt-bar {
    width: 100%;
    height: 3px;
    background: var(--somnath-pt-text-dark);
    border-radius: 3px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* buttons */
.somnath-pt-btn-primary {
    background: var(--somnath-pt-coral);
    color: var(--somnath-pt-white);
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 107, 87, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.somnath-pt-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 87, 0.35);
}

.somnath-pt-btn-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--somnath-pt-blue);
    position: relative;
    padding-bottom: 4px;
}

.somnath-pt-btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--somnath-pt-blue);
    transition: width 0.3s ease;
}

.somnath-pt-btn-text:hover::after {
    width: 0%;
}

/* banner */
.somnath-pt-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.somnath-pt-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.somnath-pt-greeting {
    font-size: 22px;
    font-weight: 600;
    color: var(--somnath-pt-text-light);
    display: block;
    margin-bottom: 10px;
}

.somnath-pt-name {
    font-size: 78px;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 15px;
    align-items: center;
}

.somnath-pt-name-filled {
    font-weight: 800;
    background: var(--somnath-pt-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.somnath-pt-name-outline {
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--somnath-pt-purple);
}

.somnath-pt-profession {
    font-size: 36px;
    margin-bottom: 25px;
}

.somnath-pt-prof-light {
    font-weight: 600;
    color: var(--somnath-pt-text-light);
}

.somnath-pt-prof-dark {
    font-weight: 700;
    color: var(--somnath-pt-blue);
}

.somnath-pt-description {
    font-size: 16px;
    color: var(--somnath-pt-text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.somnath-pt-description strong {
    color: var(--somnath-pt-text-dark);
    font-weight: 600;
}

.somnath-pt-social-links {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.somnath-pt-social-icon {
    width: 45px;
    height: 45px;
    background: var(--somnath-pt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--somnath-pt-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--somnath-pt-transition);
}

.somnath-pt-social-icon:hover {
    background: var(--somnath-pt-coral);
    color: var(--somnath-pt-white);
    transform: translateY(-3px);
}

.somnath-pt-hero-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}


.somnath-pt-hero-image-area {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}

.somnath-pt-arch-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 560px;
}

.somnath-pt-arch-bg {
    width: 100%;
    height: 100%;
    background: #F8F5FB;
    border-radius: 250px 250px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.somnath-pt-arch-outline {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: 15px;
    border: 1px dashed rgba(108, 59, 255, 0.3);
    border-radius: 270px 270px 25px 25px;
    z-index: 1;
}

.somnath-pt-profile-img {
    width: 115%;
    height: auto;
    object-fit: cover;
    margin-bottom: -10px;
}

.somnath-pt-experience-card {
    position: absolute;
    top: 45%;
    right: -45px;
    background: var(--somnath-pt-white);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.somnath-pt-exp-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--somnath-pt-blue);
}

.somnath-pt-exp-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--somnath-pt-text-gray);
    line-height: 1.3;
}


.somnath-pt-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.somnath-pt-reveal.somnath-pt-active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1200px) {
    .somnath-pt-name {
        font-size: 60px;
        gap: 12px;
    }

    .somnath-pt-profession {
        font-size: 30px;
    }

    .somnath-pt-arch-wrapper {
        max-width: 380px;
        height: 500px;
    }

    .somnath-pt-experience-card {
        right: -20px;
    }
}

@media (max-width: 992px) {

    .somnath-pt-header {
        height: 75px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .somnath-pt-hero {
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .somnath-pt-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .somnath-pt-name {
        justify-content: center;
    }

    .somnath-pt-hero-content {
        order: 2;
    }

    .somnath-pt-hero-image-area {
        order: 1;
        justify-content: center;
        padding-right: 0;
    }

    .somnath-pt-description {
        margin: 0 auto 30px;
    }

    .somnath-pt-social-links {
        justify-content: center;
    }

    .somnath-pt-hero-buttons {
        justify-content: center;
    }

    .somnath-pt-nav-actions .somnath-pt-btn-primary,
    .somnath-pt-nav-menu {
        display: none;
    }

    .somnath-pt-hamburger {
        display: flex;
    }

    /* Overlay Background */
    .somnath-pt-menu-overlay {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 990;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .somnath-pt-menu-overlay.somnath-pt-active {
        opacity: 1;
        visibility: visible;
    }

    /* Side Panel Navigation */
    .somnath-pt-nav-menu.somnath-pt-mobile-active,
    .somnath-pt-nav-menu {
        display: flex;
        position: fixed;
        top: 75px;
        right: -100%;
        width: 300px;
        max-width: 80vw;
        height: calc(100vh - 75px);
        background: var(--somnath-pt-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        padding-top: 40px;
        z-index: 995;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.17, 1);
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active {
        right: 0;
    }

    .somnath-pt-nav-menu li {
        width: 100%;
        text-align: center;
    }

    .somnath-pt-nav-menu .somnath-pt-nav-link {
        display: inline-block;
        font-size: 16px;
        padding: 10px 20px;
        color: var(--somnath-pt-text-dark);
        font-weight: 500;
    }

    /* Staggered Link Animation */
    .somnath-pt-nav-menu li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li {
        opacity: 1;
        transform: translateX(0);
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .somnath-pt-nav-menu.somnath-pt-mobile-active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    /* Animated Hamburger to X */
    .somnath-pt-hamburger.somnath-pt-active .somnath-pt-bar:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .somnath-pt-hamburger.somnath-pt-active .somnath-pt-bar:nth-child(2) {
        opacity: 0;
    }

    .somnath-pt-hamburger.somnath-pt-active .somnath-pt-bar:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .somnath-pt-name {
        font-size: 48px;
        gap: 10px;
    }

    .somnath-pt-profession {
        font-size: 26px;
    }

    .somnath-pt-arch-wrapper {
        max-width: 320px;
        height: 420px;
    }

    .somnath-pt-experience-card {
        right: -10px;
        padding: 10px 18px;
    }

    .somnath-pt-exp-number {
        font-size: 24px;
    }

    .somnath-pt-exp-text {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .somnath-pt-name {
        font-size: 40px;
        gap: 8px;
    }

    .somnath-pt-profession {
        font-size: 22px;
    }

    .somnath-pt-arch-wrapper {
        max-width: 280px;
        height: 380px;
    }

    .somnath-pt-experience-card {
        top: auto;
        bottom: -20px;
        right: 50%;
        transform: translateX(50%);
    }

    .somnath-pt-hero-buttons {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 400px) {
    .somnath-pt-name {
        font-size: 28px;
        gap: 6px;
    }

    .somnath-pt-arch-wrapper {
        max-width: 250px;
        height: 340px;
    }

    .somnath-pt-experience-card {
        padding: 8px 15px;
        width: 85%;
        justify-content: center;
        left:20px
    }
}




/* About Section */

.somnath-pt-about {
    padding: 100px 0;
    background-color: #FAFAFC;
    overflow: hidden;
}

.somnath-pt-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Content Styles --- */
.somnath-pt-about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--somnath-pt-blue);
    margin-bottom: 15px;
}

.somnath-pt-about-subtitle svg {
    width: 16px;
    height: 16px;
}

.somnath-pt-about-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    color: #1A1A2E;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.somnath-pt-text-coral {
    color: var(--somnath-pt-coral);
}

.somnath-pt-text-blue {
    color: var(--somnath-pt-blue);
}

.somnath-pt-about-desc {
    font-size: 15px;
    color: var(--somnath-pt-text-gray);
    line-height: 1.7;
    margin-bottom: 35px;
    padding-right: 30px;
    text-align: justify;
}

.somnath-pt-about-action {
    display: flex;
    align-items: center;
}


.somnath-pt-about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 1000px;
}

.somnath-pt-service-card {
    display: flex;
    align-items: center;
    background: var(--somnath-pt-white);
    padding: 22px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.somnath-pt-card-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.somnath-pt-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.somnath-pt-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.somnath-pt-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--somnath-pt-blue);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.somnath-pt-card-desc {
    font-size: 14px;
    color: var(--somnath-pt-text-gray);
    margin-bottom: 15px;
}

.somnath-pt-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.somnath-pt-card-projects {
    font-size: 11px;
    font-weight: 500;
    color: #A0AAB5;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.somnath-pt-card-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--somnath-pt-blue);
    font-size: 18px;
    transition: all 0.4s ease;
    text-decoration: none;
}


.somnath-pt-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(58, 54, 219, 0.1);
}

.somnath-pt-service-card:hover .somnath-pt-card-title {
    color: var(--somnath-pt-coral);
}

.somnath-pt-service-card:hover .somnath-pt-card-arrow {
    color: var(--somnath-pt-coral);
    transform: translateX(3px) translateY(-3px);
}


.somnath-pt-delay-1 {
    transition-delay: 0.1s;
}

.somnath-pt-delay-2 {
    transition-delay: 0.2s;
}

.somnath-pt-delay-3 {
    transition-delay: 0.3s;
}



@media (max-width: 1200px) {
    .somnath-pt-about-title {
        font-size: 38px;
    }

    .somnath-pt-about-wrapper {
        gap: 40px;
    }

    .somnath-pt-service-card {
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .somnath-pt-about {
        padding: 70px 0;
    }

    .somnath-pt-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .somnath-pt-about-content {
        text-align: center;
    }

    .somnath-pt-about-subtitle {
        justify-content: center;
    }

    .somnath-pt-about-desc {
        padding-right: 0;
    }

    .somnath-pt-about-action {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .somnath-pt-about-title {
        font-size: 32px;
    }

    .somnath-pt-about-desc {
        font-size: 14px;
    }


    .somnath-pt-service-card {
        flex-direction: row;
        text-align: left;
        padding: 15px 20px;
        gap: 15px;
    }

    .somnath-pt-card-icon {
        width: 45px;
        height: 45px;
    }

    .somnath-pt-card-title {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .somnath-pt-card-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .somnath-pt-card-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .somnath-pt-card-projects {
        font-size: 10px;
    }

    .somnath-pt-card-arrow {
        margin-top: 0;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {

    .somnath-pt-service-card {
        padding: 12px 15px;
        gap: 12px;
    }

    .somnath-pt-card-icon {
        width: 35px;
        height: 35px;
    }

    .somnath-pt-card-title {
        font-size: 16px;
    }

    .somnath-pt-card-desc {
        font-size: 12px;
    }
}








/* Education Section */


.somnath-pt-education {
    padding: 100px 0;
    background-color: #F8F9FB;
}

.somnath-pt-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.somnath-pt-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(58, 54, 219, 0.15);
    border-radius: 2px;
}


.somnath-pt-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.somnath-pt-timeline-item:last-child {
    margin-bottom: 0;
}


.somnath-pt-timeline-dot {
    position: absolute;
    left: -40px;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--somnath-pt-coral);
    border: 3px solid #F8F9FB;
    box-shadow: 0 0 0 4px rgba(255, 107, 87, 0.15);
    transition: all 0.4s ease;
    z-index: 2;
}

.somnath-pt-timeline-content {
    background: var(--somnath-pt-white);
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.somnath-pt-timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--somnath-pt-white);
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.somnath-pt-timeline-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--somnath-pt-blue);
    background: rgba(58, 54, 219, 0.08);
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.somnath-pt-timeline-degree {
    font-size: 22px;
    font-weight: 700;
    color: var(--somnath-pt-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.somnath-pt-timeline-inst {
    font-size: 16px;
    font-weight: 500;
    color: var(--somnath-pt-coral);
    margin-bottom: 15px;
}

.somnath-pt-timeline-desc {
    font-size: 15px;
    color: var(--somnath-pt-text-gray);
    line-height: 1.7;
    margin: 0;
}

.somnath-pt-timeline-item:hover .somnath-pt-timeline-content {
    transform: translateX(5px) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.somnath-pt-timeline-item:hover .somnath-pt-timeline-dot {
    background-color: var(--somnath-pt-blue);
    box-shadow: 0 0 0 6px rgba(58, 54, 219, 0.15);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .somnath-pt-education {
        padding: 80px 0;
    }

    .somnath-pt-timeline {
        padding-left: 30px;
    }

    .somnath-pt-timeline-dot {
        left: -30px;
    }
}

@media (max-width: 768px) {
    .somnath-pt-timeline-content {
        padding: 25px 25px;
    }

    .somnath-pt-timeline-degree {
        font-size: 20px;
    }

    .somnath-pt-timeline-inst {
        font-size: 15px;
    }

    .somnath-pt-timeline-desc {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .somnath-pt-timeline {
        padding-left: 20px;
    }

    .somnath-pt-timeline-dot {
        left: -20px;
        width: 12px;
        height: 12px;
    }

    .somnath-pt-timeline-content {
        padding: 25px 20px;
    }

    .somnath-pt-timeline-content::before {
        left: -6px;
        width: 12px;
        height: 12px;
    }

    .somnath-pt-timeline-degree {
        font-size: 18px;
    }
}








/* Counter / Stats Section */


.somnath-pt-counter {
    position: relative;
    padding: 80px 0;
    background-color: #FAFAFC;
    z-index: 1;
}


.somnath-pt-counter-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #0B092A;
    z-index: -1;
}

.somnath-pt-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.somnath-pt-counter-card {
    background: linear-gradient(180deg, #E6EAFF 0%, #FFFFFF 100%);
    border-radius: 12px 12px 35px 12px;
    padding: 35px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.somnath-pt-counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.somnath-pt-number {
    font-size: 36px;
    font-weight: 600;
    color: #111130;
    margin-bottom: 8px;
    line-height: 1;
}

.somnath-pt-text {
    font-size: 14px;
    font-weight: 400;
    color: #3B3B53;
    margin: 0;
}

@media (max-width: 992px) {
    .somnath-pt-counter-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .somnath-pt-counter-card {
        padding: 25px 15px;
    }

    .somnath-pt-number {
        font-size: 30px;
    }

    .somnath-pt-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .somnath-pt-counter {
        padding: 60px 0;
    }

    .somnath-pt-counter-wrapper {
        gap: 15px;
    }

    .somnath-pt-counter-card {
        padding: 20px 10px;
        border-radius: 10px 10px 25px 10px;
    }

    .somnath-pt-number {
        font-size: 26px;
    }

    .somnath-pt-text {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .somnath-pt-counter-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .somnath-pt-counter-bg-top {
        height: 35%;
    }

    .somnath-pt-counter-card {
        padding: 50px 15px;
        border-radius: 12px 12px 35px 12px;
    }

    .somnath-pt-number {
        font-size: 32px;
    }

    .somnath-pt-text {
        font-size: 14px;
    }
}



/* Projects / Portfolio Section */

.somnath-pt-projects {
    padding: 100px 0;
    background-color: var(--somnath-pt-white);
}

.somnath-pt-section-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.somnath-pt-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.somnath-pt-project-card {
    position: relative;
    background: var(--somnath-pt-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.somnath-pt-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}


.somnath-pt-project-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.somnath-pt-project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.somnath-pt-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.somnath-pt-project-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 10px solid rgba(135, 140, 145, 0.85);
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.somnath-pt-project-card:hover .somnath-pt-project-img-wrapper img {
    transform: scale(1.05);
}

.somnath-pt-project-card:hover .somnath-pt-project-overlay,
.somnath-pt-project-card:hover .somnath-pt-project-img-wrapper::after {
    opacity: 1;
}


.somnath-pt-project-details {
    margin-top: 25px;
    padding: 0 5px;
    text-align: left;
}

.somnath-pt-project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--somnath-pt-blue);
    margin: 0 0 12px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.somnath-pt-project-card:hover .somnath-pt-project-title {
    color: var(--somnath-pt-coral);
}

.somnath-pt-project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.somnath-pt-project-tech span {
    font-size: 12px;
    font-weight: 500;
    color: var(--somnath-pt-coral);
    background: rgba(255, 107, 87, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.somnath-pt-project-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

@media (max-width: 1200px) {
    .somnath-pt-projects-grid {
        gap: 20px;
    }

    .somnath-pt-project-title {
        font-size: 18px;
    }

    .somnath-pt-project-tech span {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 992px) {
    .somnath-pt-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .somnath-pt-section-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .somnath-pt-projects {
        padding: 70px 0;
    }

    .somnath-pt-projects-grid {
        gap: 20px;
    }

    .somnath-pt-project-card {
        padding: 15px;
    }

    .somnath-pt-project-img-wrapper::after {
        border-width: 8px;
    }
}

@media (max-width: 576px) {
    .somnath-pt-projects-grid {
        grid-template-columns: 1fr;
    }

    .somnath-pt-project-details {
        margin-top: 20px;
    }

    .somnath-pt-project-title {
        font-size: 20px;
    }
}







/* Testimonials Section */


.somnath-pt-testimonials {
    padding: 100px 0;
    background-color: var(--somnath-pt-white);
    overflow: hidden;
}


.somnath-pt-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.somnath-pt-section-header .somnath-pt-section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.somnath-pt-section-subtitle {
    font-size: 16px;
    color: var(--somnath-pt-text-gray);
    margin-top: 0;
}

.somnath-pt-marquee-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    overflow: hidden;
}

.somnath-pt-marquee-wrapper::before,
.somnath-pt-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.somnath-pt-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.somnath-pt-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.somnath-pt-marquee-track {
    display: flex;
    width: max-content;
}

.somnath-pt-marquee-content {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    animation: somnathPtScroll 25s linear infinite;
}

.somnath-pt-marquee-track:hover .somnath-pt-marquee-content {
    animation-play-state: paused;
}

@keyframes somnathPtScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


.somnath-pt-testimonial-card {
    width: 400px;
    flex-shrink: 0;
    background: #F8F9FB;
    padding: 35px 30px;
    border-radius: 16px;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.somnath-pt-testimonial-card:hover {
    transform: translateY(-5px);
}

.somnath-pt-quote-icon {
    font-size: 32px;
    color: rgba(255, 107, 87, 0.2);
    margin-bottom: 20px;
}

.somnath-pt-testimonial-text {
    font-size: 16px;
    color: var(--somnath-pt-text-dark);
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.somnath-pt-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.somnath-pt-client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.somnath-pt-client-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--somnath-pt-blue);
    margin: 0 0 3px 0;
}

.somnath-pt-client-role {
    font-size: 13px;
    color: var(--somnath-pt-text-gray);
}

@media (max-width: 1200px) {
    .somnath-pt-testimonial-card {
        width: 380px;
        padding: 30px 25px;
    }

    .somnath-pt-marquee-content {
        gap: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 992px) {
    .somnath-pt-testimonials {
        padding: 80px 0;
    }

    .somnath-pt-testimonial-card {
        width: 350px;
    }

    .somnath-pt-section-header .somnath-pt-section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .somnath-pt-marquee-wrapper::before,
    .somnath-pt-marquee-wrapper::after {
        width: 60px;
    }

    .somnath-pt-testimonial-card {
        width: 300px;
        padding: 25px 20px;
    }

    .somnath-pt-testimonial-text {
        font-size: 15px;
    }

    .somnath-pt-quote-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .somnath-pt-section-header .somnath-pt-section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .somnath-pt-testimonials {
        padding: 60px 0;
    }

    .somnath-pt-marquee-wrapper::before,
    .somnath-pt-marquee-wrapper::after {
        display: none;
    }

    .somnath-pt-marquee-content {
        gap: 20px;
        padding-right: 20px;
    }

    .somnath-pt-testimonial-card {
        width: 280px;
        padding: 20px 15px;
    }

    .somnath-pt-quote-icon {
        font-size: 24px;
    }

    .somnath-pt-testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .somnath-pt-client-img {
        width: 40px;
        height: 40px;
    }

    .somnath-pt-client-name {
        font-size: 15px;
    }

    .somnath-pt-client-role {
        font-size: 12px;
    }
}

@media (max-width: 360px) {

    .somnath-pt-testimonial-card {
        width: 260px;
    }
}




/* CONTACT SECTION */


.somnath-pt-contact-clean {
    padding: 80px 0;
    background: var(--somnath-pt-bg-gradient, #F8FAFC);
    overflow: hidden;
}

.somnath-pt-clean-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}


.somnath-pt-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--somnath-pt-coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.somnath-pt-clean-title {
    font-size: 42px;
    font-weight: 800;
    color: #1A1A2E;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.somnath-pt-clean-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 90%;
}

.somnath-pt-clean-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.somnath-pt-clean-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.somnath-pt-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 87, 0.1);
    color: var(--somnath-pt-coral);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.somnath-pt-clean-info-item:hover .somnath-pt-icon-circle {
    background: var(--somnath-pt-coral);
    color: var(--somnath-pt-white);
    transform: translateY(-3px);
}

.somnath-pt-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 5px;
}

.somnath-pt-info-content a,
.somnath-pt-info-content p {
    font-size: 15px;
    color: #64748B;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.somnath-pt-info-content a:hover {
    color: var(--somnath-pt-coral);
}

.somnath-pt-clean-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.somnath-pt-clean-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
}

.somnath-pt-input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.somnath-pt-input-box label {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
}

.somnath-pt-input-box input,
.somnath-pt-input-box textarea {
    box-sizing: border-box !important;
    width: 100% !important;
    padding: 16px 20px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #1A1A2E;
    transition: all 0.3s ease;
    outline: none;
}

.somnath-pt-input-box input::placeholder,
.somnath-pt-input-box textarea::placeholder {
    color: #94A3B8;
}

.somnath-pt-input-box input:focus,
.somnath-pt-input-box textarea:focus {
    background-color: var(--somnath-pt-white);
    border-color: var(--somnath-pt-coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 87, 0.1);
}

.somnath-pt-input-box textarea {
    resize: vertical;
    min-height: 140px;
}


.somnath-pt-btn-clean {
    align-self: flex-start;
    background: var(--somnath-pt-blue);
    color: var(--somnath-pt-white);
    border: none;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.somnath-pt-btn-clean:hover {
    background: var(--somnath-pt-coral);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 87, 0.2);
}


@media (max-width: 1200px) {
    .somnath-pt-clean-grid {
        gap: 50px;
    }

    .somnath-pt-clean-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .somnath-pt-clean-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .somnath-pt-clean-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .somnath-pt-contact-clean {
        padding: 80px 0;
    }


    .somnath-pt-clean-input-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px;
    }

    .somnath-pt-btn-clean {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .somnath-pt-contact-clean {
        padding: 60px 0;
    }

    .somnath-pt-clean-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .somnath-pt-clean-form {
        gap: 20px;
    }

    .somnath-pt-clean-input-row {
        gap: 20px;
    }

    .somnath-pt-input-box input,
    .somnath-pt-input-box textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .somnath-pt-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .somnath-pt-info-content h4 {
        font-size: 15px;
    }

    .somnath-pt-info-content p,
    .somnath-pt-info-content a {
        font-size: 14px;
    }
}





/* FOOTER CSS */


.somnath-pt-sleek-footer {
    background-color: #0B092A;
    color: var(--somnath-pt-white);
}


.somnath-pt-sleek-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}


.somnath-pt-footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.somnath-pt-sleek-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--somnath-pt-white);
    margin: 0;
    letter-spacing: -0.5px;
}


.somnath-pt-sleek-social {
    display: flex;
    gap: 15px;
}

.somnath-pt-sleek-social a {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 107, 87, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--somnath-pt-coral);
    font-size: 16px;
    transition: all 0.3s ease;
}

.somnath-pt-sleek-social a:hover {
    background: var(--somnath-pt-coral);
    color: var(--somnath-pt-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 87, 0.2);
}


.somnath-pt-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.somnath-pt-sleek-email {
    font-size: 16px;
    font-weight: 500;
    color: var(--somnath-pt-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.somnath-pt-sleek-email:hover {
    color: var(--somnath-pt-coral);
}

.somnath-pt-sleek-location {
    font-size: 14px;
    color: #A0AAB5;
    margin: 0;
}


.somnath-pt-copyright-bar {
    width: 100%;
}

.somnath-pt-copyright-bar .somnath-pt-container {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    text-align: center;
}

.somnath-pt-copyright-text {
    color: #A0AAB5;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .somnath-pt-sleek-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .somnath-pt-footer-left {
        align-items: center;
    }

    .somnath-pt-footer-right {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .somnath-pt-sleek-footer-content {
        padding: 50px 0;
    }

    .somnath-pt-sleek-brand {
        font-size: 24px;
    }

    .somnath-pt-sleek-email {
        font-size: 15px;
    }

    .somnath-pt-sleek-location {
        font-size: 14px;
    }

    .somnath-pt-footer-center {
        order: -1;
        margin-bottom: 10px;
    }

    .somnath-pt-copyright-bar {
        padding: 20px 0;
    }

    .somnath-pt-copyright-text {
        font-size: 14px;
    }
}



/* scroll up */




.somnath-pt-floating-btt {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--somnath-pt-coral); 
    color: var(--somnath-pt-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 107, 87, 0.4);
    z-index: 999; 
    
    /* নিচের লাইনগুলো বাটনটিকে শুরুতে লুকিয়ে রাখবে */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* স্ক্রল করার পর যখন JavaScript এই ক্লাসটি যুক্ত করবে তখন বাটনটি ভেসে উঠবে */
.somnath-pt-floating-btt.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.somnath-pt-floating-btt:hover {
    background-color: #0B092A; 
    color: var(--somnath-pt-coral);
    transform: translateY(-6px); 
    box-shadow: 0 15px 35px rgba(11, 9, 42, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .somnath-pt-floating-btt { bottom: 30px; right: 30px; width: 45px; height: 45px; font-size: 18px; }
}

@media (max-width: 576px) {
    .somnath-pt-floating-btt { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 16px; }
}