* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    color: #333;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00bbff, #009dff);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Floating particles background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 183, 255, 0.15);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background: linear-gradient(180deg, #00bbff, #009dff);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 140, 255, 0.3);
    transition: all 0.4s ease;
}

.sidebar:hover {
    width: 220px;
    box-shadow: 0 0 40px rgba(0, 187, 255, 0.41);
}

.profile-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.profile-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sidebar:hover .profile-container::before {
    opacity: 1;
}

.sidebar:hover .profile-container {
    transform: scale(1.1);
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.sidebar-menu {
    list-style: none;
    width: 100%;
}

.sidebar-menu li {
    padding: 12px 0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.sidebar-menu li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.sidebar-menu a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
    padding: 8px 15px;
    position: relative;
    border-radius: 25px;
    margin: 0 10px;
}

.sidebar-menu a:hover {
    font-weight: bold;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sidebar-menu a.active {
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.sidebar-menu a.active::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background-color: #fff;
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: linear-gradient(45deg, #00bbff, #009dff);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.399);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    margin-left: 170px;
    width: calc(100% - 170px);
    padding: 20px;
    transition: all 0.4s ease;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 50px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-content {
    max-width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
}

.home-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, red, #00bbff, #009dff);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.home-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.home-text {
    flex: 1;
    min-width: 300px;
}

.home-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 300;
}

.home-text h2 {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    color: #666;
    line-height: 1.8;
}

/* Skills Orbit */
.skills-orbit-container {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.skills-orbit {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.skills-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 110, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 166, 255, 0.325); }
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

.skills-orbit-center i {
    font-size: 36px;
    color: white;
}

.orbit-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 153, 255, 0.3);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.skill-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 1;
    cursor: pointer;
}

.skill-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #009dff50;
}

.skill-icon i {
    font-size: 24px;
    color: #0055ff84;
    transition: all 0.3s ease;
}

.skill-icon:hover i {
    color: white;
}

/* Position the skill icons around the circle */
.skill-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.skill-icon:nth-child(2) {
    top: 12%;
    right: 12%;
}

.skill-icon:nth-child(3) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.skill-icon:nth-child(4) {
    bottom: 12%;
    right: 12%;
}

.skill-icon:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.skill-icon:nth-child(6) {
    bottom: 12%;
    left: 12%;
}

.skill-icon:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.skill-icon:nth-child(8) {
    top: 12%;
    left: 12%;
}

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

.orbit-circle .skill-icon {
    animation: counter-rotate 60s linear infinite;
}

@keyframes counter-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.typing-container {
    margin: 30px 0;
    min-height: 80px;
    background: rgba(255, 140, 0, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #0095ff;
}

#sliding-text {
    font-size: 20px;
    font-weight: 600;
    color: #0073ffe8;
    display: inline-block;
    position: relative;
}

#sliding-text::after {
    content: '|';
    position: absolute;
    right: -15px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#quote-container {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid blue;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
    backdrop-filter: blur(10px);
}

#quote-container.show {
    opacity: 1;
    transform: translateY(0);
}

#quote {
    font-style: italic;
    color: #555;
    font-size: 12px;
    line-height: 1.6;
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button, .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00bbff, #009dff);
    color: white;
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    margin-right: 15px;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 85, 255, 0.25);
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button i, .primary-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover, .primary-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 115, 255, 0.6);
}

.cta-button:hover i, .primary-btn:hover i {
    transform: scale(1.2);
}

.cta-button::after, .primary-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::after, .primary-btn:hover::after {
    transform: translateX(100%);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #00aeff84;
    padding: 12px 33px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #0062ff8f;
    transition: all 0.4s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #00bbff, #009dff);
    transition: width 0.4s ease;
    z-index: -1;
}

.secondary-btn:hover::before {
    width: 100%;
}

.secondary-btn:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 204, 255, 0.3);
}

/* About Section */
#about {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    text-transform: uppercase;
    display: inline-block;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    border-radius: 2px;
    animation: expandLine 1s ease forwards;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 80px; }
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.about-text {
    flex: 1;
    max-width: 800px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 4px solid #0062ff8f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-text p:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text p strong {
    font-size: 19px;
    color: #0062ff8f;
    font-weight: 600;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-box {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00bbff, #009dff);
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-box h4 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #0062ff8f;
    transition: all 0.4s ease;
    font-weight: 700;
}

.stat-box:hover h4 {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(0, 251, 255, 0.251);
}

.stat-box p {
    font-size: 16px;
    text-transform: uppercase;
    color: #ecf0f1;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Education Section */
#education {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding: 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #00bbff, #009dff);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00bbff, #009dff);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(0, 187, 255, 0.237);
    z-index: 1;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(0, 106, 255, 0.151);
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #0062ff8f;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    color: white;
    font-weight: bold;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.timeline-paragraph {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.timeline-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #0062ff8f;
    color: #0062ff8f;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.timeline-btn:hover {
    background-color: #0062ff8f;
    color: #333;
}

/* Tech Stack */
.tech-stack {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.tech-stack-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 70px;
}

.tech-icon:hover {
    transform: translateY(-8px);
    /*background: rgba(255, 140, 0, 0.2);*/
    border-color: #0062ff8f;
}

.tech-icon i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #0062ff8f;
    transition: all 0.4s ease;
}

.tech-icon:hover i {
    color: #0062ff8f;
    transform: scale(1.2) rotate(5deg);
}

.tech-icon span {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* Skills Section */
#skills {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.skill-item {
    border-left: 4px solid #0062ff8f; /* Indigo accent */
    background : rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /*border: 2px solid transparent;*/
    backdrop-filter: blur(10px);
}

.skill-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, rgba(0, 242, 255, 0.1), rgba(0, 229, 255, 0.1));
    border-color: #0062ff8f;
}

.skill-item i {
    margin-right: 8px;
    color: #0062ff8f;
    transition: all 0.3s ease;
    font-size: 18px;
}

.skill-item:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #0062ff8f;
}

.skill-item span {
    font-weight: 600;
    color: #333;
}

/* Projects Section */
#projects {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-img {
    height: 150px;
    background: linear-gradient(135deg, #00bbff, #009dff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /*font-size: 60px;*/
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/*.project-img::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    transform: translateX(-100%);*/
/*    transition: transform 0.6s ease;*/
/*}*/

/*.project-card:hover .project-img::before {*/
/*    transform: translateX(100%);*/
/*}*/

/*.project-card:hover .project-img {*/
/*    filter: brightness(1.2);*/
/*}*/

.project-content {
    padding: 15px;
}

.project-title {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.project-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: #0062ff8f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #0062ff8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.project-link i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: white;
    background: linear-gradient(45deg, #00bbff, #009dff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 225, 255, 0.227);
}

.project-link:hover i {
    transform: translateX(5px);
}

.github-link {
    text-align: center;
    margin-top: 60px;
}
/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 50px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    text-transform: uppercase;
    display: inline-block;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    border-radius: 2px;
    animation: expandLine 1s ease forwards;
}

/* Contact Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow-wrap: anywhere;
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 15px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 68, 255, 0.497);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 7px 24px rgba(0, 149, 255, 0.658);
}

.contact-text h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    word-break: break-word;
    color: #555;
    font-size: 16px;
}

.contact-text p a {
    color: #0062ff8f;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-text p a:hover {
    color: #0062ff8f;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.form-control:focus {
    border-color: #0062ff8f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #00bbff, #009dff);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: block;
    margin: 30px auto 0;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 255, 0.466);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    #contact {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-form {
        padding: 25px;
    }
}

@media screen and (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}


/* Footer */
footer {
    /*background: linear-gradient(135deg, #ff8c00, #ff5500);*/
    padding: 50px 20px;
    margin-left: 170px;
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% 100%;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: #0062ff8f;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 24px;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: white;
    color: #0062ff8f;
    transform: translateY(-10px) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer-text {
    /*color: rgba(255, 255, 255, 0.9);*/
    color: #0062ff8f;
    font-size: 16px;
    margin-top: 20px;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00bbff, #009dff);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 174, 255, 0.624);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.312);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .sidebar {
        width: 100px;
    }

    .main-content {
        margin-left: 100px;
        width: calc(100% - 100px);
    }

    .sidebar-menu a {
        font-size: 12px;
    }

    .project-img {
        height: 140px;
    }

    section {
        padding: 60px 30px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        top: -100%;
        left: 0;
        flex-direction: row;
        justify-content: center;
        padding: 15px 0;
        transition: top 0.5s ease;
        z-index: 999;
    }

    .sidebar.active {
        top: 0;
    }

    .sidebar:hover {
        width: 100%;
    }

    .profile-container {
        display: none;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sidebar-menu li {
        padding: 5px 10px;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    section {
        padding: 50px 20px;
        min-height: auto;
    }

    .home-intro {
        flex-direction: column;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    footer {
        margin-left: 0;
    }
}

/* =============================================== */
/* COMPREHENSIVE MOBILE RESPONSIVE CSS */
/* =============================================== */

/* Large Tablets and Small Desktops (992px and below) */
@media screen and (max-width: 992px) {
    .sidebar {
        width: 50px;
        padding: 5px 0;
    }

    .sidebar:hover {
        width: 70px;
    }

    .main-content {
        margin-left: 100px;
        width: calc(100% - 100px);
        padding: 8px;
    }

    .sidebar-menu a {
        font-size: 6px;
        /*font-size: 4px 7px;*/
    }

    .profile-container {
        width: 70px;
        height: 70px;
    }

    .profile-pic {
        width: 70px;
        height: 70px;
    }

    .home-text h1 {
        font-size: 32px;
    }

    .home-text h2 {
        font-size: 42px;
    }

    .home-text p {
        font-size: 16px;
    }

    .skills-orbit {
        width: 250px;
        height: 250px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-img {
        height: 140px;
    }

    section {
        padding: 60px 30px;
    }

    footer {
        margin-left: 100px;
        padding: 40px 15px;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .sidebar {
        width: 80%;
        height: auto;
        position: fixed;
        top: -100%;
        left: 0;
        flex-direction: row;
        justify-content: center;
        padding: 6px 0;
        transition: top 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 999;
        box-shadow: 0 3px 8px rgba(255, 140, 0, 0.3);
    }

    .sidebar.active {
        top: 0;
    }

    .sidebar:hover {
        width: 100%;
    }

    .profile-container {
        display: none;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 7px;
    }

    .sidebar-menu li {
        height: 7px 8px;
    }

    .sidebar-menu a {
        font-size: 7px;
        font-size: 5px 10px;
        min-height: 24px;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }

    section {
        padding: 50px 20px;
        min-height: auto;
    }

    .home-intro {
        flex-direction: column;
        gap: 30px;
    }

    .home-content {
        padding: 30px;
    }

    .home-text h1 {
        font-size: 28px;
    }

    .home-text h2 {
        font-size: 36px;
    }

    .home-text p {
        font-size: 16px;
    }

    .skills-orbit {
        width: 220px;
        height: 220px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-box h4 {
        font-size: 32px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-dot {
        left: 7px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .skills-container {
        gap: 10px;
    }

    .skill-item {
        padding: 10px 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .contact-form {
        padding: 25px;
    }

    footer {
        margin-left: 0;
        padding: 40px 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button, .secondary-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        min-height: 44px;
    }
}

/* Large Mobile Devices (576px and below) */
@media screen and (max-width: 576px) {
    .mobile-menu-toggle {
        font-size: 17px;
        font-size: 17px;
        top: 1ppx;
        left: 10px;
    }

    section {
        padding: 30px 10px;
    }

    .home-content {
        padding: 20px;
        border-radius: 20px;
    }

    .home-text h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .home-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .home-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .skills-orbit {
        width: 200px;
        height: 200px;
    }

    .skills-orbit-center {
        width: 60px;
        height: 60px;
    }

    .skills-orbit-center i {
        font-size: 24px;
    }

    .skill-icon {
        width: 35px;
        height: 35px;
    }

    .skill-icon i {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .stat-box h4 {
        font-size: 28px;
    }

    .timeline-item {
        padding-left: 40px;
        margin-bottom: 40px;
    }

    .timeline:before {
        left: 10px;
    }

    .timeline-dot {
        left: 2px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 20px;
        border-radius: 15px;
    }

    .timeline-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .timeline-paragraph {
        font-size: 14px;
    }

    .timeline-date {
        padding: 6px 15px;
        font-size: 12px;
    }

    .tech-icons {
        gap: 10px;
    }

    .tech-icon {
        width: 60px;
    }

    .tech-icon i {
        font-size: 24px;
    }

    .tech-icon span {
        font-size: 11px;
    }

    .skills-container {
        gap: 8px;
    }

    .skill-item {
        padding: 8px 12px;
    }

    .skill-item i {
        font-size: 16px;
        margin-right: 6px;
    }

    .skill-item span {
        font-size: 14px;
    }

    .project-card {
        border-radius: 15px;
    }

    .project-img {
        height: 120px;
    }

    .project-content {
        padding: 15px;
    }

    .project-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .project-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .project-link {
        padding: 8px 15px;
        font-size: 12px;
    }

    .contact-item {
        padding: 7px;
        flex-direction: column;
        text-align: center;
    }


    .contact-form {
        padding: 20px;
    }

    .contact-form h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 100px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
        max-width: 100%;
        margin-top: 20px;
    }

    footer {
        padding: 30px 15px;
    }

    .social-links {
        gap: 10px;
        margin-bottom: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-text {
        font-size: 14px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .typing-container {
        margin: 20px 0;
        padding: 15px;
        min-height: 60px;
    }

    #sliding-text {
        font-size: 16px;
    }

    #quote-container {
        padding: 15px;
        margin-top: 15px;
    }

    #quote {
        font-size: 11px;
    }

    .btn-group {
        gap: 12px;
        margin-top: 20px;
    }

    .cta-button, .secondary-btn {
        padding: 12px 25px;
        font-size: 13px;
        border-radius: 25px;
    }

    .sidebar-menu a {
        font-size:7px;
        padding: 6px 8px;
    }
}

/* Standard Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .home-text h1 {
        font-size: 22px;
    }

    .home-text h2 {
        font-size: 26px;
    }

    .home-text p {
        font-size: 14px;
    }

    .skills-orbit {
        width: 180px;
        height: 180px;
    }

    .skills-orbit-center {
        width: 50px;
        height: 50px;
    }

    .skills-orbit-center i {
        font-size: 20px;
    }

    .skill-icon {
        width: 30px;
        height: 30px;
    }

    .skill-icon i {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .stat-box h4 {
        font-size: 24px;
    }

    .timeline-title {
        font-size: 16px;
    }

    .timeline-paragraph {
        font-size: 13px;
    }

    .project-title {
        font-size: 15px;
    }

    .project-desc {
        font-size: 12px;
    }


    .contact-form h3 {
        font-size: 16px;
    }

    #sliding-text {
        font-size: 14px;
    }

    .cta-button, .secondary-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Small Mobile Devices (400px and below) */
@media screen and (max-width: 400px) {
    section {
        padding: 10px 7px;
    }

    .home-content {
        padding: 15px;
    }

    .home-text h1 {
        font-size: 20px;
    }

    .home-text h2 {
        font-size: 24px;
    }

    .home-text p {
        font-size: 13px;
    }

    .skills-orbit {
        width: 160px;
        height: 160px;
    }

    .skills-orbit-center {
        width: 45px;
        height: 45px;
    }

    .skills-orbit-center i {
        font-size: 18px;
    }

    .skill-icon {
        width: 28px;
        height: 28px;
    }

    .skill-icon i {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .stat-box h4 {
        font-size: 22px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-title {
        font-size: 15px;
    }

    .timeline-paragraph {
        font-size: 12px;
    }

    .tech-icon {
        width: 50px;
    }

    .tech-icon i {
        font-size: 20px;
    }

    .tech-icon span {
        font-size: 10px;
    }

    .skill-item {
        padding: 6px 10px;
    }

    .skill-item span {
        font-size: 13px;
    }

    .project-img {
        height: 100px;
    }

    .project-content {
        padding: 12px;
    }

    .project-title {
        font-size: 14px;
    }

    .project-desc {
        font-size: 11px;
    }

    .project-link {
        padding: 6px 12px;
        font-size: 11px;
    }



    .contact-form {
        padding: 15px;
    }

    .contact-form h3 {
        font-size: 15px;
    }

    .form-control {
        padding: 8px 10px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-text {
        font-size: 13px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .typing-container {
        padding: 12px;
        min-height: 50px;
    }

    #sliding-text {
        font-size: 13px;
    }

    #quote-container {
        padding: 12px;
    }

    #quote {
        font-size: 10px;
    }

    .cta-button, .secondary-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media screen and (max-width: 320px) {
    .home-text h1 {
        font-size: 18px;
    }

    .home-text h2 {
        font-size: 22px;
    }

    .home-text p {
        font-size: 12px;
    }

    .skills-orbit {
        width: 140px;
        height: 140px;
    }

    .skills-orbit-center {
        width: 40px;
        height: 40px;
    }

    .skills-orbit-center i {
        font-size: 16px;
    }

    .skill-icon {
        width: 25px;
        height: 25px;
    }

    .skill-icon i {
        font-size: 10px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .stat-box h4 {
        font-size: 20px;
    }

    .timeline-title {
        font-size: 14px;
    }

    .project-title {
        font-size: 13px;
    }


    #sliding-text {
        font-size: 12px;
    }

    .cta-button, .secondary-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}

/* Universal Mobile Enhancements */
@media screen and (max-width: 768px) {
    /* Ensure proper tap targets for mobile */
    .sidebar-menu a,
    .cta-button,
    .secondary-btn,
    .project-link,
    .timeline-btn,
    .mobile-menu-toggle,
    .scroll-top,
    .social-link,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Prevent horizontal scrolling */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Improve touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Enhanced mobile menu transitions */
    .sidebar {
        transition: top 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    /* Mobile-specific animations */
    .timeline-item {
        transition: all 0.4s ease;
    }

    .project-card {
        transition: all 0.3s ease;
    }

    .skill-item {
        transition: all 0.3s ease;
    }

    .contact-item {
        transition: all 0.3s ease;
    }

    /* Mobile text selection */
    ::selection {
        background: rgba(255, 140, 0, 0.3);
    }

    ::-moz-selection {
        background: rgba(255, 140, 0, 0.3);
    }

    /* Mobile form improvements */
    .form-control:focus {
        transform: scale(1.02);
    }

    /* Mobile button improvements */
    .cta-button:active,
    .secondary-btn:active,
    .submit-btn:active {
        transform: scale(0.98);
    }

    /* Mobile spacing adjustments */
    .btn-group {
        width: 100%;
    }

    .btn-group .cta-button,
    .btn-group .secondary-btn {
        flex: 1;
        margin: 0;
    }

    /* Mobile typography improvements */
    p, .timeline-paragraph {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Mobile image optimization */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile table responsiveness */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    @media screen and (max-width: 768px) {
        .mobile-menu-toggle {
            top: 15px;
            left: 15px;
            z-index: 1001;
            position: fixed;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .sidebar {
            width: 100%;
            position: fixed;
            top: -100%;
            left: 0;
            flex-direction: column;
            padding: 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            transition: top 0.3s ease-in-out;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #eee;
            height: auto;
        }

        .sidebar.active {
            top: 0;
            padding-top: 70px;
        }

        .sidebar-menu {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 10px 15px;
            margin: 0;
            gap: 8px;
        }

        .sidebar-menu li {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .sidebar-menu a {
            padding: 10px 15px;
            font-size: 14px;
            font-weight: 500;
            color: #0062ff8f;
            text-decoration: none;
            border: none;
            border-radius: 20px;
            background: rgba(255, 102, 0, 0.1);
            min-height: auto;
            display: inline-block;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-align: center;
        }

        .sidebar-menu a:hover {
            background: rgba(255, 102, 0, 0.2);
            transform: scale(1.05);
        }

        .sidebar-menu a.active {
            background: rgba(255, 102, 0, 0.2);
            font-weight: 600;
        }

        .sidebar-menu a.active::after {
            display: none;
        }

        .main-content {
            padding-top: 20px;
        }
    }
}