:root {
    --primary: #00df9a;
    --dark: #0a192f;
    --light: #ccd6f6;
    --gray: #8892b0;
    --dark-accent: #112240;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    padding-top: 80px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.logo-image {
    height: 40px; 
    width: auto;
    transition: transform 0.3s;
}
.logo-image {
    height: 1.5em;
    width: auto;
    transition: transform 0.3s;
    object-fit: contain;
}


.logo-image:hover {
    transform: scale(1.1);
}

.navbar {
    padding: 1rem 5%;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1.5rem;
}

.nav-social a {
    color: var(--light);
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.nav-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.floating-social {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.floating-social a {
    color: var(--light);
    font-size: 1.3rem;
    background: rgba(10, 25, 47, 0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #00df9a4d;
}

.floating-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
    background: var(--dark-accent);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

.section-title {
    font-size: xx-large;
    color: #00df9a;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 800px; 
}

.experience-section {
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.hero {
    padding: 4rem 0 6rem;
    padding-bottom: 30px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

#tech{
    padding-top: 20px;
}

.tech-item {
    background-color: var(--dark-accent);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.experience-item {
    background-color: var(--dark-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.company {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.position {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.date {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: block;
}

.description {
    color: var(--light);
    line-height: 1.6;
}

footer {
    font-size: small;
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.copyright {
    color: var(--gray);
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-social {
        margin-top: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-social {
        flex-direction: row;
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        background: var(--dark);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }
}

@media (max-width: 480px) {
    .floating-social {
        left: 15px;
    }
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--dark-accent);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 2px solid var(--dark-accent);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #00c58a;
  }
  
 
html {
    scroll-behavior: smooth;
}


a[href="#contact"] {
    scroll-behavior: auto;
}

    .scroll-progress-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.scroll-progress-circle {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s;
}

.scroll-progress-circle:hover {
  transform: scale(1.1);
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke: var(--primary);
  stroke-dasharray: 157; 
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.3s;
}

.back-to-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.back-to-top i {
  font-size: 1.2rem;
}


.scroll-complete .back-to-top {
  opacity: 1;
}
.highlight-animation {
    animation: socialPulse 2s ease;
}

@keyframes socialPulse {
    0% {
        color: var(--light);
        transform: translateY(0) scale(1);
    }
    20% {
        color: var(--primary);
        transform: translateY(-3px) scale(1.2);
        box-shadow: 0 0 15px rgba(0, 223, 154, 0.4);
    }
    100% {
        color: var(--light);
        transform: translateY(0) scale(1);
    }
}

 
.floating-social a.highlight-animation:hover {
    transform: translateY(-3px) scale(1.2) !important;
}
.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
    font-size: 0.85rem !important;
    padding: 0 !important;
}

.goog-te-combo {
    background: var(--dark-accent) !important;
    color: var(--light) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 4px !important;
    padding: 0.3rem 0.5rem !important;
    cursor: pointer !important;
}