:root {
    /* Your Brand Colors */
    --grad-blue: linear-gradient(135deg, #0cace6, #0f62e8);
    --grad-green: linear-gradient(135deg, #9eed27, #43b249);
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #666;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light);
}

.mt-30 {
    margin-top: 30px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.line {
    width: 80px;
    height: 4px;
    background: var(--grad-blue);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--grad-blue);
    color: white;
}

.btn-secondary {
    background: var(--grad-green);
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 62px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #0cace6;
}

.btn-nav {
    background: var(--grad-blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgb(240, 248, 255) 0%, rgb(255, 255, 255) 90%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    z-index: 2;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-graphic {
    max-width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #0f62e8;
}

.card-1 {
    top: 0;
    left: 0;
}

.card-2 {
    top: 40%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.card-3 i {
    color: #43b249;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Video Section */
.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    aspect-ratio: 16 / 9;
    background-color: #ddd;
}

.video-thumbnail {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.video-wrapper:hover .play-button-overlay {
    background: rgba(0,0,0,0.5);
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: var(--grad-blue);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-wrapper iframe {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper.video-playing .video-thumbnail {
    display: none;
}

.video-wrapper.video-playing iframe {
    display: block;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stats li {
    display: flex;
    flex-direction: column;
}

.stats strong {
    font-size: 1.5rem;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-visual img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 172, 230, 0.7), rgba(15, 98, 232, 0.7));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay h3 {
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.portfolio-overlay span {
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
    font-size: 0.9rem;
    opacity: 0.8;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #0f62e8;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.process-num {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(15, 98, 232, 0.08);
}

.process-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonials Section */
#testimonials {
    background: var(--grad-blue);
}

#testimonials .section-header h2,
#testimonials .section-header p {
    color: var(--white);
}

#testimonials .line {
    background: var(--white);
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-content-wrapper {
    background: var(--white);
    color: var(--dark);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    height: 100%;
}

.testimonial-content-wrapper .fa-quote-left {
    font-size: 2.5rem;
    color: #0cace6;
    margin-bottom: 15px;
}

.testimonial-content-wrapper p {
    font-size: 0.95rem;
    color: var(--gray);
}

.testimonial-content-wrapper h5 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: #0f62e8;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--grad-green);
    color: var(--white);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.blog-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.blog-img {
    height: 200px;
    width: 100%;
}

.blog-content {
    padding: 20px;
}

.blog-content .date {
    font-size: 0.8rem;
    color: var(--gray);
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.blog-content .read-more {
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hidden-blog {
    display: none;
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-form-box {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

/* === NEW/MODIFIED CONTACT ICON STYLES === */
.info-item i {
    width: 50px;
    height: 50px;
    background-color: #eef5ff; /* Attractive, light transparent-like blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0; /* Apply the blue gradient to the icon font itself */
    background-image: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for older browsers */
}
/* === END OF NEW/MODIFIED STYLES === */

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--grad-green);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #0f62e8;
}

#form-status {
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 60px 0 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .footer-logo img {
    max-height: 48px;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: disc;
    padding-left: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray);
}

.footer-col ul li a:hover {
    color: #0cace6;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

/* === NEW/MODIFIED FOOTER CONTACT ICON STYLES === */
.footer-contact-info {
    list-style: none;
    padding-left: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray);
}

.footer-contact-info li i {
    margin-top: 5px;
    width: 16px;
    text-align: center;
    /* Applying blue gradient to footer icons */
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
/* === END OF NEW/MODIFIED STYLES === */

.footer-contact-info li a,
.footer-contact-info li span {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-contact-info li a:hover {
    color: #0cace6;
    padding-left: 0;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    animation-play-state: paused; /* Pause animation on hover */
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
    .prev-btn {
        left: 0;
    }
    .next-btn {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero h1 {
        /* MODIFIED: Reduced heading size for mobile */
        font-size: 2.3rem;
    }
    .hero-image-wrapper {
        width: 80%;
        margin-top: 40px;
        min-height: 300px;
    }
    .floating-card {
        padding: 15px;
    }
    .card-2 {
        right: -20%;
    }
    .cta-group {
        justify-content: center;
    }
    /* MODIFIED: Smaller hero buttons for mobile */
    .hero .cta-group .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: 100vh;
        background: white;
        flex-direction: column;
        width: 60%;
        padding-top: 50px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: block;
    }
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .about-grid {
        text-align: center;
    }
    .about-visual {
        margin-top: 30px;
    }
    .contact-wrapper {
        flex-direction: column-reverse;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    /* === MODIFIED: Testimonial Arrow Fix for Mobile === */
    .testimonial-carousel-wrapper {
        /* This pushes the review button down, creating space for the arrows */
        margin-bottom: 80px;
    }
    .slider-btn {
        top: auto;
        /* Positioned within the new margin space */
        bottom: -65px;
        transform: translateY(0);
    }
    .prev-btn {
        left: calc(50% - 55px);
    }
    .next-btn {
        right: calc(50% - 55px);
    }
    /* This rule is no longer needed as margin-bottom on the wrapper is a better solution */
    /* #testimonials .container { padding-bottom: 80px; } */
    /* === END OF MODIFICATION === */
}

/* --- NEW PAGE STYLES --- */
/* Generic Page Header for new pages */
.page-header {
    background: var(--grad-blue);
    color: var(--white);
    text-align: center;
    padding: 120px 0 60px 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main content wrapper for padding */
.main-content {
    padding-top: 80px;
}

/* Privacy Policy Page Styles */
.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.policy-content p,
.policy-content li {
    margin-bottom: 15px;
    color: var(--gray);
}

.policy-content ul {
    list-style: disc;
    padding-left: 25px;
}

/* Portfolio Page Styles */
.portfolio-category {
    padding-bottom: 80px;
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Blog Post Page Styles */
.blog-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.blog-article h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-article h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
}

.blog-article p,
.blog-article li {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.blog-article ul {
    list-style: disc;
    padding-left: 25px;
}

.blog-article blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid #0cace6;
    background: var(--light);
    font-style: italic;
    font-size: 1.1rem;
}

.blog-featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 8px;
    color: #0f62e8;
}

/* Blog Sidebar Styles */
.blog-sidebar .sidebar-widget {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.blog-sidebar .sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar .sidebar-widget ul li {
    margin-bottom: 10px;
}

.blog-sidebar .sidebar-widget ul li a {
    color: var(--gray);
    font-weight: 500;
}

.blog-sidebar .sidebar-widget ul li a:hover {
    color: #0f62e8;
}

/* --- NEW SIDEBAR PRODUCT SHOWCASE STYLES --- */
.sidebar-product-showcase {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-product-showcase img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-product-showcase:hover img {
    transform: scale(1.05);
}

.product-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transition: background 0.3s ease;
}

.sidebar-product-showcase:hover .product-overlay-text {
    background: linear-gradient(to top, rgba(15, 98, 232, 0.9), transparent);
}

.product-overlay-text h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.product-overlay-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- RESPONSIVE UPDATES FOR NEW PAGES --- */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    .portfolio-page-grid {
        grid-template-columns: 1fr;
    }
    .blog-article h1 {
        font-size: 2rem;
    }
}