/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    animation: spin 1.5s linear infinite;
    position: relative;
    margin-bottom: 20px;
}

.loader-circle:before, .loader-circle:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader-circle:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--accent-color);
    border-left-color: var(--accent-color);
    animation: spin 2s linear infinite;
}

.loader-circle:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
    animation: spin 1s linear infinite;
}

.loader-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    animation: reveal 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes reveal {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Theme Variables */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #1a1e2e;
    --bg-secondary: #232a43;
    --bg-tertiary: rgba(65, 105, 225, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-color: #4169e1;
    --border-color: #2d3452;
    --card-bg: #232a43;
    --input-bg: #1a1e2e;
    --timeline-bg: #232a43;
    --timeline-dot: #4169e1;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --gradient-bg: linear-gradient(238deg, rgba(37, 44, 72, 1) 52%, rgba(65, 112, 223, 1) 51%);
}

/* Light Theme */
body.light-mode {
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: rgba(65, 105, 225, 0.1);
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #777777;
    --accent-color: #4169e1;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --input-bg: #f0f2f5;
    --timeline-bg: #ffffff;
    --timeline-dot: #4169e1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-bg: linear-gradient(238deg, rgba(230, 234, 240, 1) 52%, rgba(65, 112, 223, 1) 51%);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-btn, .theme-toggle {
    background-color: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-btn:hover, .theme-toggle:hover {
    background-color: var(--bg-tertiary);
}

.theme-toggle {
    font-size: 20px;
}

.theme-toggle i {
    transition: transform 0.5s ease;
}

body.light-mode .theme-toggle i.fa-sun {
    transform: rotate(360deg);
}

/* Sliding Menu Styles */
.sliding-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    box-shadow: -5px 0 15px var(--shadow-color);
    transition: right 0.3s ease-in-out;
    z-index: 1002;
    padding: 80px 40px 40px;
    border-left: 1px solid var(--border-color);
}

.sliding-menu.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sliding-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sliding-menu nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.sliding-menu nav a:hover {
    color: var(--accent-color);
}

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

.sliding-menu nav a:hover::after {
    width: 30px;
}

.sliding-menu nav a.active {
    color: var(--accent-color);
}

.sliding-menu nav a.active::after {
    width: 30px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

/* Profile Frame Styles */
.profile-frame {
    position: relative;
    padding: 35px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    transform: translate(15px, 15px);
    z-index: -1;
    border-radius: 10px;
}

.profile-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Content Styles */
.hero-content {
    padding: 20px;
}

.hello-badge {
    display: inline-block;
    background-color: #4169e1;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.role-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
    max-width: 600px;
}

.portfolio-btn, .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-btn {
    background-color: var(--accent-color);
    color: #ffffff;
}

.download-btn {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-color);
}

.portfolio-btn i, .download-btn i {
    margin-right: 10px;
}

.portfolio-btn:hover, .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
    color: #ffffff;
}

.portfolio-btn:hover {
    background-color: #3050c0;
}

.download-btn:hover {
    background-color: var(--accent-color);
}

/* Section Styles */
.section-hidden {
    display: none;
}

.section-active {
    /* display: block; */
    animation: fadeIn 0.5s ease-in-out;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    min-height: 100vh;
}

.about-info-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-label {
    color: var(--text-secondary);
    min-width: 120px;
    font-weight: 500;
}

.info-value {
    color: var(--text-muted);
    font-weight: 500;
}

/* Stats Styles */
.stats-row {
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(65, 105, 225, 0.1);
    color: #4169e1;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 20px;
}

.stat-icon i {
    font-size: 30px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-number sup {
    font-size: 16px;
    top: -0.8em;
}

.stat-text {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 500;
}

/* What I Do Styles */
.what-i-do {
    margin-top: 60px;
}

/* Testimonial Styles */
.testimonial-section {
    margin-top: 60px;
}

.testimonial-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.testimonial-position {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.service-icon {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-height: 70px;
    max-width: 70px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Resume Section Styles */
.resume-section {
    padding: 80px 0;
    min-height: 100vh;
}

.download-btn {
    background-color: #4169e1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.download-btn i {
    margin-right: 10px;
}

.download-btn:hover {
    background-color: #3050c0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
}

.skills-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.skills-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.skills-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #4169e1;
}

/* Linear Progress Bars */
.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.skill-percentage {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.progress {
    height: 13px;
    background-color: var(--input-bg);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: #4169e1;
    border-radius: 4px;
}

/* Circular Progress */
.circular-progress {
    text-align: center;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

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

.progress-ring-circle-bg {
    stroke: var(--input-bg);
    opacity: 0.3;
}

.progress-ring-circle {
    stroke: var(--accent-color);
    transition: stroke-dashoffset 0.5s ease;
    transform-origin: center;
}

.circular-progress-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.circular-progress-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 5px;
    display: block;
    text-align: center;
}

/* Knowledge List */
.knowledge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.knowledge-list li {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.knowledge-list li i {
    color: #4169e1;
    font-size: 10px;
    margin-right: 10px;
}

/* Timeline Styles */
.timeline-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    height: 100%;
    width: 2px;
    background-color: #4169e1;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #4169e1;
    border: 3px solid var(--card-bg);
    z-index: 1;
}

.timeline-content {
    padding-left: 10px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-subtitle {
    font-size: 14px;
    color: #4169e1;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 80px 0;
    min-height: 100vh;
}

/* Portfolio Filter */
.portfolio-filter {
    margin-bottom: 40px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #4169e1;
    color: var(--text-primary);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #4169e1;
    color: #ffffff;
}

/* Portfolio Items */
.portfolio-box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-box:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(65, 105, 225, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-box:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
}

.portfolio-zoom,
.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #4169e1;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portfolio-zoom:hover,
.portfolio-link:hover {
    background-color: #1a1e2e;
    color: #ffffff;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item.hide {
    display: none;
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px;
}

.portfolio-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.portfolio-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.portfolio-modal-img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    margin: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.portfolio-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-modal-close:hover {
    color: #4169e1;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    min-height: 100vh;
}

/* Contact Info Boxes */
.contact-info-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.85);
}

.contact-icon i {
    color: #4169e1;
    font-size: 24px;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-box {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.form-control {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 5px;
    color: var(--text-primary);
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #1a1e2e;
    border-color: #4169e1;
    color: #ffffff;
    box-shadow: none;
}

.form-control::placeholder {
    color: #a0a0a0;
}

.send-btn {
    background-color: #4169e1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.send-btn:hover {
    background-color: #3050c0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(65, 105, 225, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4169e1;
    transition: all 0.3s ease;
    border: 1px solid var(--input-border);
    text-decoration: none;
}

.social-link:hover {
    background-color: #4169e1;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Map Box */
.contact-map-box {
    background-color: #232a43;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map-box iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 1400px) {
.profile-frame{
        max-width: 75%;
}
}

@media (max-width: 991px) {
    h1 {
        font-size: 36px;
    }
    
    .role-title {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 70px 0 50px;
    }
    
    .profile-frame {
        margin-bottom: 40px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .about-info-box {
        padding: 25px;
    }
    
    .info-item {
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 28px;
    }
    
    .role-title {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}
