:root {
         --dark-color: #000000;
              --darker-color:#101524;
              --primary-color: #2563eb;
              --secondary-color: #4f46e5;
              --accent-color: #38bdf8;
              --success-color: #10b981;
              --light-color: #f1f5f9;
              --text-color: #e2e8f0;
              --text-light: #94a3b8;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent-color);
    color: var(--light-color);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--darker-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Loading Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    z-index: 2;
}

.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 1.5s linear infinite;
}

.loader-circle:nth-child(2) {
    border-top-color: var(--secondary-color);
    animation-duration: 2s;
}

.loader-circle:nth-child(3) {
    border-top-color: var(--accent-color);
    animation-duration: 2.5s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Main layout */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Floating elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.shape-1 {
    background: var(--primary-color);
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
}

.shape-2 {
    background: var(--secondary-color);
    width: 400px;
    height: 400px;
    top: 60%;
    right: -150px;
}

.shape-3 {
    background: var(--accent-color);
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 10%;
}

/* Header */
.header {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    position: relative;
}

.logo span {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    bottom: -5px;
    left: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: var(--dark-color);     
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    filter: contrast(1.2) brightness(0.3);
}

.hero-container {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-greeting {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-greeting::before {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-visual-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.hero-visual-frame:nth-child(1) {
    transform: translateZ(20px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    backdrop-filter: blur(10px);
}

.hero-visual-frame:nth-child(2) {
    transform: translateZ(10px) scale(0.9);
    border-color: rgba(168, 85, 247, 0.3);
}

.hero-visual-frame:nth-child(3) {
    transform: translateZ(0) scale(0.8);
    border-color: rgba(236, 72, 153, 0.3);
}

.hero-stats {
    position: absolute;
    background: rgba(10, 10, 22, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.hero-stats:hover {
    transform: translateY(-5px);
}

.hero-stats.stats-1 {
    top: 20%;
    left: -20%;
}

.hero-stats.stats-2 {
    bottom: 20%;
    right: -15%;
}

.hero-stats.stats-3 {
    bottom: -10%;
    left: 10%;
}

.hero-stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.hero-stats-text {
    display: flex;
    flex-direction: column;
}

.hero-stats-label {
    color: var(--text-light);
    font-size: 0.8rem;
}

.hero-stats-value {
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-5px);
}

.icons{
    width: 40px;
    height: 40px;
    border-radius: 50%;

}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    transition: all 0.5s ease;
}

.btn-primary {
    color: white;
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

.btn-outline::before {
    opacity: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.scroll-indicator-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    position: relative;
}

.scroll-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* About Section */
.about {
    padding: 0 0 8rem;
    position: relative;
    background: var(--dark-color);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title-container {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    border-radius: 30px;
    transform: rotate(-3deg);
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 30px;
    transform: rotate(6deg) scale(0.95);
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: grayscale(30%) contrast(1.1);
}

.about-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.about-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(30px);
    opacity: 0.1;
}

.about-decoration:nth-child(1) {
    width: 150px;
    height: 150px;
    top: -20px;
    left: -50px;
    background: var(--primary-color);
}

.about-decoration:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -60px;
    background: var(--secondary-color);
}

.about-content {
    position: relative;
}

.about-tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-tagline::before {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.about-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.skill-item,.skill-item-down {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.skill-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);

}

.skill-item-down:hover {
    transform: translateY(10px);
    background: rgba(255, 255, 255, 0.1);

}

.skill-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.skill-name {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Projects Section */
.projects {
    position: relative;
  padding: 0 0 8rem;
    z-index: 1;
    background: var(--dark-color);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--darker-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(50px);
    opacity: 0;
}

.project-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 16, 0.9));
    opacity: 0.7;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 0.5;
}

.project-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tag {
    background: rgba(10, 10, 22, 0.8);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary-color);
}

.project-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.project-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--primary-color);
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Experience Section */
.experience {
    position: relative;
    padding: 0 0 8rem;
    background: var(--dark-color);
}

.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.timeline-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    transform: translateX(-50px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    transform: translateX(50px);
}

.timeline-item:nth-child(odd) .timeline-content.animated,
.timeline-item:nth-child(even) .timeline-content.animated {
    transform: translateX(0);
}

.timeline-date {
    position: absolute;
    top: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 3rem;
    margin-right: 3rem;
    margin-top: -1.5rem;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -15%;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -15%;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.timeline-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}

/* Achievements Section */
.section-achievements {
    background: var(--dark-color);
    position: relative;
   padding: 0 0 8rem;
}

.achievements-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}




.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
}

.achievement-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: rotateY(180deg);
}



.achievement-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.achievement-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    position: relative;
    background: var(--dark-color);
    padding: 0 0 8rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    position: relative;
}

.contact-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-link-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-link-text {
    display: flex;
    flex-direction: column;
}

.contact-link-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-link-value {
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--darker-color);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-visual-inner {
        width: 350px;
        height: 350px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-greeting {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .hero-stats {
        display: none;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-image-container {
        padding-top: 70%;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-date {
        top: -40px;
        left: 0 !important;
        right: auto !important;
    }

    .timeline-icon {
        left: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .skill-item {
        padding: 0.8rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .achievements-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-greeting {
        font-size: 1rem;
    }

    .about-heading,
    .contact-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}


  /*  Project section  */


  body.page {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
      color: #333;
    }

    .project-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .section-title {
      font-size: 32px;
      text-align: center;
      margin-bottom: 40px;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 6rem;
      justify-content: center;
    }

    .project-card1 {

      width:80%;
      height:560px;
      background: rgba(225,225,225,0.05);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px transparent;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      align-item: center;
    }

    .project-card1:hover {
      box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
      background: rgba(225,225,225,0.1);
    }

    .project-img {
      width: 100%;
      height: 50%;
      object-fit: cover;
    }

    .project-content1 {
      padding: 40px;
      flex: 1;
    }

    .project-title1 {
      font-size: 20px;
      margin: 0 0 5px;
    }

    .project-subtitle {
      font-size: 14px;
      color: #555;
      margin-bottom: 5px;
    }

    .project-desc {
      font-size: 15px;
      margin-bottom: 15px;
    }

    .project-buttons {
      display: flex;
      justify-content:space-between;
      align-item:center;
      width:100%;

    }

    .toggle-btn {
      background: none;
      color: #0066cc;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .toggle-btn:hover {
      text-decoration: underline;
    }

    .github-btn {
      background: transparent;
      border: 1px solid #ccc;
      color: white;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 15px;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .github-btn:hover {
      border-color: #0066cc;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      color: white;
    }

    .project-detail {
      background: rgba(255, 255, 255, 0.05);
      margin-top: 30px;
       padding: 0 30px 0 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .project-detail.show {
      max-height: 1000px;
      padding: 30px 30px 60px 30px;

    }

    .project-detail-gallery2 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 7px;
       margin:2rem 0;
      height:350px;

    }

     .project-detail-gallery {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
           gap: 15px;
           height:230px;
           margin:2rem 0;
        }

    .project-detail-gallery2 img {
      width: 80%;
      height: 60%;
      border-radius: 6px;
      fit:cover;
    }

    .project-detail-gallery img {
          width: 90%;
          height: 50%;
          border-radius: 6px;
          fit:cover;
        }


    .project-detail-title {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .project-detail-desc {
      font-size: 17px;
      margin-bottom: 10px;
      color: white;
    }

    .project-detail-role {
      font-size: 18px;
      margin-bottom: 10px;
      font-style: italic;
      color: white;
    }

    .project-detail ul {
      list-style: disc;
      padding-left: 20px;
      margin-top: 1px;
    }

    @media screen and (max-width: 900px) {
      .project-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media screen and (max-width: 600px) {
      .project-detail-gallery {
        grid-template-columns: 1fr;
      }

      .project-buttons {
        flex-direction: column;
      }
    }

   #scrollTopBtn {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 999;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
     color: white;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: all 0.3s ease;
     box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
     cursor: pointer;
   }

   #scrollTopBtn svg {
     transition: transform 0.3s ease;
   }

   #scrollTopBtn:hover {
     transform: scale(1.1);
    background: var(--secondary-color);
     box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
   }

   #scrollTopBtn:hover svg {
     transform: translateY(-2px);
   }

   #scrollTopBtn.show {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
   }






    aboutnew {
      background-color: #000;
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 1rem;
      margin: 0;
      font-family: sans-serif;
    }

    .about-container {
      width: 100%;
      max-width: 1280px;
    }

    h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 3rem;
    }

    h2 span {
      color: #3b82f6;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      justify-items: center;
    }

    @media (min-width: 640px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .skill-card,.skill-card-down {
      width: 160px;
      height: 160px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.05);
      transition:  0.003s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);




    }

    .skill-card:hover {
      transform: translateY(-15px);
      background: rgba(255, 255, 255, 0.1);
    }

    .skill-card-down:hover {
          transform: translateY(15px);
          background: rgba(255, 255, 255, 0.1);
        }

    .skill-icon {
      font-size: 2.5rem;
      color: #3b82f6;
    }

    .label {
      margin-top: 0.75rem;
      font-weight: 500;
    }

    .fade-in-left {
      opacity: 0;
      transform: translateX(-100px);
      transition:  1s ease;
    }

    .fade-in-right {
      opacity: 0;
      transform: translateX(100px);
      transition: 1s ease;
    }

    .in-view {
      opacity: 1 !important;
      transform: translateX(0) ;
    }
