/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Add this line to ensure all elements use Montserrat */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat';
    background-color: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #fd0606;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background-color: #c0c0c0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-size: 1.5rem;
    font-weight: 600;
    color: #fd0606;
}

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

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fd0606;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fd0606;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #c0c0c0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.3), rgba(192, 192, 192, 0.2));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fd0606;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c0c0c0;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fd0606;
    color: #fff;
    border: 2px solid transparent;
}

.btn-secondary {
    background: transparent;
    color: #fd0606;
    border: 2px solid #fd0606;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    background: #ff4757;
    color: #fff;
}

.btn-secondary:hover {
    background: #fd0606;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fd0606;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fd0606;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #fd0606, #c0c0c0);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fd0606;
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 3px solid #fd0606;
    border-radius: 10px;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.05);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    color: #c0c0c0;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    transform: translateY(-5px);
    border-color: #fd0606;
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.2);
}

.tab-button.active {
    background: linear-gradient(45deg, #fd0606, #c0c0c0);
    color: #000;
    border-color: #fd0606;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

.tab-button i {
    font-size: 1.1rem;
}

.tab-button span {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-weight: 600;
    font-size: 0.7rem;
    text-align: center;
    width: 100%;
    display: block;
}

/* Tab Content */
.tab-content {
    margin-bottom: 3rem;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-description {
    text-align: center;
    margin-bottom: 2rem;
}

.tab-description p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Service Gallery Grid */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #1a1a1a;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #fd0606;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Enhanced Mobile Responsive Gallery */
@media (max-width: 768px) {
    .service-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .service-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 2rem auto;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    .service-tabs {
        gap: 0.4rem;
    }
    
    .tab-button {
        min-width: 90px;
        padding: 0.5rem 0.6rem;
    }
    
    .tab-button span {
        font-size: 0.7rem;
    }
    
    .service-gallery {
        max-width: 280px;
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 4, 4, 0.973), rgba(192, 192, 192, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-size: 1.2rem;
    color: #000;
    text-align: center;
    font-weight: 600;
}

.pricing-note {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #fd0606;
}

.pricing-note p {
    font-size: 1.1rem;
    color: #cccccc;
    font-style: italic;
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .service-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-tabs::-webkit-scrollbar {
        height: 3px;
    }
    
    .service-tabs::-webkit-scrollbar-track {
        background: #333;
        border-radius: 3px;
    }
    
    .service-tabs::-webkit-scrollbar-thumb {
        background: #fd0606;
        border-radius: 3px;
    }
    
    .tab-button {
        flex: 0 0 auto;
        min-width: 110px;
        padding: 0.7rem 1rem;
    }
    
    .tab-button span {
        font-size: 0.8rem;
    }
    
    .service-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-tabs::-webkit-scrollbar {
        height: 3px;
    }
    
    .service-tabs::-webkit-scrollbar-track {
        background: #333;
        border-radius: 3px;
    }
    
    .service-tabs::-webkit-scrollbar-thumb {
        background: #fd0606;
        border-radius: 3px;
    }
    
    .tab-button {
        flex: 0 0 auto;
        min-width: 100px;
        max-width: none;
        margin: 0;
        padding: 0.6rem 0.8rem;
    }
    
    .tab-button span {
        font-size: 0.75rem;
    }
    
    .service-gallery {
        grid-template-columns: 1fr;
    }
}

/* Marquee Section Styles */
.marquee-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.marquee-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #c0c0c0;
    font-size: 1.5rem;
    font-weight: 600;
}

.marquee-container {
    overflow: hidden;
    background: transparent;
    padding: 1.5rem 0;
}

.marquee {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    padding: 0.5rem;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #555;
    transition: all 0.3s ease;
}

.marquee-item:hover {
    border-color: #fd0606;
    transform: scale(1.1);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* CTA Button Styles */
.cta-section {
    text-align: center;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fd0606, #ff4757);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #ff4757, #fd0606);
}

@media (max-width: 768px) {
    .marquee-section {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .marquee-item {
        width: 110px;
        height: 110px;
    }
    
    .marquee-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .marquee {
        gap: 1rem;
        animation: scroll 20s linear infinite;
    }
    
    .cta-button {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
        width: 80%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .marquee-section {
        margin-top: 1.5rem;
        padding: 0.8rem 0;
    }
    
    .marquee-item {
        width: 100px;
        height: 100px;
    }
    
    .marquee-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .marquee {
        gap: 0.8rem;
        animation: scroll 15s linear infinite;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 280px;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    .marquee-section {
        margin-top: 1rem;
        padding: 0.5rem 0;
    }
    
    .marquee-item {
        width: 90px;
        height: 90px;
    }
    
    .marquee-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .marquee {
        gap: 0.7rem;
        animation: scroll 12s linear infinite;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        width: 95%;
        max-width: 250px;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.9), rgba(192, 192, 192, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.portfolio-info {
    text-align: center;
    color: #000;
}

.portfolio-info h4 {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.1), rgba(192, 192, 192, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #fd0606;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.contact-icon {
    font-size: 3rem;
    color: #fd0606;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif; /* Changed from 'Cinzel', serif */
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: #fd0606;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #c0c0c0;
    text-shadow: 0 0 10px #fd0606;
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
        color: #999;
        text-align: center;
        margin: 0 auto;
    }

    .footer p span {
        color: #fd0606;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .footer p span:hover {
        color: #ff4757;
        text-shadow: 0 0 10px rgba(253, 6, 6, 0.5);
        transform: scale(1.05);
        display: inline-block;
    }


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(220, 20, 60, 0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(220, 20, 60, 0.8), 0 0 30px rgba(220, 20, 60, 0.6);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-logo span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Hover effects for interactive elements */
a, button, .service-card, .portfolio-item, .contact-card {
    cursor: none;
}

a:hover ~ .cursor,
button:hover ~ .cursor,
.service-card:hover ~ .cursor,
.portfolio-item:hover ~ .cursor,
.contact-card:hover ~ .cursor {
    transform: scale(1.5);
    border-color: #fd0606;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(253, 6, 6, 0.1), rgba(192, 192, 192, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #fd0606;
    box-shadow: 0 20px 40px rgba(253, 6, 6, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: #fd0606;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #c0c0c0;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Portfolio Section (renamed from services) */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.portfolio-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive updates */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .portfolio-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0;
    }
    
    .tab-button {
        padding: 0.6rem 0.8rem;
        min-width: auto;
        width: 100%;
    }
    
    .tab-button span {
        font-size: 0.7rem;
    }
    
    .tab-button i {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem 1.2rem;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
     .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0;
    }
    
    .tab-button {
        width: 100%;
        min-width: auto;
        margin: 0;
        padding: 0.5rem 0.6rem;
    }
    
    .tab-button span {
        font-size: 0.65rem;
    }
    
    .tab-button i {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.3rem 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
}