/* style.css - Complete Premium Styles */

/* YEH LINE SABSE IMPORTANT HAI - START MEIN LAGAO */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
/* YAHAN TAK COPY KARO */

:root {
    --primary: #ffffff;
    --secondary: #888888;
    --background: #030303;
    --background-light: #080808;
    --border: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #fff, #888);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ... baaki ka code waisa hi rahega ... */
/* style.css - Complete Premium Styles */

:root {
    --primary: #ffffff;
    --secondary: #888888;
    --background: #030303;
    --background-light: #080808;
    --border: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #fff, #888);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--background);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--primary);
}

.logo span {
    font-weight: 600;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-btn {
    color: var(--primary);
    font-size: 18px;
}

.menu-btn {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-btn span {
    width: 100%;
    height: 1px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, #000);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
}

.hero-title {
    font-size: 8vw;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -5px;
    margin-bottom: 40px;
}

.hero-title .stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.hero-title .gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover {
    color: var(--background);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary);
    color: var(--background);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--background);
}

.btn-outline {
    border: none;
    padding: 0;
}

.btn-outline i {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-outline:hover i {
    background: var(--primary);
    color: var(--background);
}

.btn-large {
    padding: 20px 60px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scroll 2s ease infinite;
}

/* Marquee */
.marquee {
    background: var(--background-light);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--secondary);
    padding-right: 50px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Sections */
.categories,
.featured-work,
.process,
.testimonials,
.latest-news,
.about-section,
.team-section,
.contact-section {
    padding: 100px 0;
    background: var(--background);
}

.process,
.testimonials,
.team-section {
    background: var(--background-light);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--secondary);
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    margin-top: 10px;
}

.section-number {
    font-size: 80px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.view-all:hover {
    gap: 15px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    perspective: 1500px;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.category-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.card-back {
    transform: rotateY(180deg);
    background: var(--primary);
    color: var(--background);
}

.card-back ul {
    list-style: none;
}

.card-back li {
    margin-bottom: 10px;
    font-size: 14px;
}

.category-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--secondary);
    font-size: 14px;
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.work-item {
    overflow: hidden;
    border-radius: 20px;
}

.work-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.8s, filter 0.5s;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.5s;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-category {
    font-size: 12px;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.work-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.work-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    gap: 40px;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
}

.process-step:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateX(20px);
}

.step-number {
    font-size: 60px;
    font-weight: 200;
    color: rgba(255,255,255,0.1);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--secondary);
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    gap: 20px;
}

.step-details span {
    font-size: 12px;
    padding: 5px 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--background-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 60px;
    font-weight: 200;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Testimonials */
.testimonial-nav {
    display: flex;
    gap: 20px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav button:hover {
    background: var(--primary);
    color: var(--background);
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text i {
    font-size: 40px;
    color: var(--border);
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 12px;
    color: var(--secondary);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: rgba(0,0,0,0.8);
    color: var(--primary);
    font-size: 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.news-content h3 a {
    color: var(--primary);
    text-decoration: none;
}

.news-content p {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(135deg, #000, #0a0a0a);
}

.cta-title {
    font-size: 5vw;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    font-weight: 600;
}

.footer-info p {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--secondary);
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 14px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: rgba(255,255,255,0.3);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--primary);
    color: var(--background);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Page Header */
.page-header {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, #000, #0a0a0a);
    text-align: center;
}

.page-title {
    font-size: 6vw;
    font-weight: 300;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 20px;
}

.about-image {
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 12px;
    color: var(--secondary);
    letter-spacing: 1px;
}

/* Portfolio Filter */
.portfolio-header {
    padding: 150px 0 50px;
    text-align: center;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--secondary);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--background);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary);
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--secondary);
    text-decoration: none;
    font-size: 16px;
}

/* Contact Form */
.contact-form {
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255,255,255,0.3);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--background);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design - YE PURANA CODE HATHAO */
@media (max-width: 1200px) {
    /* ... old code ... */
}

@media (max-width: 768px) {
    /* ... old code ... */
}

/* ISKI JAGAH YEH NAYA CODE LAGAO */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 6vw;
    }
    
    .categories-grid,
    .work-grid,
    .team-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Navigation Fix */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .menu-btn {
        display: flex !important;
    }
    
    /* Hero Section Fix */
    .hero {
        padding: 0 20px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 12vw;
        letter-spacing: -2px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Grid Fixes */
    .categories-grid,
    .work-grid,
    .team-grid,
    .news-grid,
    .footer-grid,
    .about-grid,
    .contact-grid,
    .pricing-grid,
    .types-grid,
    .steps-container,
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Category Cards Fix */
    .category-card {
        height: 250px;
    }
    
    .card-front,
    .card-back {
        padding: 25px;
    }
    
    /* Work Items Fix */
    .work-image {
        height: 300px;
    }
    
    .work-overlay {
        padding: 25px;
    }
    
    .work-title {
        font-size: 20px;
    }
    
    /* Process Steps Fix */
    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .step-number {
        font-size: 40px;
    }
    
    /* Stats Fix */
    .stats-grid {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    /* Testimonials Fix */
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text p {
        font-size: 18px;
    }
    
    /* News Cards Fix */
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    /* CTA Section Fix */
    .cta-section {
        padding: 80px 20px;
    }
    
    .cta-title {
        font-size: 10vw;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Contact Form Fix */
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-item i {
        margin: 0 auto;
    }
    
    /* Footer Fix */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Back to Top Fix */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Service Cards Fix */
    .service-main-card {
        grid-template-columns: 1fr !important;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .service-main-card.reverse {
        direction: ltr;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto;
    }
    
    .service-content h2 {
        font-size: 28px;
    }
    
    .service-features li {
        text-align: left;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-tag {
        font-size: 12px;
        padding: 5px 15px;
    }
    
    /* Pricing Cards Fix */
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .price {
        font-size: 36px;
    }
    
    /* Section Headers Fix */
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-number {
        font-size: 60px;
    }
    
    .page-title {
        font-size: 12vw;
    }
    
    .page-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    /* Team Section Fix */
    .team-member img {
        height: 250px;
    }
    
    /* Marquee Fix */
    .marquee {
        padding: 20px 0;
    }
    
    .marquee-content span {
        font-size: 12px;
        padding-right: 30px;
    }
    
    /* Scroll Indicator Fix */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-line {
        height: 60px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 14vw;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    .category-card {
        height: 220px;
    }
    
    .card-front,
    .card-back {
        padding: 20px;
    }
    
    .category-icon {
        font-size: 30px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    .work-image {
        height: 250px;
    }
    
    .step-number-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .newsletter-form-large {
        flex-direction: column;
    }
    
    .newsletter-form-large input,
    .newsletter-form-large button {
        width: 100%;
    }
}