/* Global Styles */
:root {
    --primary-color: #4a6cf7;
    --secondary-color: #2a3b8f;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --accent-color: #6d28d9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --transition: all 0.3s ease;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --box-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.section-title span {
    color: var(--primary-color);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(74, 108, 247, 0.2);
    z-index: -1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn:hover {
    box-shadow: var(--box-shadow-md);
    transform: translateY(-3px);
}

.btn:hover::before {
    width: 100%;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-sm);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color), var(--primary-color));
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: gradientAnimation 15s ease infinite;
}

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

header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-color), transparent);
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(5px);
}

nav.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    backdrop-filter: none;
}

nav.scrolled .logo,
nav.scrolled .nav-links a {
    color: white;
}

.logo {
    margin-left: 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.logo a {
    display: block;
    padding: 10px 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

/* Add subtle background glow effect */
.logo a::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.logo a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.logo a:hover .logo-img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Logo animation on page load */
.dom-loaded .logo a {
    animation: logoEntrance 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    margin-right: 20px;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

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

.nav-links a.active {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Code Editor Styling */
.code-editor {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    text-align: left;
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', monospace;
    max-width: 700px;
    margin: 0 auto 30px;
}

.code-editor-header {
    background-color: #323232;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.editor-title {
    color: #aaa;
    margin-left: 10px;
    font-size: 0.9rem;
}

.code-editor-body {
    display: flex;
    padding: 15px 0;
}

.line-numbers {
    padding: 0 10px;
    color: #858585;
    text-align: right;
    user-select: none;
    font-size: 0.9rem;
    border-right: 1px solid #333;
}

.line-numbers span {
    display: block;
    line-height: 1.5;
}

.code-content {
    padding: 0 15px;
    color: #d4d4d4;
    flex: 1;
    overflow-x: auto;
}

.code-line {
    line-height: 1.5;
    font-size: 0.9rem;
}

.code-keyword {
    color: #569cd6;
}

.code-class {
    color: #4ec9b0;
}

.code-property {
    color: #9cdcfe;
}

.code-string {
    color: #ce9178;
}

.code-comment {
    color: #6a9955;
}

.code-function {
    color: #dcdcaa;
}

.code-typing {
    position: relative;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.code-typing:nth-child(2) {
    animation-delay: 1s;
}

.code-typing:nth-child(3) {
    animation-delay: 2s;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(74, 108, 247, 0.2);
    z-index: -1;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid white;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: var(--transition-slow);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
}

.btn-outline:hover {
    color: var(--dark-color);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
}

.btn-outline:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.btn-outline.dark {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline.dark:hover {
    color: white;
}

.btn-outline.dark::before {
    background-color: var(--primary-color);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 108, 247, 0.2);
    box-shadow: 0 0 20px rgba(74, 108, 247, 0.3);
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 8%;
    animation: float 8s ease-in-out infinite, pulse-light 4s ease-in-out infinite alternate;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 12%;
    animation: float 10s ease-in-out infinite, pulse-light 6s ease-in-out infinite alternate;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 20%;
    animation: float 7s ease-in-out infinite, pulse-light 5s ease-in-out infinite alternate;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
    animation: float 9s ease-in-out infinite, pulse-light 7s ease-in-out infinite alternate;
}

.shape-5 {
    width: 25px;
    height: 25px;
    bottom: 15%;
    left: 40%;
    animation: float 11s ease-in-out infinite, pulse-light 8s ease-in-out infinite alternate;
}

@keyframes pulse-light {
    0% {
        background: rgba(74, 108, 247, 0.2);
        box-shadow: 0 0 20px rgba(74, 108, 247, 0.1);
    }
    100% {
        background: rgba(74, 108, 247, 0.3);
        box-shadow: 0 0 30px rgba(74, 108, 247, 0.3);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particlesAnimation 20s linear infinite;
}

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

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 20px rgba(74, 108, 247, 0.4), 0 0 30px rgba(74, 108, 247, 0.2);
    }
}

.vector-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.vector-container {
    position: absolute;
    pointer-events: auto;
}

.icon-tooltip {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.icon-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.vector-container:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.vector-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 15px rgba(74, 108, 247, 0.6));
    opacity: 0.9;
    z-index: 1;
    transition: all 0.5s ease;
}

.vector-icon:hover {
    color: rgba(74, 108, 247, 0.6);
    filter: drop-shadow(0 0 20px rgba(74, 108, 247, 0.7));
    opacity: 1;
    transform: scale(1.2);
}

.vector-container:nth-child(1) {
    top: 10%;
    left: 10%;
    animation: float 9s ease-in-out infinite;
}

.vector-container:nth-child(2) {
    top: 75%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

.vector-container:nth-child(3) {
    top: 25%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.vector-container:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

.vector-container:nth-child(5) {
    top: 15%;
    left: 45%;
    animation: float 11s ease-in-out infinite;
}

.vector-container:nth-child(6) {
    bottom: 10%;
    left: 40%;
    animation: float 9s ease-in-out infinite;
}

.vector-container:nth-child(7) {
    top: 35%;
    right: 35%;
    animation: float 8s ease-in-out infinite;
}

.vector-container:nth-child(8) {
    bottom: 35%;
    left: 65%;
    animation: float 10s ease-in-out infinite;
}

.code-icon {
    font-size: 2.5rem;
    animation: pulse-light 5s ease-in-out infinite alternate;
}

.database-icon {
    font-size: 2rem;
    animation: pulse-light 6s ease-in-out infinite alternate;
}

.server-icon {
    font-size: 2.2rem;
    animation: pulse-light 4s ease-in-out infinite alternate;
}

.api-icon {
    font-size: 1.8rem;
    animation: pulse-light 7s ease-in-out infinite alternate;
}

.cloud-icon {
    font-size: 2.3rem;
    animation: pulse-light 6s ease-in-out infinite alternate;
}

.mobile-icon {
    font-size: 1.9rem;
    animation: pulse-light 5s ease-in-out infinite alternate;
}

.laptop-icon {
    font-size: 2.1rem;
    animation: pulse-light 7s ease-in-out infinite alternate;
}

.cog-icon {
    font-size: 2rem;
    animation: pulse-light 4s ease-in-out infinite alternate;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: white;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

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

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    transition: var(--transition);
    border: 5px solid white;
}

.about-img:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--box-shadow-md);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 108, 247, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 108, 247, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 108, 247, 0);
    }
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.skills {
    margin-top: 30px;
}

.resume-btn-container {
    margin-top: 35px;
}

.skills h3 {
    margin-bottom: 15px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.skill-tags span {
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(74, 108, 247, 0.2);
}

.skill-tags span:hover {
    background-color: rgba(74, 108, 247, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-sm);
}

.skill-tags span.featured {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 10px 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(74, 108, 247, 0.2);
    border: none;
}

.skill-tags span.featured:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 108, 247, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 35px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
}

.service-card:hover::before {
    height: 100%;
}

/* Enhanced Service Icons */
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-card i {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    color: white;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Service icon backgrounds - different for each icon */
.service-card:nth-child(1) i {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.service-card:nth-child(2) i {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.service-card:nth-child(3) i {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-card:nth-child(4) i {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.service-card:nth-child(5) i {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.service-card:nth-child(6) i {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.service-card:nth-child(7) i {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.service-card:nth-child(8) i {
    background: linear-gradient(135deg, #14b8a6, #5eead4);
}

/* Icon hover effect */
.service-card:hover i {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Service details styles - Accordion approach */
.service-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0;
}

.service-details.active {
    opacity: 1;
    max-height: 500px;
    padding-top: 20px;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.service-details ul {
    padding-left: 0;
    list-style: none;
}

.service-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    opacity: 0;
    word-wrap: break-word;
    width: 100%;
}

.service-details li span {
    flex: 1;
    word-break: break-word;
}

.service-details.active li {
    animation: slideInRight 0.5s forwards;
}

.service-details li i {
    color: var(--success-color);
    font-size: 1rem;
    margin-right: 10px;
    background: none;
    width: auto;
    height: auto;
    box-shadow: none;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-details li i:after {
    display: none;
}

.service-details.active li:nth-child(1) { animation-delay: 0.1s; }
.service-details.active li:nth-child(2) { animation-delay: 0.2s; }
.service-details.active li:nth-child(3) { animation-delay: 0.3s; }
.service-details.active li:nth-child(4) { animation-delay: 0.4s; }
.service-details.active li:nth-child(5) { animation-delay: 0.5s; }

.service-expand-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.service-expand-btn i {
    font-size: 0.8rem !important;
    margin-left: 5px;
    transition: transform 0.3s ease;
    background: none !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
}

.service-expand-btn.active i {
    transform: rotate(180deg);
}

.service-expand-btn:hover {
    color: var(--secondary-color);
}

/* Add subtle glow effect */
.service-card i::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover i::after {
    opacity: 1;
}

.service-card h3 {
    margin-bottom: 0;
    margin-top: 0;
    flex-grow: 1;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    position: relative;
}

.projects-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    transition: var(--transition);
}

.projects-grid.filtered .project-card {
    animation: fadeIn 0.5s ease forwards;
}

.project-card.hidden {
    display: none;
}

.project-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    background-color: white;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(74, 108, 247, 0.05), transparent);
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.project-card:hover::after {
    height: 100%;
}

.project-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-bottom: 80px;
}

.project-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.project-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tags span {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Tag color variations based on technology */
.project-tags span[data-tech="true"] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.project-tags span:nth-child(4n+1) {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.project-tags span:nth-child(4n+2) {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.project-tags span:nth-child(4n+3) {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.project-tags span:nth-child(4n+4) {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

/* Hover effect */
.project-tags span:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Highlighted state for active filter */
.project-tags span.highlighted {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
}

.project-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
}

.project-date {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.btn-small {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.1);
    text-decoration: none;
}

.btn-small::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--primary-color);
    transition: var(--transition-slow);
    z-index: -1;
    transform-origin: bottom;
}

.btn-small:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-small:hover::before {
    height: 100%;
}

.btn-small:active {
    transform: translateY(-1px);
}

.btn-small.active {
    background-color: var(--primary-color);
    color: white;
}

.btn-small.secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-small.secondary::before {
    background-color: var(--secondary-color);
}

.btn-small.accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-small.accent::before {
    background-color: var(--accent-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f1f5f9;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: var(--box-shadow-sm);
    width: calc(33.333% - 20px);
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(33.333% - 20px);
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(74, 108, 247, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--box-shadow-md);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 15px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p::before {
    left: -10px;
    top: -10px;
}

.testimonial-content p::after {
    right: -10px;
    bottom: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e2e8f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-prev {
    left: 0px;
}

.slider-next {
    right: 0px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8fafc;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.contact-icon i {
    font-size: 2rem;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover .contact-icon::before {
    transform: scale(2);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-container {
    text-align: center;
    margin-top: 50px;
}

.social-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: white;
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* GitHub branding */
.github-link i {
    color: #24292e;
}
.github-link:hover {
    background-color: #24292e;
    color: white;
    transform: translateY(-5px);
}

/* LinkedIn branding */
.linkedin-link i {
    color: #0a66c2;
}
.linkedin-link:hover {
    background-color: #0a66c2;
    color: white;
    transform: translateY(-5px);
}

/* GitLab branding */
.gitlab-link i {
    color: #fc6d26;
}
.gitlab-link:hover {
    background-color: #fc6d26;
    color: white;
    transform: translateY(-5px);
}

/* X (Twitter) branding */
.x-link i {
    color: #000000;
}
.x-link .x-icon {
    font-weight: bold;
    font-size: 1.1rem;
}
.x-link:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-5px);
}

.social-link:hover i {
    color: white;
}

/* Contact form styles removed as we no longer have a contact form */

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.footer-logo a {
    display: block;
    padding: 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-logo a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1;
}

.footer-logo a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.footer-logo a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-logo a:hover .footer-logo-img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.footer-tagline {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--gray-color);
    margin-top: 0;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .testimonial {
        width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .projects-filter {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .projects-filter::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-header {
        flex-direction: row;
        align-items: center;
    }
    
    .service-card i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 12px;
    }
    
    .code-editor {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: auto;
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 80px;
        padding-right: 30px;
        padding-bottom: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
        overflow-y: auto;
        max-height: 100vh;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-only-close {
        display: none; /* Hidden by default */
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: white;
        cursor: pointer;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: var(--transition);
        z-index: 1002;
    }
    
    @media (max-width: 768px) {
        .mobile-only-close {
            display: flex; /* Show only on mobile */
        }
        
        /* Show the close button only when the menu is active */
        .nav-links.active + .mobile-only-close {
            display: flex;
        }
    }
    
    .menu-close:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    .nav-links.scrolled-active {
        /* Ensure menu stays visible when scrolled */
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: right;
    }
    
    .nav-links a {
        color: white;
        font-size: 1.1rem;
        padding: 15px 0;
        display: block;
        width: 100%;
        text-align: right;
    }
    
    .nav-links a:hover {
        color: var(--primary-color);
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
        margin-right: 15px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(3),
    .form-group:nth-child(4),
    .contact-form .btn {
        grid-column: 1;
    }
    
    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .vector-elements {
        display: none;
    }
    
    .code-editor {
        transform: scale(0.9);
    }
    
    .about-img .experience-badge {
        right: 0;
        bottom: 0;
    }
    
    .skills .skill-tags {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 10px 0;
    }
    
    /* Removed scrollbar styling as we're using grid now */
    
    .social-link {
        width: 100%;
        padding: 10px 15px;
        justify-content: center;
        white-space: nowrap;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-slider {
        overflow: hidden;
    }
    
    .testimonial {
        width: calc(100% - 20px);
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
    }
    
    .about-img {
        margin-bottom: 50px;
        max-width: 280px;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .code-editor {
        transform: scale(0.85);
        margin-left: -10px;
    }
    
    .code-editor-body {
        padding: 10px 5px;
    }
    
    .line-numbers {
        padding-right: 5px;
    }
    
    .code-content {
        padding-left: 5px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-tagline {
        align-items: center;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info-icon {
        margin-right: 0;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Gradient Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .section {
        padding: 30px 0;
    }
    
    .logo-img,
    .footer-logo-img {
        height: 35px;
    }
    
    .code-editor {
        transform: scale(0.75);
        margin-left: -20px;
    }
    
    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-img .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .about-img .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .about-img .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .testimonial {
        padding: 15px;
    }
}
