@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');

/* Page content styling */
.page-content {
    margin: 2rem 0;
}

.page-content h2, .page-content h3, .page-content h4 {
    color: #fff;
    margin: 1.5rem 0 1rem 0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.page-content h2 {
    font-size: 2.2rem;
}

.page-content h3 {
    font-size: 1.8rem;
}

.page-content h4 {
    font-size: 1.4rem;
}

.page-content p {
    margin: 1rem 0;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
}

.page-content strong {
    color: #fff;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
}

.page-content ul, .page-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
}

/* Markdown specific styling */
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    margin: 1.5rem 0 1rem 0;
}

.page-content h1 { font-size: 2.4rem; }
.page-content h2 { font-size: 2.2rem; }
.page-content h3 { font-size: 1.8rem; }
.page-content h4 { font-size: 1.4rem; }
.page-content h5 { font-size: 1.2rem; }
.page-content h6 { font-size: 1.1rem; }

.page-content p, .page-content div {
    margin: 1rem 0;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
}

.page-content ul, .page-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
}

.page-content strong, .page-content b {
    color: #fff;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
}

/* Tabs for Work section */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 10px 0;
}

.tab-btn {
    font-size: 16px;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer !important;
    transition: 0.25s ease-in-out;
}

.tab-btn:hover {
    color: rgb(255, 50, 50);
    background: #fff;
}

.tab-btn.active {
    color: rgb(255, 50, 50);
    background: #fff;
}

/* Progress indicator styling */
.progress-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 6px;
    z-index: 1000;
    padding: 8px 12px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.progress-dot.active {
    background: rgb(255, 50, 50);
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 50, 50, 0.6);
}

/* Project Cards Styling */
.project-card {
    margin: 20px 0;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.project-card.clickable {
    cursor: pointer !important;
}

.project-card.clickable:hover {
    transform: translateY(-4px);
    border-color: rgb(255, 50, 50);
    box-shadow: 0 8px 24px rgba(255, 50, 50, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.project-card-title {
    font-size: 1.8rem;
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: bold;
}

.project-card-date {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
}

.project-card-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0;
    line-height: 1.6;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0 0;
}

.project-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.2s ease;
}

.project-tag:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: rgb(255, 50, 50);
}

.project-tag-more {
    padding: 6px 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.project-card-cta {
    margin: 16px 0 0 0;
    font-size: 0.95rem;
    color: #fff;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card.clickable:hover .project-card-cta {
    opacity: 1;
}

.project-card.highlighted {
    border-color: rgb(255, 50, 50);
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.4);
}

/* Project filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: rgb(255, 50, 50);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: rgb(255, 50, 50);
    border-color: #fff;
    color: #fff;
}

/* Clickable tech tags */
.clickable-tech {
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.clickable-tech:hover {
    background: rgba(255, 50, 50, 0.3) !important;
    transform: scale(1.1);
    cursor: pointer !important;
}

/* Project Detail Page Styling */
.project-detail-page {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.project-back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    cursor: pointer !important;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.project-back-btn:hover {
    background: #fff;
    color: rgb(255, 50, 50);
    transform: translateX(-5px);
}

.project-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.project-detail-header h1 {
    font-size: 2.8rem;
    margin: 0 0 15px 0;
    color: #fff;
    text-decoration: none !important;
}

.project-detail-date {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
}

.project-detail-link {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: rgb(255, 50, 50);
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.project-detail-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.project-detail-body {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.7;
    margin: 30px 0;
}

.project-detail-body h2,
.project-detail-body h3,
.project-detail-body h4 {
    color: #fff;
    margin: 25px 0 15px 0;
}

.project-detail-body h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.project-detail-body h3 {
    font-size: 1.6rem;
}

.project-detail-body h4 {
    font-size: 1.3rem;
}

.project-detail-body p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.project-detail-body ul,
.project-detail-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.project-detail-body li {
    margin: 8px 0;
    font-size: 1.05rem;
}

.project-detail-body strong {
    color: #fff;
    font-weight: bold;
}

.project-detail-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-detail-body pre {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 15px 0;
}

.project-detail-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.project-detail-footer h3 {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 1.5rem;
}

.project-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-detail-tags .project-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    font-size: 0.95rem;
}

.project-detail-tags .project-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: scale(1.05);
}

/* Mobile detail page adjustments */
@media (max-width: 800px) {
    .project-detail-header h1 {
        font-size: 2rem;
    }

    .project-detail-body h2 {
        font-size: 1.6rem;
    }

    .project-detail-body h3 {
        font-size: 1.4rem;
    }

    .project-detail-body p {
        font-size: 1rem;
    }

    .project-back-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Skills section styling */
.skills-container {
    margin: 1.5rem 0;
}

.skill-category {
    margin: 1rem 0;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.skill-category h4 {
    margin: 0 0 0.8rem 0;
    color: rgb(255, 50, 50);
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.4rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    transition: 0.2s ease-in-out;
    white-space: nowrap;
}

.skill-tag:hover {
    background: rgba(255, 50, 50, 0.15);
    border-color: rgb(255, 50, 50);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 50, 50, 0.3);
}



/* Enhanced hover effects for work buttons */
.btn_one:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn_two:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 50, 50, 0.3);
}



/* Project item animations */
.project-item {
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.page-content em, .page-content i {
    font-style: italic;
    font-family: 'Josefin Sans', sans-serif;
}

/* Ensure consistent text sizing */
.container section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.container section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0;
    font-family: 'Josefin Sans', sans-serif;
}

.container section ul, .container section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.container section li {
    margin: 0.5rem 0;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
}

.container section strong {
    color: #fff;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
}

/* Consistent spacing for work experience sections */
.container section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.container section h4 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

/* Ensure all text elements use consistent font */
.container section *, .page-content * {
    font-family: 'Josefin Sans', sans-serif;
}

/* Fix any potential markdown rendering issues */
.container section h1, .container section h2, .container section h3, 
.container section h4, .container section h5, .container section h6 {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}

.container section em, .container section i {
    font-style: italic;
    font-family: 'Josefin Sans', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .container section h2 {
        font-size: 2rem;
    }

    .container section h3 {
        font-size: 1.6rem;
    }

    .container section h4 {
        font-size: 1.2rem;
    }

    .container section p, .container section li {
        font-size: 1rem;
    }

    .page-content h2 {
        font-size: 1.8rem;
    }

    .page-content h3 {
        font-size: 1.5rem;
    }

    .page-content h4 {
        font-size: 1.2rem;
    }

    .page-content p, .page-content li {
        font-size: 1rem;
    }

    /* Mobile skills styling */
    .skill-category {
        margin: 0.8rem 0;
        padding: 0.6rem;
    }

    .skill-category h4 {
        font-size: 1rem;
    }

    .skill-tags {
        gap: 4px;
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    /* Mobile project card styling */
    .project-card {
        padding: 18px;
        margin: 15px 0;
    }

    .project-card-title {
        font-size: 1.4rem;
    }

    .project-card-description {
        font-size: 1rem;
    }

    .project-card-tags {
        gap: 6px;
    }

    .project-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}


body {
    padding: 0px;
    margin: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6)), url("./asstes/bg.gif") center center;
    /* background-size:contain; */
    background-size: cover;
    width: 100vw;
    height: 100vh;
    /*Change to make scrollable*/
    overflow: visible;
    font-family: 'Josefin Sans', sans-serif;
}

#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgb(255, 50, 50);
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#spinner {
    animation: rotate 0.56s infinite linear;
    width: 50px;
    height: 50px;
    border: 12px solid #fff;
    border-bottom: 12px solid rgb(255, 50, 50);
    border-radius: 50%;
    margin: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#box {
    width: 100vw;
    height: 100vh;
    z-index: 9;
    position: fixed;
    top: 0;
}

/* Text Between List elemets */
li {
    margin: 3px;
}


#box div {
    width: 16.66vw;
    height: 100%;
    display: inline-block;
}

.box1 {
    background: rgb(255, 50, 50);
}

.box2 {
    background: rgb(255, 50, 50);
    margin-left: -5px;
}

#menu {
    width: 100%;
    text-align: center;
    margin: 6vh 0px;
    display: none;
}

#menu a {
    margin: 0px 6%;
    font-size: 19px;
    color: #fff;
    text-decoration: underline;
}

#middle {
    width: 100vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 1;
    color: #fff;
    padding-bottom: 10vh;
}

/* Hero headings */
.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 10px 0;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff, #ffd1d1, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 18px 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#middle h1 {
    color: rgb(255, 50, 50);
    font-size: 70px;
    text-decoration: underline;
}

#about {
    width: 10vw;
    height: 10vw;
    text-align: center;
    font-size: 25px;
    transform: rotate(-90deg);
    background: transparent;
    color: #fff;
    position: fixed;
    left: 0;
    bottom: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 4;
    transition: 0.4s ease-in-out;
    border-radius: 0px 0px 100px 100px;
}

#work {
    width: 10vw;
    height: 10vw;
    text-align: center;
    font-size: 25px;
    transform: rotate(90deg);
    background: transparent;
    color: #fff;
    position: fixed;
    right: 0;
    bottom: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 4;
    transition: 0.4s ease-in-out;
    border-radius: 0px 0px 100px 100px;
}

#contact {
    width: 10vw;
    height: 10vw;
    text-align: center;
    font-size: 25px;
    background: transparent;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 45vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 4;
    transition: 0.4s ease-in-out;
    border-radius: 100px 100px 0px 0px;
}

#about:hover {
    background: rgba(255, 50, 50, 0.9);
    cursor: pointer;
}

#work:hover {
    background: rgba(255, 50, 50, 0.9);
    cursor: pointer;
}

#contact:hover {
    background: rgba(255, 50, 50, 0.9);
    cursor: pointer;
}

#middle table {
    width: 30%;
    margin: 6vh auto;
}



#middle table tr td {
    text-align: center;
}

.social {
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    transition: 0.4s ease-in-out;
    margin: 0px 8px;
    text-align: center;
}

.social:hover {
    cursor: pointer;
    color: rgb(255, 50, 50);
}

.container {
    width: 90vw;
    height: 90vh;
    padding: 5vh 5vw;
    background: rgb(255, 50, 50);
    color: #fff;
    z-index: 9;
    position: fixed;
    max-height: 100vh;
    overflow-y: auto;
    display: none;
}

#contact_container {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6)), url("./asstes/33HI.gif") center center;
    background-size: cover;

}

.container div {
    font-size: 25px;
    margin: 20px 0px;
    transition: 0.4s ease-in-out;
}

.container div:hover {
    cursor: pointer;
}

.container section {
    margin: 8vh 0px;
}

#used div {
    font-size: 14px !important;
    display: inline-block;
    padding: 8px 10px;
    border: 2px solid #fff;
    margin: 4px 10px;
    border-radius: 50px;
}

#used:hover {
    cursor: text;
}

#used div:hover {
    cursor: text;
}

/* Custom bullet points for technology tags */
.tech-tag {
    position: relative;
    padding-left: 20px !important;
}

.tech-bullet {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
}

/* Social media icons styling */
#used div i {
    font-size: 18px;
    margin-right: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

#used div:hover i {
    color: rgb(255, 50, 50);
    transform: scale(1.1);
}

/* LinkedIn icon styling */
.linkedin-icon {
    display: inline-block;
    background: #0077b5;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 3px;
    margin-right: 8px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

#used div:hover .linkedin-icon {
    background: #005885;
    transform: scale(1.1);
}

/* Fix cursor styles */
#used div {
    cursor: pointer !important;
}

#used div:hover {
    cursor: pointer !important;
}

/* Make text non-selectable and show proper cursor */
.page-content p, .page-content h2, .page-content h3, .page-content h4, 
.page-content strong, .page-content em, .page-content li {
    cursor: default !important;
    user-select: none;
}

/* Make skill tags non-clickable */
.skill-tag {
    cursor: default !important;
    user-select: none;
}

/* Make project content non-clickable */
.project-content p, .project-content h2, .project-content h3, .project-content h4 {
    cursor: default !important;
    user-select: none;
}

/* Make all text content non-selectable */
.container p, .container h1, .container h2, .container h3, .container h4,
.container strong, .container em, .container li, .container div {
    cursor: default !important;
    user-select: none;
}

/* Make about section text non-selectable */
#about_content p, #about_content h1, #about_content h2, #about_content h3, 
#about_content h4, #about_content strong, #about_content em, #about_content li {
    cursor: default !important;
    user-select: none;
}

/* Make skills section text non-selectable */
.skills-container p, .skills-container h1, .skills-container h2, .skills-container h3,
.skills-container h4, .skills-container strong, .skills-container em, .skills-container li {
    cursor: default !important;
    user-select: none;
}

/* Make skill category headers non-selectable */
.skill-category h4 {
    cursor: default !important;
    user-select: none;
}

.container h1 {
    font-size: 60px;
    text-decoration: underline;
}

.container p {
    font-size: 21px;
}

.btn_one {
    /* Your default styling */
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    background: transparent;
    border: 3px solid #fff;
    padding: 8px 40px;
    border-radius: 80px;
    font-weight: bold;
    margin: 10px 10px;
    transition: 0.4s ease-in-out;
}

.btn_one:hover,
.btn_one:focus,
.btn_one:active {
    /* Your styling for hover, focus, and active states */
    color: rgb(255, 50, 50);
    background: #fff;
}

.btn_two {
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
    color: rgb(255, 50, 50);
    background: #fff;
    border: 3px solid #fff;
    padding: 8px 40px;
    border-radius: 80px;
    font-weight: bold;
    margin: 2vh 10px;
    transition: 0.4s ease-in-out;
}

.btn_two:hover {
    cursor: pointer;
    padding: 8px 60px;
}

.container form input {
    width: 46%;
    margin: 20px 1%;
    background: transparent;
    border: 0px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    padding: 8px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    transition: 0.4s ease-in-out;
    color: #fff;
    font-weight: bold;
}

.container form textarea {
    width: 96%;
    margin: 20px 1%;
    padding: 8px 10px;
    border: 0px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    padding: 8px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    background: transparent;
    resize: none;
    transition: 0.4s ease-in-out;
    color: #fff;
    font-weight: bold;
}

.container form input:focus {
    outline: none;
    border-bottom: 3px solid rgba(255, 255, 255, 1);
}

.container form textarea:focus {
    outline: none;
    border-bottom: 3px solid rgba(255, 255, 255, 1);
}

::placeholder {
    color: #fff;
}

#footer {
    color: #fff;
    width: 92vw;
    padding: 5vh 4vw;
    text-align: right;
    position: fixed;
    z-index: 1;
    bottom: 0;
    font-size: 16px;
    font-weight: bold;
}

#footer ul li a {
    text-align: right;
    color: rgb(255, 50, 50);
}

#footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

#footer li {
    float: right;
}

#footer li a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    margin-left: 3vw;
    text-decoration: none;
    font-size: 17px;
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

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

::-webkit-scrollbar-thumb {
    background: rgb(255, 50, 50);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 50, 50, 0.8);
}

::selection {
    color: #fff;
    background: rgb(255, 50, 50);
}

@media (max-width: 800px) {
    #about {
        display: none;
    }

    #contact {
        display: none;
    }

    #work {
        display: none;
    }

    #footer {
        text-align: center;
    }

    #middle {
        width: 90vw;
        padding: 0px 5vw;
    }

    #middle table {
        width: 80%;
    }

    .container form input {
        width: 90%;
    }

    .container form textarea {
        width: 90%;
    }

    #menu {
        display: inline-block;
    }

    #onlywide {
        display: none !important;
    }

    .box2 {
        margin-left: 0px !important;
    }

    #box div {
        width: 100%;
    }

    .coverImg {
        width: 100%;
        height: auto;
    }

    body {
        padding: 0px;
        margin: 0px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6)), url("./asstes/mobilebg.gif") center center;
        background-size: contain;
        width: 100vw;
        height: 100vh;
        /*  Change to make scrollable */
        overflow-x: hidden;
        overflow-y: hidden;
        font-family: 'Josefin Sans', sans-serif;
        position: relative;
    }

    html {
        overflow-x: hidden;
        overflow-y: hidden;
    }

}


.site-footer {
    font-weight: lighter;
    line-height: 1.45em;
    position: relative;
    margin: 20rem 0 0 0;
    padding: 2.5rem;
    text-align: center;
}

.site-footer {
    padding: 64px 0 40px
}


.footer_bg {
    position: relative;
    /* top: -264px; */
    background: url(./asstes/footer_bg.png) repeat-x scroll center 0;
    width: 100%;
    height: 264px;
    left: 0;
    overflow-x: hidden;
    overflow-y: hidden
}

.footer_bg .footer_bg_one {
    background: no-repeat center center;
    width: 60px;
    height: 96px;
    background-size: 100%;
    position: absolute;
    bottom: -10px;
    left: 30%;
    transform: scale(2.7);
    -webkit-animation: myfirst 20s linear infinite;
    animation: myfirst 20s linear infinite;
    /* animation-fill-mode: forwards  */
}

.footer_bg .footer_bg_three {
    background: no-repeat center center;
    width: 60px;
    height: 96px;
    background-size: 100%;
    bottom: -46px;
    right: 38%;
    transform: scale(4.2);
    position: absolute;
    -webkit-animation: mySecond 25s linear infinite;
    animation: mySecond 25s linear infinite;
    /* animation-fill-mode: forwards  */
}

.footer_bg .footer_bg_two {
    background: no-repeat center center;
    width: 60px;
    height: 96px;
    background-size: 100%;
    bottom: 20px;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
    /* animation-fill-mode: forwards  */
}

.footer_bg .footer_bg_four {
    background: no-repeat center center;
    width: 60px;
    height: 96px;
    background-size: 100%;
    bottom: 10px;
    right: 38%;
    transform: rotateY(180deg);
    position: absolute;
    -webkit-animation: mySecond 35s linear infinite;
    animation: mySecond 35s linear infinite;
    /* animation-fill-mode: forwards  */
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%
    }

    100% {
        left: 110%
    }
}

@keyframes myfirst {
    0% {
        left: -25%
    }

    100% {
        left: 110%
    }
}

@-webkit-keyframes mySecond {
    0% {
        left: 110%
    }

    100% {
        left: -20%
    }
}

@keyframes mySecond {
    0% {
        left: 110%
    }

    100% {
        left: -20%
    }
}