
/* index.css - Main Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gray-color: #7f8c8d;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius: 10px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(104deg, #ff5700ad 0%, #759cea 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2530 100%);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    margin: 0 auto 1rem;
    display: block;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Navigation Styles */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 1rem;
}

.navbar ul {
    display: flex;
    list-style: none;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.navbar li {
    margin: 0 1.5rem;
}

.navbar a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    color: var(--secondary-color);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .navbar li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar a {
        display: block;
        padding: 0.8rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    /* .grid-container {
        grid-template-columns: 1fr;
    } */
    
    section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.5rem 1rem;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header p {
        font-size: 1rem;
    }
}



/* home.css - Experience Section */
#experience {
    position: relative;
    overflow: hidden;
}

#experience h2 {
    text-align: center;
    display: block;
    margin: 0 auto 2rem;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
}

.slide h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.slide p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.active-slide {
    opacity: 1;
}

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots Navigation */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
    }
    
    .slide h3 {
        font-size: 1.5rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 250px;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .slide h3 {
        font-size: 1.3rem;
    }
}




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

#about h2 {
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
}

#about > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Social Links List */
#about ul {
    max-width: 800px;
    margin: 0 auto;
}

#about li {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    border-left: 4px solid transparent;
}

#about li:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#about li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    flex-grow: 1;
    transition: var(--transition);
}

#about li a:hover {
    color: var(--secondary-color);
}

#about li i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

/* Social Media Icons Colors */
.fa-facebook { color: #1877f2; }
.fa-tiktok { color: #000000; }
.fa-telegram { color: #0088cc; }
.fa-robot { color: var(--accent-color); }

/* Bot Info */
#about li a h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

#about li a h5 {
    margin: 0.3rem 0 0 0;
    font-weight: normal;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Copy Button */
#about li button {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-left: 1rem;
    white-space: nowrap;
}

#about li button:hover {
    background: linear-gradient(135deg, #2ecc71, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Responsive About Section */
@media (max-width: 768px) {
    #about li {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
    }
    
    #about li button {
        margin-left: 0;
        margin-top: 1rem;
        align-self: flex-end;
    }
    
    #about li a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #about li {
        padding: 1rem;
    }
    
    #about li i {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    #about li a h4 {
        font-size: 1rem;
    }
    
    #about li a h5 {
        font-size: 0.85rem;
    }
}


/* 222222222222222222222222222222222222222222222222222222222222222 */
main section {
    scroll-margin-top:70px;
    
}

/* -----------------------------------software-------------------------------- */
#software{
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
}
