/* Reset and Base Styles */
:root {
    --primary-color: #FBF1E8;
    --secondary-color: #1A7D97;
    --accent-color: #BF7807;
    --dark-color: #001A30;
    --light-dark-color: #2D4A6B;
    --gradient-primary: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    --gradient-secondary: linear-gradient(135deg, #FBF1E8 0%, #1A4D73 100%);
    --shadow-soft: 0 10px 40px rgba(0, 26, 48, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 26, 48, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 26, 48, 0.2);
}

/* Ensure box-sizing for all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D4A6B;
    overflow-x: hidden;
    background-color: #FBF1E8;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 241, 232, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(45, 74, 107, 0.1);
    box-shadow: 0 8px 32px rgba(0, 26, 48, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.logo-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-content:hover::before {
    opacity: 1;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D4A6B;
    line-height: 1.2;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.logo-name:hover {
    transform: translateX(5px);
}

.logo-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1A7D97;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-title:hover {
    opacity: 1;
    color: #BF7807;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2D4A6B;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #1A7D97;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2D4A6B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Reduced Size */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #FBF1E8;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

/* Consistent Button Styles */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    font-size: 0.95rem;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #1A7D97;
    color: white;
    box-shadow: 0 6px 20px rgba(26, 125, 151, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 125, 151, 0.3);
    background: #BF7807;
}

.btn-secondary {
    background: transparent;
    color: #1A7D97;
    border-color: #1A7D97;
    position: relative;
}

.btn-secondary:hover {
    background: #1A7D97;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 125, 151, 0.2);
    border-color: #1A7D97;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    width: 320px;
    height: 320px;
    position: relative;
    background: #1A7D97;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease 1s forwards;
    box-shadow: 0 20px 50px rgba(26, 125, 151, 0.2);
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 45px;
    height: 45px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 25px;
    background: #1A7D97;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #1A7D97;
    border-bottom: 2px solid #1A7D97;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 60px 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Prevent overlap by adding margin between sections */
section + section {
    margin-top: 0;
}

/* Reduced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Consistent Heading Styles */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2D4A6B;
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight {
    color: #1A7D97;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #BF7807;
    border-radius: 2px;
    opacity: 0.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #2D4A6B;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease 0.6s forwards;
    line-height: 1.6;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease 0.8s forwards;
    flex-wrap: wrap;
}

/* Reduced Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2D4A6B;
    text-align: center;
    margin-bottom: 0.8rem;
    position: relative;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

/* Reduced Section Subtitle */
.section-subtitle {
    font-size: 1rem;
    color: #2D4A6B;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Reduced About Section */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #FBF1E8 100%);
    padding: 4rem 0;
    position: relative;
}

.about::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%231A7D97" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 1.2rem;
    position: relative;
    letter-spacing: -0.01em;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1rem;
    color: #2D4A6B;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 125, 151, 0.1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #2D4A6B;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 320px;
    height: 320px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-5px);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.profile-image:hover::before {
    opacity: 0.1;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: #1A7D97;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Enhanced Skills Section */
.skills {
    background: #FBF1E8;
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.skills .container {
    width: 100%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.skill-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 125, 151, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex-grow: 1;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #FBF1E8;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.skill-item:hover {
    background: #1A7D97;
    color: white;
    transform: scale(1.02);
}

.skill-item i {
    font-size: 1.1rem;
    color: #1A7D97;
    transition: color 0.3s ease;
    min-width: 20px;
}

.skill-item:hover i {
    color: white;
}

/* Enhanced Section Header for Skills */
.skills .section-header {
    margin-bottom: 3rem;
}

.skills .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D4A6B;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.01em;
}

.skills .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

.skills .section-subtitle {
    font-size: 1.1rem;
    color: #2D4A6B;
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
}

/* Reduced Projects Section */
.projects {
    background: #fff;
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 125, 151, 0.1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: #1A7D97;
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    width: 40px;
    height: 40px;
    background: #1A7D97;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #BF7807;
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

/* Consistent Heading Styles */
.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 0.8rem;
    position: relative;
    letter-spacing: -0.01em;
}

.project-content h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

.project-content p {
    color: #2D4A6B;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    background: #FBF1E8;
    color: #1A7D97;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Reduced Contact Section */
.contact {
    background: #FBF1E8;
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Consistent Heading Styles */
.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 1.2rem;
    position: relative;
    letter-spacing: -0.01em;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #1A7D97 0%, #BF7807 100%);
    border-radius: 2px;
}

.contact-info p {
    color: #2D4A6B;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-methods {
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #2D4A6B;
}

.contact-method a {
    color: #1A7D97;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #BF7807;
    text-decoration: underline;
}

.contact-method i {
    color: #1A7D97;
    font-size: 1.1rem;
    width: 18px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #2D4A6B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #BF7807;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 125, 151, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(45, 74, 107, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    color: #2D4A6B;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1A7D97;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Reduced Footer */
.footer {
    padding: 40px 0 20px 0;
    background: #2D4A6B; /* Dark background for contrast */
    text-align: center;
    color: #FBF1E8;      /* Light text for visibility */
}

.footer-content p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Enhanced Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive Design for All Sections */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .image-container {
        width: 280px;
        height: 280px;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .skill-items {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 0;
        min-height: auto;
    }
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }

    .about,
    .skills,
    .projects,
    .contact {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

/* Responsive Design for Skills */
@media (max-width: 1024px) {
    .skills {
        padding: 4rem 0;
        min-height: 70vh;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .skill-category {
        min-height: 260px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .skills {
        padding: 3.5rem 0;
        min-height: auto;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skill-category {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .skill-items {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .skills .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .skills {
        padding: 3rem 0;
    }
    
    .skill-category {
        padding: 1.2rem;
    }
    
    .skill-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .skills .section-title {
        font-size: 1.8rem;
    }
}
