/* Responsive Portfolio Stylesheet */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Montserrat', sans-serif;
line-height: 1.6;
color: #ffffff;
background-color: #0a0a0a;
}

/* Header Section */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 40px;
position: relative;
z-index: 10;
}

.logo {
width: 60px;
height: 60px;
border-radius: 50%;
border: 2px solid #ff6b9d;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #ff6b9d;
}

.icons {
display: flex;
gap: 20px;
}

.icons a {
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}

.icons a:hover {
transform: scale(1.1);
}

/* Panel Container */
.panel-container {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 100vh;
gap: 0;
}

/* Hero Panel */
.hero-panel {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
padding: 40px 20px;
}

.hero-panel::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image:
    radial-gradient(2px 2px at 20% 30%, #ffffff, rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 80% 70%, #ffffff, rgba(255, 255, 255, 0)),
    radial-gradient(1px 1px at 50% 50%, #ffffff, rgba(255, 255, 255, 0)),
    radial-gradient(1px 1px at 10% 80%, #ffffff, rgba(255, 255, 255, 0)),
    radial-gradient(2px 2px at 90% 10%, #ffffff, rgba(255, 255, 255, 0));
background-size: 200% 200%;
opacity: 0.1;
pointer-events: none;
}

.hero-panel::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad'%3E%3Cstop offset='0%25' style='stop-color:rgb(255,255,255);stop-opacity:0.1' /%3E%3Cstop offset='100%25' style='stop-color:rgb(255,255,255);stop-opacity:0' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cline x1='50' y1='100' x2='200' y2='20' stroke='url(%23grad)' stroke-width='1'/%3E%3Cline x1='500' y1='500' x2='400' y2='600' stroke='url(%23grad)' stroke-width='1'/%3E%3Ccircle cx='200' cy='100' r='3' fill='%23ffffff' opacity='0.2'/%3E%3Ccircle cx='50' cy='100' r='2' fill='%23ffffff' opacity='0.2'/%3E%3Ccircle cx='500' cy='500' r='3' fill='%23ffffff' opacity='0.2'/%3E%3Ccircle cx='400' cy='600' r='2' fill='%23ffffff' opacity='0.2'/%3E%3C/svg%3E");
background-repeat: repeat;
opacity: 0.15;
pointer-events: none;
}

.hero-content {
position: relative;
z-index: 10;
text-align: center;
max-width: 100%;
}

.hero-content h1 {
font-size: clamp(32px, 8vw, 72px);
font-weight: 700;
margin-bottom: 10px;
letter-spacing: -2px;
}

.hero-content .subtitle {
font-size: clamp(18px, 5vw, 32px);
font-weight: 400;
margin-bottom: 40px;
color: #b0b0b0;
}

.social-icons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.social-icon {
width: 50px;
height: 50px;
border: 2px solid #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}

.social-icon:hover {
border-color: #ff6b9d;
transform: scale(1.1);
}

/* Expertise Panel */
.expertise-panel {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
position: relative;
overflow: hidden;
}

.expertise-panel::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
width: 1px;
height: 100%;
background: linear-gradient(to bottom, transparent, rgba(255, 107, 157, 0.2), transparent);
pointer-events: none;
}

.expertise-content {
position: relative;
z-index: 10;
text-align: center;
max-width: 600px;
}

.expertise-content h2 {
font-size: clamp(28px, 6vw, 42px);
font-weight: 700;
margin-bottom: 30px;
color: #ffffff;
}

.expertise-content p {
font-size: clamp(14px, 2.5vw, 16px);
line-height: 1.8;
color: #a0a0a0;
}

.expertise-content p:not(:last-child) {
margin-bottom: 20px;
}

/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: clamp(30px, 5vw, 60px);
}

/* Skills Grid */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: clamp(30px, 5vw, 60px);
margin-top: 40px;
}

.skills-grid5 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
gap: 10px;
}

.skill-category h3 {
font-size: clamp(20px, 4vw, 26px);
margin-bottom: 30px;
font-weight: 700;
color: #ffffff;
}

.skill-icons {
display: flex;
gap: 20px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.skill-icon {
width: clamp(50px, 12vw, 70px);
height: clamp(50px, 12vw, 70px);
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
border-radius: 50%;
transition: all 0.3s ease;
}

.skill-icon:hover {
border-color: #ff6b9d;
transform: translateY(-5px);
}

/* Underline Hover Effect */
.underline-hover {
position: relative;
display: inline-block;
cursor: pointer;
}

.underline-hover::after {
content: '';
position: absolute;
left: 0;
bottom: -2px;
width: 100%;
height: 2px;
background-color: red;
transform: scaleX(0);
transition: transform 0.3s ease;
transform-origin: left;
}

.underline-hover:hover::after {
transform: scaleX(1);
}

/* Work Experience Section */
.work-experience-section {
max-width: 1200px;
margin: 0 auto;
padding: clamp(30px, 5vw, 60px);
}

.section-title {
font-size: clamp(28px, 6vw, 42px);
font-weight: 700;
margin-bottom: clamp(30px, 5vw, 50px);
text-align: center;
color: #ffffff;
}

.work-item {
margin-bottom: 50px;
}

.job-title {
font-size: clamp(18px, 3vw, 20px);
font-weight: 700;
color: #ff6b9d;
margin-bottom: 5px;
}

.company {
font-size: clamp(14px, 2.5vw, 16px);
font-weight: 600;
color: #ffffff;
margin-bottom: 5px;
}

.duration {
font-size: 13px;
color: #888;
margin-bottom: 15px;
}

.description {
font-size: clamp(13px, 2vw, 14px);
line-height: 1.8;
color: #b0b0b0;
margin-bottom: 15px;
list-style-position: inside;
}

.skills {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.skill-tag {
display: inline-block;
background-color: rgba(255, 107, 157, 0.2);
color: #ff6b9d;
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
border: 1px solid rgba(255, 107, 157, 0.3);
}

/* Projects Section */
.projects-section {
padding: clamp(30px, 5vw, 60px);
background-color: #0a0a0a;
}

.projects-part {
margin: 0 clamp(20px, 5vw, 10%);
margin-bottom: 5%;
}

.project-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(20px, 5vw, 40px);
align-items: center;
margin-bottom: clamp(30px, 5vw, 40px);
}

.project-item:nth-child(even) {
direction: rtl;
}

.project-item:nth-child(even) > * {
direction: ltr;
}

.project-image {
width: 100%;
height: auto;
min-height: 250px;
max-height: 300px;
object-fit: cover;
border-radius: 12px;
transition: transform 0.3s ease;
}

.project-image:hover {
transform: scale(1.02);
}

.project-content h3 {
font-size: clamp(20px, 4vw, 24px);
margin-bottom: 20px;
font-weight: 700;
color: #ffffff;
}

.project-content ul {
list-style: none;
margin-bottom: 20px;
}

.project-content li {
font-size: clamp(13px, 2.2vw, 14px);
color: #a0a0a0;
line-height: 1.8;
margin-bottom: 10px;
}

.list-red {
font-size: clamp(12px, 2vw, 13px);
color: #ff6b9d;
margin-bottom: 8px;
font-weight: 600;
}

/* Additional Projects Grid */
.additional-projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: clamp(30px, 5vw, 60px);
margin-top: 40px;
margin-left: clamp(20px, 5vw, 10%);
margin-right: clamp(20px, 5vw, 10%);
}

/* Button */
.btn {
display: inline-block;
padding: 12px 30px;
border: 2px solid #ffffff;
background-color: transparent;
color: #ffffff;
font-size: clamp(12px, 2vw, 14px);
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
font-weight: 600;
margin-top: 20px;
}

.btn:hover {
background-color: #ffffff;
color: #0a0a0a;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
.panel-container {
    grid-template-columns: 1fr;
    min-height: auto;
}

.hero-panel {
    min-height: 60vh;
    padding: 40px 30px;
}

.expertise-panel {
    min-height: 60vh;
    padding: 40px 30px;
}

.project-item,
.project-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
}

.skills-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
.panel-container {
    grid-template-columns: 1fr;
}

.hero-panel,
.expertise-panel {
    min-height: auto;
    padding: 30px 20px;
}

.hero-content h1 {
    font-size: 32px;
}

.hero-content .subtitle {
    font-size: 18px;
}

.social-icons {
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
}

.skills-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.project-item {
    gap: 20px;
    margin-bottom: 30px;
}

.projects-part {
    margin: 0 15px;
}

.additional-projects-grid {
    grid-template-columns: 1fr;
    margin-left: 15px;
    margin-right: 15px;
}

.project-content {
    padding: 0;
}

.skill-icon {
    width: 60px;
    height: 60px;
}

.section-title {
    font-size: 28px;
}

.container {
    padding: 30px 20px;
}
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
.hero-panel {
    padding: 20px 15px;
}

.hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero-content .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.social-icons {
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
}

.skill-icon {
    width: 50px;
    height: 50px;
}

.skill-icons {
    gap: 15px;
}

.skill-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 25px;
}

.projects-part,
.additional-projects-grid {
    margin: 0 10px;
}

.project-item {
    gap: 15px;
}

.job-title {
    font-size: 16px;
}

.company {
    font-size: 13px;
}

.description {
    font-size: 12px;
}

.btn {
    padding: 10px 25px;
    font-size: 12px;
}
}
