.stat-card {
    position: absolute;
    bottom: 20%;
    left: 10%;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out, float 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card .icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}

.stat-info h3 {
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--gray-text);
    letter-spacing: 0.5px;
}

.reviews {
    position: absolute;
    top: 20%;
    right: 10%;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.8s ease-in-out, float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}/* Main CSS Styles */
:root {
    --primary-color: #6c63ff;
    --primary-dark: #5952d4;
    --primary-light: rgba(108, 99, 255, 0.1);
    --secondary-color: #ff6584;
    --dark-bg: #0f0f1a;
    --dark-card: #1a1a2e;
    --light-text: #f5f5f5;
    --gray-text: #a0a0a0;
    --success-color: #4caf50;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --card-border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gradient-1: linear-gradient(135deg, rgba(108, 99, 255, 0.7), rgba(108, 99, 255, 0));
    --gradient-2: linear-gradient(135deg, rgba(255, 101, 132, 0.7), rgba(255, 101, 132, 0));
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s infinite ease-in-out;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: var(--gradient-1);
    animation: blob-float-1 20s ease-in-out infinite alternate;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: var(--gradient-2);
    animation: blob-float-2 25s ease-in-out infinite alternate;
}

.blob-3 {
    top: 40%;
    right: 20%;
    width: 30%;
    height: 30%;
    background: var(--gradient-1);
    animation: blob-float-3 18s ease-in-out infinite alternate;
}

.blob-4 {
    bottom: 20%;
    left: 10%;
    width: 25%;
    height: 25%;
    background: var(--gradient-2);
    animation: blob-float-4 22s ease-in-out infinite alternate;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

@keyframes blob-float-1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(10%, 15%) rotate(180deg) scale(1.1); }
    100% { transform: translate(-5%, 5%) rotate(360deg) scale(0.9); }
}

@keyframes blob-float-2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-15%, -10%) rotate(-180deg) scale(1.1); }
    100% { transform: translate(5%, -5%) rotate(-360deg) scale(0.9); }
}

@keyframes blob-float-3 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-10%, 5%) rotate(120deg) scale(1.05); }
    100% { transform: translate(5%, -5%) rotate(240deg) scale(0.95); }
}

@keyframes blob-float-4 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(10%, -5%) rotate(-120deg) scale(1.05); }
    100% { transform: translate(-5%, 5%) rotate(-240deg) scale(0.95); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.6);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    text-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
    font-family: 'Raleway', sans-serif;
}

.greeting {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--light-text);
    opacity: 0.9;
    animation: fadeIn 1s ease-in-out;
    letter-spacing: 0.5px;
}

/* Navigation Circles */
.nav-circles {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-card);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.circle i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.circle:hover {
    transform: translateY(-10px) scale(1.1);
    background-color: var(--primary-color);
}

.circle:hover i {
    color: white;
    transform: scale(1.2);
}

.circle.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.circle.active i {
    color: white;
}

.circle-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.circle:hover .circle-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Slider Container Styles */
.slider-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-section {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 100%;
    padding-top: 80px;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.slider-section.active {
    transform: translateX(-100%);
}

/* Home Section Styles */
.home-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    padding-top: 5rem;
    height: 85vh;
}

.text-content {
    flex: 1;
    padding-right: 2rem;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    animation: slideRight 1s ease-in-out;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(108, 99, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.tech-icons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    animation: fadeIn 1.5s ease-in-out;
}

.tech-icons span {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.tech-icons span:hover {
    transform: translateY(-5px) rotate(10deg);
}

/* Remove conflicting animations for the model */
.model {
    font-size: 1.8rem;
    color: var(--gray-text);
    margin: 1rem 0;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    /* Remove the slideLeft animation */
    animation: none; 
}

/* Make sure the typewriter animation works correctly */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Keep the angle brackets as pure CSS */
.model::before {
    content: '<';
    position: absolute;
    left: -20px;
    color: rgba(108, 99, 255, 0.5);
    font-family: monospace;
    animation: none;
}

.model::after {
    content: '/>';
    position: absolute;
    right: -30px;
    color: rgba(108, 99, 255, 0.5);
    font-family: monospace;
    animation: none;
}

.text-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeIn 1.7s ease-in-out;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.view-more {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeIn 2s ease-in-out, pulse 2s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.view-more:hover::before {
    left: 100%;
}

.view-more:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
    }
}


.avatar-group {
    display: flex;
    margin-bottom: 0.5rem;
}

.avatar-group img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dark-card);
    margin-right: -10px;
}

.avatar-group span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.reviews p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

.stars {
    font-size: 0.8rem;
    color: #ffc107;
}

/* Section Content Styles */
.section-content {
    padding: 2rem 3rem;
    padding-top: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    left: -15px;
    top: -10px;
    z-index: -1;
}

/* About Section Styles */
.about-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    margin-bottom: 170px;
}

.about-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -30px;
    left: 0;
    opacity: 0.3;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.profile-image {
    width: 80%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    animation: float 5s ease-in-out infinite;
    object-fit: cover;
    height: 350px;
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.about-text {
    flex: 1.5;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    border-radius: 1px;
}

.education-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.education-item:hover {
    transform: translateX(10px);
    background-color: rgba(108, 99, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.education-item h4 {
    font-weight: 500;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.education-item p {
    color: var(--gray-text);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* Qualifications Section Styles */
.qualifications-content {
    display: flex;
    gap: 3rem;
    position: relative;
    margin-bottom: 170px;
}

.qualifications-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -30px;
    left: 0;
    opacity: 0.3;
}

.skills {
    flex: 2;
}

.certificates {
    flex: 1;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.skill-item {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(26, 26, 46, 0) 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.skill-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 99, 255, 0.2);
}

.skill-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: var(--transition);
    text-shadow: 0 0 15px rgba(108, 99, 255, 0.3);
}

.skill-item:hover i {
    transform: scale(1.2);
}

.skill-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: var(--transition);
}

.cert-item:hover::before {
    left: 100%;
}

.cert-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(108, 99, 255, 0.1);
}

.cert-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
}

/* Projects Section Styles */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    animation: fadeIn 1s ease-in-out;
    margin-bottom: 170px;
}

.project-card {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(108, 99, 255, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.7), transparent);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1) rotate(2deg);
}

.project-info {
    flex: 1.5;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
}

.project-info::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.05;
    top: 1.5rem;
    left: 1.5rem;
    z-index: -1;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.project-info h3::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
    border-radius: 1px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.tech-stack span {
    background-color: rgba(108, 99, 255, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid rgba(108, 99, 255, 0.15);
}

.tech-stack span:hover {
    background-color: rgba(108, 99, 255, 0.25);
    transform: translateY(-3px);
}

.project-desc {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.3rem;
    font-size: 1.02rem;
    letter-spacing: 0.3px;
}

.project-impact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--success-color);
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
}

.project-impact p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1.02rem;
    letter-spacing: 0.3px;
}

/* Contact Section Styles */
.contact-content {
    display: flex;
    gap: 3rem;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    margin-bottom: 170px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: -20px;
    left: -20px;
    opacity: 0.05;
    transition: var(--transition);
}

.contact-item:hover::before {
    transform: scale(2);
}

.contact-item:hover {
    transform: translateX(10px);
    background-color: rgba(108, 99, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.6rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
}

.contact-item p, .contact-item a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--light-text);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.2);
    background-color: rgba(26, 26, 46, 0.8);
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

/* Form message */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeIn 0.5s ease-in-out;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--dark-card);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--light-text);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.2);
}

.submit-btn {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background-color: #5952d4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

/* Form message */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    text-align: center;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

/* Animations */
@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Gradient text animation */
@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 5s linear infinite;
}

/* Ripple effect for circles */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Scroll Effects */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Glass effect */
.glass-effect {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .home-content {
        flex-direction: column;
        height: auto;
        gap: 3rem;
    }
    
    .text-content {
        padding-right: 0;
    }
    
    .main-heading {
        font-size: 3rem;
    }
    
    .stat-card, .reviews {
        position: static;
        margin-top: 1rem;
    }
    
    .image-content {
        justify-content: center;
    }
    
    .nav-circles {
        gap: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    
    .circle {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 992px) {
    .about-content,
    .qualifications-content,
    .contact-content,
    .project-card {
        flex-direction: column;
    }
    
    .about-image,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .section-content {
        padding: 2rem 1.5rem;
    }
    
    .project-image {
        max-height: 250px;
    }
    
    .nav-circles {
        gap: 1.2rem;
    }
    
    .circle {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .logo-container {
        width: 100%;
        justify-content: center;
    }
    
    .nav-circles {
        bottom: 1.5rem;
        gap: 0.8rem;
        padding: 0.7rem 1rem;
    }
    
    .circle {
        width: 45px;
        height: 45px;
    }
    
    .circle i {
        font-size: 1.1rem;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .model {
        font-size: 1.6rem;
    }
    
    .model::before {
        left: -15px;
    }
    
    .model::after {
        right: -25px;
    }
    
    .slider-section {
        padding-top: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skill-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .nav-circles {
        bottom: 1rem;
        gap: 0.5rem;
        padding: 0.6rem 0.8rem;
    }
    
    .circle {
        width: 40px;
        height: 40px;
    }
    
    .circle i {
        font-size: 1rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .model {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .home-content,
    .section-content {
        padding: 1.5rem;
    }
    
    .circle-tooltip {
        display: none;
    }
    
    .tech-stack span {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        font-size: 1.4rem;
    }
}
