/* CSS Variables for Theme */
:root {
    /* Light Mode Colors */
    --bg-primary: linear-gradient(135deg, rgba(43, 103, 119, 0.8) 0%, rgba(82, 171, 152, 0.8) 100%);
    --bg-secondary: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --accent-color: #52ab98;
    --accent-secondary: #c8d8e4;
    --card-bg: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(43, 103, 119, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg,
            #2b6777 0%,
            #52ab98 50%,
            #c8d8e4 100%),
        radial-gradient(circle at 20% 80%, rgba(43, 103, 119, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(82, 171, 152, 0.3) 0%, transparent 50%);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    transition: all 0.3s ease;
}

/* Iframe Compatibility */
html {
    height: 100%;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border-radius: 10px;
}

/* Navigation */
.navbar {
    position: static;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6777;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(43, 103, 119, 0.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

/* T-Shirt Showcase Styles */
.tshirt-showcase {
    padding-right: 70px !important;
    padding-left: 70px !important; 
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tshirt-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.tshirt-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 2rem auto 3rem;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(43, 103, 119, 0.3);
    background: linear-gradient(135deg, rgba(43, 103, 119, 0.1), rgba(82, 171, 152, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tshirt-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(43, 103, 119, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: 1;
    touch-action: pan-y;
}

.tshirt-slide:first-child {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.tshirt-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/SVG TSHIRT BOX-BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.tshirt-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(82, 171, 152, 0.08));
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mockup-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 20px 35px rgba(43, 103, 119, 0.4));
    display: block;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tshirt-info {
    display: none;
}

.slider-controls {
    position: relative;
    width: 100%;
    height: 0;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: -250px;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(43, 103, 119, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 216, 228, 0.3);
    pointer-events: auto;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(82, 171, 152, 0.5);
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.slider-btn i {
    transition: transform 0.3s ease;
}

.slider-btn:hover i {
    transform: scale(1.2);
}

.slider-dots {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    pointer-events: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .tshirt-showcase {
        padding-right: 15px !important;
        padding-left: 15px !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    /* Full width container on mobile */
    .tshirt-showcase .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Full width slider on mobile */
    .tshirt-slider {
        width: 100%;
        height: 300px; /* Fixed height for mobile */
        margin: 1.5rem 0;
        border-radius: 15px;
        left: 0;
        right: 0;
        overflow: hidden;
    }
    
    /* Adjust slides for mobile */
    .tshirt-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        touch-action: pan-y;
        border-radius: 15px;
    }
    
    /* Make images fit properly on mobile */
    .mockup-image {
       max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: fill;
        border-radius: 10px;
    }
    
    /* Hide slider buttons on mobile */
    .slider-btn {
        display: none;
    }
    
    /* Hide dots on mobile */
    .slider-dots {
        display: none;
    }
    
    /* Hide controls container on mobile */
    .slider-controls {
        display: none;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .tshirt-slider {
        height: 250px; /* Smaller height for very small screens */
    }
    
    .mockup-image {
        max-width: 100%;
        max-height: 100%;
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.nav-link {
    color: #2b6777;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(82, 171, 152, 0.3);
    transform: translateY(-2px);
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hamburger Menu Animation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2b6777;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: #2b6777;
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(82, 171, 152, 0.2);
        transform: translateY(-2px);
        color: #2b6777;
    }
    
    .nav-link::after {
        background: linear-gradient(45deg, #52ab98, #c8d8e4);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 80%;
    }
}
@media (max-width: 480px) {
    .nav-menu {
        width: 85%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 5px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 50%, #c8d8e4 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

/* Before/After Slider Styles */
.before-after-slider {
    width: 100%;
    max-width: 1400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    will-change: clip-path;
    backface-visibility: hidden;
    transform: translateZ(0);
}

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

.image-label {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.before-label {
    left: 15px;
    background: linear-gradient(45deg, #2b6777, #52ab98);
}

.after-label {
    right: 15px;
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 20;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2b6777, #52ab98);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(43, 103, 119, 0.3);
    border: 2px solid rgba(82, 171, 152, 0.3);
    transition: all 0.3s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-button i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(43, 103, 119, 0.3);
    text-align: left;
}

.gradient-text {
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

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

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    color: white;
    box-shadow: 0 10px 30px rgba(43, 103, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 103, 119, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.glow-btn {
    position: relative;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.glow-btn:hover::before {
    left: 100%;
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 1.5rem;
    z-index: 10;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: grab;
    user-select: none;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.slider-container:active {
    cursor: grabbing;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    transition: clip-path 0.3s ease;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2b6777, #52ab98);
    transform: translateX(-50%);
    z-index: 20;
    cursor: grab;
    will-change: left;
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%);
    z-index: 15;
}

.slider-description {
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-description p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(43, 103, 119, 0.2), rgba(82, 171, 152, 0.2));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

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

/* Sections */
.container {
     /* padding-left: 70px !important;
    padding-right: 70px !important; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.container-sections {
    padding-left: 70px !important;
    padding-right: 70px !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 1rem auto;
    color: white;
    display: block;
}

#tshirt-showcase .section-title,
#pricing .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    padding: 0;
    border-radius: 0;
    display: block;
    width: auto;
    margin: 0 0 1rem 0;
    backdrop-filter: none;
    box-shadow: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
}

#tshirt-showcase .section-subtitle {
    color: white;
}

.section-description {
    text-align: center;
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
    font-weight: 400;
}

/* Vector Info Section */
.detailed-artwork {
    padding: 60px 0;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
    position: relative;
    overflow: hidden;
}

.detailed-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.detailed-artwork .container {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.detailed-artwork .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.artwork-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.artwork-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.artwork-image {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
}

.showcase-image {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.artwork-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.artwork-image:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* Responsive Fix */
@media (max-width: 768px) {
    .artwork-content h2 {
        font-size: 1.8rem;  /* Heading chhoti */
    }

    .artwork-content p {
        font-size: 1rem;   /* Text chhota */
        line-height: 1.5;
    }

    .showcase-image {
        max-width: 100%;   /* Mobile par image full width */
        border-radius: 15px;
    }

    .detailed-artwork .container {
        padding: 25px 20px;  /* Thoda compact layout */
    }
}

@media (max-width: 480px) {
    .artwork-content h2 {
        font-size: 1.5rem;  
    }

    .artwork-content p {
        font-size: 0.95rem;
    }

    .showcase-image {
        max-width: 100%;  
    }
}

/* Discount Section */
.discount-section {
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 50%, #c8d8e4 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease-in-out infinite;
}

.discount-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.3"/><circle cx="10" cy="40" r="0.5" fill="%23ffff00" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>') repeat;
    pointer-events: none;
    animation: sparkle 3s linear infinite;
}

.discount-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(43, 103, 119, 0.4);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #2b6777, #52ab98);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 20px rgba(43, 103, 119, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.discount-badge:hover::before {
    left: 100%;
}

.discount-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(82, 171, 152, 0.6);
    animation: shake 0.5s ease-in-out;
}

.discount-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.discount-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: white;
    opacity: 0.95;
}

.discount-code {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    display: inline-block;
}

.discount-code .code {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c8d8e4;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.discount-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.discount-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.discount-features .feature-item:nth-child(1) { animation-delay: 0.1s; }
.discount-features .feature-item:nth-child(2) { animation-delay: 0.2s; }
.discount-features .feature-item:nth-child(3) { animation-delay: 0.3s; }

.discount-features .feature-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.discount-features .feature-item i {
    color: #c8d8e4;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.discount-features .feature-item span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.discount-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.discount-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.discount-buttons .btn-primary {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(43, 103, 119, 0.4);
}

.discount-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(82, 171, 152, 0.6);
    animation: shake 0.5s ease-in-out;
}

.discount-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.discount-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
/* Services Section - Fixed Grid Layout */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
    color: white;
}

.services .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns on desktop */
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 103, 119, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(43, 103, 119, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 55px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 12px;
}

.service-card:nth-child(1)::after {
    background-image: url('Raster to Scalable Vector.png');
}

.service-card:nth-child(2)::after {
    background-image: url('Color Seperation.jpg');
}

.service-card:nth-child(3)::after {
    background-image: url('Logo Designs.png');
}

.service-card:nth-child(4)::after {
    background-image: url('Line art PNG.png');
}

.service-card:nth-child(5)::after {
    background-image: url('Realistic Face Vector.png');
}

.service-card:nth-child(6)::after {
    background-image: url('Service box Image.png'); /* Add this image */
}

.service-card:hover {
    opacity: 0.8;
    border: 2px solid rgba(82, 171, 152, 0.4);
    transition: all 0.3s ease;
}

.service-card h3 {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 6px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    margin: 0;
    z-index: 3;
    text-align: center;
    white-space: nowrap;
}

.service-features {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(43, 103, 119, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #2b6777;
}

/* Responsive adjustments for services grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        height: 200px;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .service-card {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
        bottom: 12px;
    }
}

.feature-tag {
    background: rgba(43, 103, 119, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #2b6777;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Updated Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns for desktop */
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Tablet Responsive Styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .why-choose-us {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
    text-align: center;
}

.pricing .section-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid #fff;
    background: rgba(255,255,255,0.25);
}

/* Pricing Header */
.pricing-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.price .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    color: #fff;
    margin: 0.6rem 0;
    font-size: 1rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    color: #2b6777;
    background: #fff;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .pricing .section-title {
        font-size: 1.8rem;
    }
    .pricing .section-subtitle {
        font-size: 1rem;
    }
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing .section-title {
        font-size: 1.5rem;
    }
    .pricing .section-subtitle {
        font-size: 0.95rem;
    }
    .pricing-card {
        padding: 1.5rem 1rem;
    }
}

/* Special Offer Box */
.special-offer-box {
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 50%, #c8d8e4 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    margin: 1.5rem auto 2rem;
    max-width: 600px;
    box-shadow: 0 15px 30px rgba(43, 103, 119, 0.4);
    overflow: hidden;
    animation: glow 3s ease-in-out infinite alternate;
}

.special-offer-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2b6777, #52ab98, #2b6777, #52ab98);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

.special-offer-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: inline-block;
    backdrop-filter: blur(10px);
    animation: bounce 2s ease-in-out infinite;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.offer-code {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.code-label {
    color: white;
    font-size: 0.8rem;
    margin-right: 0.4rem;
}

.code-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-btn {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(43, 103, 119, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.offer-btn:hover::before {
    left: 100%;
}

.offer-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(43, 103, 119, 0.4);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 15px 30px rgba(43, 103, 119, 0.4); }
    50% { box-shadow: 0 20px 40px rgba(82, 171, 152, 0.6); }
}

@keyframes borderGlow {
    0%, 100% { background: linear-gradient(45deg, #2b6777, #52ab98, #2b6777, #52ab98); }
    50% { background: linear-gradient(45deg, #52ab98, #2b6777, #52ab98, #2b6777); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    box-shadow: 0 10px 25px rgba(43, 103, 119, 0.15);
}

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

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(43, 103, 119, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

.pricing-card.featured {
    transform: scale(1.03);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 25px rgba(82, 171, 152, 0.3);
    background: rgba(255, 255, 255, 0.98);
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.03);
    border: 2px solid #52ab98;
    box-shadow: 0 12px 25px rgba(82, 171, 152, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #52ab98, #2b6777);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(82, 171, 152, 0.4);
    animation: pulse 2s infinite;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(43, 103, 119, 0.1);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2b6777;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.currency {
    font-size: 1.2rem;
    color: #52ab98;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2b6777;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #52ab98;
    font-weight: 600;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #2b6777;
    font-size: 1rem;
    font-weight: 500;
    list-style: none;
}

.pricing-features i {
    color: #52ab98;
    font-size: 1rem;
    width: 18px;
    flex-shrink: 0;
    line-height: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: #2b6777;
}

.feature i {
    color: #52ab98;
    font-size: 0.9rem;
    width: 14px;
    flex-shrink: 0;
    line-height: 1;
}

.feature span {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
    flex: 1;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #2b6777, #52ab98);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 6px 15px rgba(43, 103, 119, 0.2);
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 103, 119, 0.3);
}

.simple-btn {
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
    box-shadow: 0 4px 12px rgba(82, 171, 152, 0.4);
}

.simple-btn:hover {
    background: linear-gradient(45deg, #c8d8e4, #52ab98);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(82, 171, 152, 0.6);
}

.average-btn {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    box-shadow: 0 4px 12px rgba(43, 103, 119, 0.4);
}

.average-btn:hover {
    background: linear-gradient(45deg, #52ab98, #2b6777);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(43, 103, 119, 0.6);
}

.intermediate-btn {
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
}

.intermediate-btn:hover {
    box-shadow: 0 8px 20px rgba(82, 171, 152, 0.4);
}

.complex-btn {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    box-shadow: 0 4px 12px rgba(43, 103, 119, 0.4);
}

.complex-btn:hover {
    background: linear-gradient(45deg, #52ab98, #2b6777);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(43, 103, 119, 0.6);
}

.realistic-btn {
    background: linear-gradient(45deg, #c8d8e4, #f2f2f2);
    color: #2b6777;
}

.realistic-btn:hover {
    box-shadow: 0 8px 20px rgba(200, 216, 228, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.pricing-card.simple,
.pricing-card.average,
.pricing-card.intermediate,
.pricing-card.complex,
.pricing-card.realistic {
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
    display: flex;
    flex-direction: column;
}

.pricing-card.intermediate {
    transform: scale(1.03);
    border: 2px solid #52ab98;
}
/* Portfolio Section */
.portfolio {
        /* padding-right: 70px !important;
    padding-left: 70px !important; */
    padding: 4rem 0;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 30%, #c8d8e4 60%, #f2f2f2 100%);
    position: relative;
    overflow: hidden;
}

.portfolio .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(43,103,119,0.3);
}

.portfolio .section-subtitle {
    color: white;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* Carousel */
.vector-showcase-carousel {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    height: 450px;
    margin: 1.5rem auto 3rem;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(43,103,119,0.3);
}

.carousel-container {
        background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
    padding: 1rem;
}

.carousel-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.carousel-item.left-item,
.carousel-item.right-item {
    width: 280px;
    height: 350px;
    opacity: 0.7;
    transform: scale(0.85);
    z-index: 1;
}

.carousel-item.center-item {
    
    width: 380px;
    height: 450px;
    opacity: 1;
    transform: scale(1);
    z-index: 3;
    box-shadow: 0 15px 35px rgba(43,103,119,0.4);
}

.carousel-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 12px 20px rgba(43,103,119,0.3));
}

/* Carousel Nav */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg,#2b6777,#52ab98);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
}
.carousel-nav.prev-btn { left: -60px; }
.carousel-nav.next-btn { right: -60px; }

/* Dots */
.carousel-dots {
    display: none; /* default hidden, show for mobile */
    justify-content: center;
    margin-top: 10px;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.carousel-dots .dot.active { background: #52ab98; }

/* Responsive */
@media screen and (max-width: 767px) {
    .carousel-container { flex-direction: column;     background: white;}
    .carousel-item { width: 90%; height: auto; margin-bottom: 20px; }
    .carousel-item.left-item, .carousel-item.center-item, .carousel-item.right-item {
        width: 100%;
        height: auto;
        transform: scale(1);
        opacity: 1;
    }
    .carousel-nav.prev-btn { left: 10px; }
    .carousel-nav.next-btn { right: 10px; }
    .carousel-dots { display: flex; }
    
}


/* Contact Section */
.contact {
    padding: 4rem 0;
    color: white;
}

.contact .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Updated Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #c8d8e4, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    text-align: left;
}

.contact-details p {
    opacity: 0.9;
    text-align: left;
}

.payment-brands-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-brands-section h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.payment-brands {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-brand {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px;
}

.payment-brand:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.payment-logo {
    width: 45px;
    height: 27px;
    display: block;
    transition: all 0.3s ease;
}

.payment-brand:hover .payment-logo {
    filter: brightness(1.1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.social-media-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media-section h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.social-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover .social-icon-img {
    opacity: 1;
    transform: scale(1.1);
}

.social-link-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover .social-link-img {
    opacity: 1;
    transform: scale(1.1);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-icon.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Removed max-width and margin: 0 auto to fit in grid column */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for form row */
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    text-align: left;
}

.form-help {
    display: block;
    color: white;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    line-height: 1.3;
    text-align: left;
}

.file-upload-area {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    pointer-events: none;
}

.file-upload-content i {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.4rem;
}

.file-upload-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* File Preview Styles */
.file-preview-container {
    margin-top: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.file-preview-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.file-preview-header i {
    color: #00d4ff;
}

.file-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.file-preview-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.file-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 6px;
    color: white;
    font-size: 1.2rem;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.file-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.8rem;
    word-break: break-word;
}

.file-size {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.file-remove {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center !important;
}

.file-remove:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: scale(1.1);
}

.get-quote-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Stack columns on mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left; /* Ensure grid content is left-aligned */
    }
    
    /* Reset alignment for entire contact section */
    .contact {
        text-align: left;
    }
    
    /* Ensure form is properly aligned */
    .contact-form {
        width: 100%;
        margin: 0;
        text-align: left;
        float: none;
        display: block;
        direction: ltr;
        box-sizing: border-box;
        clear: both;
        padding: 1.5rem;
    }
    
    /* Ensure all form elements are left-aligned */
    .form-group,
    .form-group label,
    .form-help,
    .file-upload-area,
    .file-upload-content,
    .file-preview-container,
    .file-preview-header,
    .file-preview-list,
    .file-preview-item,
    .file-info,
    .file-name,
    .file-size {
        text-align: left;
        direction: ltr;
    }
    
    /* Ensure form inputs are left-aligned */
    .form-group input,
    .form-group select,
    .form-group textarea {
        text-align: left;
        direction: ltr;
    }
    
    /* Adjust form for mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Adjust contact info for mobile */
    .contact-item {
        padding: 1rem;
        text-align: left;
    }
    
    .contact-details h4,
    .contact-details p {
        text-align: left;
    }
    
    /* Keep these centered as intended */
    .payment-brands-section,
    .social-media-section {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        text-align: center;
    }
    
    /* Ensure button is properly aligned */
    .get-quote-btn {
        text-align: center;
    }
    
    /* Fix discount section alignment */
    .discount-section {
        text-align: left;
    }
    
    .discount-input-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .apply-discount-btn {
        align-self: flex-start;
    }
    
    .discount-status {
        text-align: left;
    }
    
    .discount-help {
        text-align: left;
    }
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #c8d8e4, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.8rem;
    text-align: left;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #c8d8e4, #ffffff);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Service Pages Styles */
.service-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.service-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.service-icon-large {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.8rem;
    animation: float 3s ease-in-out infinite;
}

.service-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.8rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-weight: 500;
}

.feature-item i {
    font-size: 1rem;
    color: white;
}
/* 
.examples-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.example-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.example-placeholder {
    height: 160px;
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: white;
}

.example-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
} */

/* Silhouette Gallery - Slider Style */
.silhouette-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(30, 144, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 0.8rem;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 0.4rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
    transform: scale(1.2);
}

.gallery-item {
    position: absolute;
    width: 48%;
    height: 400px;
    opacity: 0;
    transform: translateX(80px) scale(0.8);
    transition: all 0.5s ease;
}

.gallery-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.gallery-item.active:nth-child(odd) {
    left: 1%;
}

.gallery-item.active:nth-child(even) {
    right: 1%;
}

.gallery-item.active.second {
    right: 1%;
    left: auto;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item.active .gallery-placeholder {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-placeholder:hover {
    transform: scale(1.03);
}

.gallery-placeholder i {
    font-size: 3rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 1.0);
}

.gallery-item.active .gallery-image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-image:hover {
    transform: scale(1.03);
}

.process-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
}

.process-section .section-title {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.step h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #52ab98, #2b6777);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 0.8rem;
}

.examples-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
}

.examples-section .section-title {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.examples-section .section-subtitle {
    color: white;
}

/* No Examples Message Styling */
.no-examples-message {
    text-align: center;
    padding: 40px 15px;
    background: linear-gradient(135deg, rgba(82, 171, 152, 0.1), rgba(43, 103, 119, 0.1));
    border-radius: 15px;
    border: 2px dashed rgba(82, 171, 152, 0.3);
    margin: 15px 0;
}

.no-examples-message h3 {
    color: #2b6777;
    font-size: 1.5rem;
    margin: 0.8rem 0 0.4rem 0;
    font-weight: 600;
}

.no-examples-message p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Mockup Showcase Styles */
.mockup-showcase {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(43, 103, 119, 0.1), rgba(82, 171, 152, 0.1));
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(43, 103, 119, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mockup-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.mockup-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center;
    border-radius: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 8px 20px rgba(43, 103, 119, 0.4));
}

.mockup-image:hover {
    transform: scale(1.02);
}

.mockup-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 15;
}

.mockup-nav-btn {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(43, 103, 119, 0.5);
    pointer-events: auto;
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
}

.mockup-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(82, 171, 152, 0.5);
    background: linear-gradient(45deg, #52ab98, #c8d8e4);
}

.mockup-nav-btn:active {
    transform: scale(0.95);
}

.mockup-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    align-items: center;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(43, 103, 119, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.indicator.active {
    background: linear-gradient(45deg, #2b6777, #52ab98);
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(43, 103, 119, 0.4);
}

.indicator:hover {
    background: rgba(82, 171, 152, 0.6);
    transform: scale(1.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure pricing buttons maintain color when visited */
a.pricing-btn:visited,
a.pricing-btn:active {
    color: white;
}

/* Discount Code Section Styling */
.discount-section {
    background: linear-gradient(135deg, #2b6777 0%, #52ab98 100%);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.2rem 0;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    animation: discountGlow 3s ease-in-out infinite alternate;
}

.discount-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2b6777, #52ab98, #c8d8e4, #2b6777);
    border-radius: 12px;
    z-index: -1;
    animation: borderShine 4s linear infinite;
}

.discount-section label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    display: block;
}

.discount-input-container {
    display: flex;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.discount-input-container input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discount-input-container input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: scale(1.01);
}

.apply-discount-btn {
    padding: 10px 15px;
    background: linear-gradient(45deg, #2b6777 0%, #52ab98 100%);
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(43, 103, 119, 0.3);
}

.apply-discount-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px rgba(82, 171, 152, 0.4);
    background: linear-gradient(45deg, #52ab98 0%, #c8d8e4 100%);
}

.apply-discount-btn:active {
    transform: translateY(0) scale(0.98);
}

.discount-status {
    min-height: 25px;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.discount-status.success {
    color: #4ade80;
    animation: successPulse 0.6s ease;
}

.discount-status.error {
    color: #f87171;
    animation: errorShake 0.6s ease;
}

.discount-help {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.85rem;
    margin: 0;
}

.discount-help strong {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

/* Discount Animations */
@keyframes discountGlow {
    0% { box-shadow: 0 0 15px rgba(102, 126, 234, 0.3); }
    100% { box-shadow: 0 0 20px rgba(118, 75, 162, 0.5); }
}

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

@keyframes successPulse {
    0% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Loading animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Contact Section Fixes */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left; /* Ensure grid content is left-aligned */
    }
    
    .contact {
        text-align: left;
    }
    
    .contact-form {
        width: 100%;
        margin: 0;
        text-align: left;
        float: none;
        display: block;
        direction: ltr;
        box-sizing: border-box;
        clear: both;
        padding: 1.5rem;
    }
    
    /* Form elements alignment */
    .form-group,
    .form-group label,
    .form-help,
    .file-upload-area,
    .file-upload-content,
    .file-preview-container,
    .file-preview-header,
    .file-preview-list,
    .file-preview-item,
    .file-info,
    .file-name,
    .file-size {
        text-align: left;
        direction: ltr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        text-align: left;
        direction: ltr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1rem;
        text-align: left;
    }
    
    .contact-details h4,
    .contact-details p {
        text-align: left;
    }
    
    .payment-brands-section,
    .social-media-section {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        text-align: center;
    }
    
    .get-quote-btn {
        text-align: center;
    }
    
    /* Discount Section Fixes */
    .discount-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .discount-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .discount-badge {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .discount-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .discount-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .discount-code {
        margin: 1rem 0;
    }
    
    .discount-code .code {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .discount-features {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .discount-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .discount-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    /* Discount input container in contact form */
    .discount-section {
        text-align: left;
    }
    
    .discount-input-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .apply-discount-btn {
        align-self: flex-start;
    }
    
    .discount-status {
        text-align: left;
    }
    
    .discount-help {
        text-align: left;
    }
}
.portfolio-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.portfolio-item:nth-child(2) { animation-delay: 0.1s; }
.portfolio-item:nth-child(3) { animation-delay: 0.2s; }
.portfolio-item:nth-child(4) { animation-delay: 0.3s; }

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #2b6777, #52ab98);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 8px rgba(43, 103, 119, 0.3);
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b6777, #52ab98);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(43, 103, 119, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fab:hover {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 10px 25px rgba(82, 171, 152, 0.4);
}

.fab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.fab:hover::before {
    left: 100%;
}

.fab-menu {
    position: absolute;
    bottom: 65px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fab-item:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.fab-tooltip {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.fab-item:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-3px);
}

/* Parallax Effects */
.parallax-element {
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

/* Micro-animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.bounce-animation {
    animation: bounce 1s ease;
}

.shake-animation {
    animation: shake 0.5s ease;
}

/* Enhanced hover effects */
.portfolio-item:hover,
.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 30px rgba(43, 103, 119, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-slider {
        order: 1;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .mockup-container {
        height: 400px;
    }
    
    .mockup-navigation {
        width: calc(100% + 100px);
        left: -50px;
    }
    
    .mockup-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: #2b6777;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .tshirt-slider {
        height: 300px;
    }
    
    .tshirt-image {
        max-width: 200px;
        max-height: 200px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -200px;
    }
    
    .prev-btn {
        left: -50px;
    }
    
    .next-btn {
        right: -50px;
    }
    
    .slider-dots {
        bottom: -1.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .before-after-slider {
        max-width: 100%;
        margin: 0 auto 1rem;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slider-button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .image-label {
        font-size: 0.7rem;
        padding: 4px 8px;
        top: 10px;
    }
    
    .before-label {
        left: 10px;
    }
    
    .after-label {
        right: 10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .service-card {
        height: 200px;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .pricing-card.intermediate {
        transform: none;
        order: -1;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }
    
    .vector-showcase-carousel {
        display: none;
        height: 350px;
        margin: 1rem auto 2rem;
    }
    
    .carousel-item.left-item,
    .carousel-item.right-item {
        width: 220px;
        height: 280px;
    }
    
    .carousel-item.center-item {
        width: 300px;
        height: 350px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .vector-showcase-carousel .prev-btn {
        left: -50px;
    }
    
    .vector-showcase-carousel .next-btn {
        right: -50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.half {
        margin-bottom: 1rem;
    }
    
    .payment-brands {
        gap: 8px;
    }
    
    .payment-logo {
        width: 40px;
        height: 24px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-icon-img {
        width: 24px;
        height: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-section ul li a {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .service-hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .example-card {
        padding: 1rem;
    }
    
    .example-placeholder {
        height: 140px;
    }
    
    .silhouette-slider {
        height: 300px;
    }
    
    .gallery-item {
        width: 100%;
        height: 300px;
        opacity: 0.7;
    }
    
    .gallery-placeholder i {
        font-size: 2.5rem;
    }
    
    .gallery-controls {
        margin-top: 0.8rem;
    }
    
    .gallery-btn {
        width: 32px;
        height: 32px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .mockup-container {
        height: 350px;
        margin: 0 1rem;
    }
    
    .mockup-navigation {
        width: calc(100% + 80px);
        left: -40px;
    }
    
    .mockup-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mockup-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .fab-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fab {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .fab-item {
        width: 36px;
        height: 36px;
    }
    
    .discount-content {
        margin: 0 15px;
        padding: 25px 20px;
    }
    
    .discount-badge {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .discount-text h2 {
        font-size: 1.8rem;
    }
    
    .discount-text p {
        font-size: 1rem;
    }
    
    .discount-code .code {
        font-size: 1.3rem;
    }
    
    .discount-features {
        gap: 15px;
    }
    
    .discount-features .feature-item {
        padding: 8px 12px;
    }
    
    .discount-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .special-offer-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .offer-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .offer-description {
        font-size: 0.9rem;
    }
    
    .offer-code {
        padding: 10px 15px;
    }
    
    .code-text {
        font-size: 1.1rem;
    }
    
    .offer-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .no-examples-message {
        padding: 30px 15px;
    }
    
    .no-examples-message h3 {
        font-size: 1.3rem;
    }
    
    .no-examples-message p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .tshirt-slider {
        height: 250px;
    }
    
    .tshirt-image {
        max-width: 160px;
        max-height: 160px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: -180px;
    }
    
    .prev-btn {
        left: -40px;
    }
    
    .next-btn {
        right: -40px;
    }
    
    .slider-dots {
        bottom: -1.2rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .before-after-slider {
        height: 200px;
    }
    
    .slider-container {
                height: 230px;
    }
    
    .slider-button {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .image-label {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
        bottom: 12px;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .pricing-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .vector-showcase-carousel {
        height: 300px;
    }
    
    .carousel-item.left-item,
    .carousel-item.right-item {
        width: 180px;
        height: 230px;
    }
    
    .carousel-item.center-item {
        width: 250px;
        height: 300px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .vector-showcase-carousel .prev-btn {
        left: -40px;
    }
    
    .vector-showcase-carousel .next-btn {
        right: -40px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .file-upload-area {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
    
    .file-upload-content i {
        font-size: 1.5rem;
    }
    
    .file-upload-content p {
        font-size: 0.85rem;
    }
    
    .payment-brands {
        gap: 6px;
    }
    
    .payment-logo {
        width: 35px;
        height: 21px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .social-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .service-hero {
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .example-card {
        padding: 0.8rem;
    }
    
    .example-placeholder {
        height: 120px;
    }
    
    .example-placeholder i {
        font-size: 2rem;
    }
    
    .silhouette-slider {
        height: 250px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-placeholder i {
        font-size: 2rem;
    }
    
    .gallery-controls {
        margin-top: 0.6rem;
    }
    
    .gallery-btn {
        width: 28px;
        height: 28px;
    }
    
    .gallery-dot {
        width: 6px;
        height: 6px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .step {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .step h3 {
        font-size: 0.9rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .mockup-container {
        height: 300px;
        margin: 0 0.5rem;
    }
    
    .mockup-navigation {
        width: calc(100% + 70px);
        left: -35px;
    }
    
    .mockup-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .mockup-indicators {
        bottom: 8px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .fab-container {
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .fab {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .fab-item {
        width: 32px;
        height: 32px;
    }
    
    .discount-content {
        margin: 0 10px;
        padding: 20px 15px;
    }
    
    .discount-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .discount-text h2 {
        font-size: 1.5rem;
    }
    
    .discount-text p {
        font-size: 0.9rem;
    }
    
    .discount-code .code {
        font-size: 1.1rem;
    }
    
    .discount-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-features .feature-item {
        padding: 6px 10px;
    }
    
    .discount-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-buttons .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .special-offer-box {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .offer-badge {
        padding: 6px 15px;
        font-size: 0.7rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-description {
        font-size: 0.85rem;
    }
    
    .offer-code {
        padding: 8px 12px;
    }
    
    .code-text {
        font-size: 1rem;
    }
    
    .offer-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .no-examples-message {
        padding: 25px 10px;
    }
    
    .no-examples-message h3 {
        font-size: 1.1rem;
    }
    
    .no-examples-message p {
        font-size: 0.85rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .btn,
    .cta-button,
    .hero-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .mockup-description {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

.service-cta{
    margin-bottom:20px;
}
.service-cta > p {
    margin: 10px 0 15px !important;
}

.examples-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: visible; /* Changed to visible to show all content */
    width: 100%;
    z-index: 1;
    min-height: auto; /* Allow height to expand */
    height: auto; /* Allow height to expand */
}

.container-sections {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: visible; /* Changed to visible */
    min-height: auto; /* Allow height to expand */
    height: auto; /* Allow height to expand */
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.example-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.example-placeholder {
    height: 160px;
    background: linear-gradient(45deg, #2b6777, #52ab98);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: white;
}

.example-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
}

/* Mobile grid layout for service carousels */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

/* Special grid layout for mockup carousel - single column */
.mockup-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

/* Special grid layout for portfolio carousel - 2 columns */
/* Special grid layout for portfolio carousel - 2 columns */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 15px;
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}



.service-grid-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

/* Special styling for mockup grid items */
.mockup-grid .service-grid-item {
    padding-bottom: 75%; /* 4:3 aspect ratio for mockup images */
    max-width: 100%;
    margin: 0 auto;
}

/* Special styling for portfolio grid items */
.portfolio-grid .service-grid-item {
    padding-bottom: 100%; /* 1:1 aspect ratio for portfolio images */
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


.service-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 5px;
    box-sizing: border-box;
}


/* Special styling for portfolio grid images */
.portfolio-grid .service-grid-image {
    padding: 8px;
    border-radius: 8px;
}


/* Mockup Showcase Styles */
/* .mockup-showcase {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: visible;
} */

/* .mockup-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
} */

 /* .mockup-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}  */

/* .mockup-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.mockup-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.mockup-nav-btn {
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.mockup-nav-btn:hover {
    background: rgba(255,255,255,0.9);
}

.mockup-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
}

/* Portfolio Carousel Styles */
#main-carousel {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: visible;
}

#carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}
/* Portfolio section styling */
.portfolio {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.portfolio .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.portfolio .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #fff;
}

.portfolio .section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    /* color: #666; */
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .examples-section {
        padding: 40px 0;
        overflow: visible;
    }
    
    .examples-section .vector-showcase-carousel,
    .examples-section .mockup-showcase,
    .examples-section #main-carousel {
        min-height: auto;
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow: visible;
    }
    
    .examples-section .container-sections {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow: visible;
        position: relative;
        z-index: 2;
    }
    
    .service-grid {
        max-width: 100%;
        overflow: visible;
        margin-bottom: 50px;
    }
    
    /* .mockup-grid {
        max-width: 100%;
        overflow: visible;
        margin-bottom: 50px;
    } */
     .portfolio {
        padding: 40px 0;
    }
     .portfolio .section-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .portfolio .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
   .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 8px;
        margin-bottom: 40px;
        /* Increase the height of grid items */
        grid-auto-rows: minmax(180px, auto);
    }
    .portfolio-grid .service-grid-item {
        padding-bottom: 0;
        height: 180px; /* Fixed height for mobile */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-grid .service-grid-image {
        padding: 4px;
        object-fit: cover; /* Changed from contain to cover for better mobile display */
        border-radius: 6px;
    }
    
    /* .mockup-container {
        display: none;
    }
    
    .mockup-nav-btn {
        display: none;
    }
    
    .mockup-indicators {
        display: none;
    } */
    
    #carousel-dots {
        display: none;
    }
    
    #vector-prev,
    #vector-next {
        display: none;
    }
    
    /* Ensure portfolio carousel container is hidden on mobile */
    #main-carousel .carousel-container {
        display: none;
    }
    
    @media (max-width: 480px) {
        .service-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 5px;
            margin-bottom: 60px;
        }
        
        .mockup-grid {
            gap: 15px;
            padding: 0 5px;
            margin-bottom: 60px;
        }
        
         .portfolio-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            padding: 0 5px;
            margin-bottom: 30px;
            /* Further increase height for smaller screens */
            grid-auto-rows: minmax(150px, auto);
        }
        
        .service-grid-image {
            padding: 3px;
        }
        
        .mockup-grid .service-grid-item {
            padding-bottom: 75%; /* Maintain aspect ratio */
        }
        
       
        
        .portfolio-grid .service-grid-item {
            height: 150px; /* Smaller fixed height for very small screens */
            border-radius: 6px;
        }
        
        .portfolio-grid .service-grid-image {
            padding: 3px;
            border-radius: 4px;
        }
    }
}