/*!
Theme Name: JGDesign
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: jgdesign
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

JGDesign is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/*services css*/
:root {
    --primary: #C6034B;
    --primary-light: #fbeec1;
    --accent: #3BFAD4;
    --dark: #1a1a1a;
}

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


body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--primary-light);
}

.JayServicePath-font-baloo {
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Services Section */
.JayServicePath-services-section {
    padding: 80px 24px;
}

.JayServicePath-container {
    max-width: 1280px;
    margin: 0 auto;
}

.JayServicePath-header {
    text-align: center;
    margin-bottom: 64px;
}

.JayServicePath-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.JayServicePath-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.JayServicePath-service-card {
    position: relative;
}

.JayServicePath-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: var(--accent);
    color: var(--dark);
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.JayServicePath-card:hover {
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
}

.JayServicePath-card-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

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

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

.JayServicePath-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.JayServicePath-card-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.JayServicePath-card-content {
    padding: 32px;
}


.JayServicePath-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-price-section {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.JayServicePath-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-period {
    color: #6b7280;
    margin-left: 8px;
    font-family: 'Montserrat', sans-serif;
}

.JayServicePath-description {
    color: #6b7280;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.JayServicePath-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.JayServicePath-features-list li {
    display: flex;
    align-items: center;
    color: #374151;
    margin-bottom: 12px;
}

.JayServicePath-feature-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
}

.JayServicePath-btn {
    width: 100%;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.JayServicePath-btn:hover {
    background-color: var(--accent);
    transform: scale(1.05);
}

.JayServicePath-btn-icon {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

/* Individual Service Pages Styles */
.JayServicePath-full-width-header {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2em 0;
    text-align: center;
    background-color: var(--primary);
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.JayServicePath-full-width-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.JayServicePath-main-title {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.JayServicePath-intro-card {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2em;
    width: 100%;
    max-width: 800px;
    border-left: 4px solid var(--primary);
}

.JayServicePath-underline-text {
    text-decoration: underline;
    color: var(--primary);
    font-weight: 500;
}

.JayServicePath-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    width: 100%;
}

.JayServicePath-cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Baloo 2', cursive;
    font-size: 26px;
    font-weight: 800;
    color: #412234;
    background-color: #ffe29d;
    border: 3px solid var(--primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 226, 157, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-width: 250px;
    text-align: center;
}

.JayServicePath-cta-button:hover {
    background-color: var(--accent);
    color: #412234;
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 250, 212, 0.3);
}

.JayServicePath-cta-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.JayServicePath-cta-button.clicked {
    background-color: var(--accent) !important;
    color: #412234 !important;
    border-color: var(--accent) !important;
    transform: scale(0.95) !important;
}

.JayServicePath-services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    width: 100%;
    max-width: 1200px;
}

.JayServicePath-services-list {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2em;
    border-top: 4px solid var(--primary);
}

.JayServicePath-section-title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5em;
    color: #333;
    position: relative;
    padding-bottom: 0.5em;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.JayServicePath-services-ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.JayServicePath-services-ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
}

.JayServicePath-services-ul li::before {
    content: '';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
}


.JayServicePath-price-tag {
    font-size: 1.6em;
    color: #222;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5em;
    padding: 0.8em;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px dashed var(--primary);
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.JayServicePath-image-container {
    width: 80%;
    max-width: 400px;
    margin-bottom: 2em;
}

.JayServicePath-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.JayServicePath-image-caption h3 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 0.5em;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-photo-note {
    font-size: 1.1em;
    color: #555;
    margin-top: 1em;
    padding: 0 2em;
    text-align: center;
}

.JayServicePath-photo-note p {
    font-style: italic;
}

.JayServicePath-follow-up-options {
    background-color: #f8f4ed;
    padding: 1.5em;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin-top: 2em;
    text-align: left;
    width: 100%;
}

.JayServicePath-follow-up-options h4 {
    color: var(--primary);
    margin-bottom: 0.5em;
    font-size: 1.2em;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-process-preview {
    width: 100%;
    max-width: 1000px;
    margin: 3em 0;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.JayServicePath-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.JayServicePath-step {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1.5em;
    background-color: #f8f4ed;
    border-radius: 8px;
}

.JayServicePath-step-icon {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
}

.JayServicePath-step-text h4 {
    color: var(--primary);
    margin-bottom: 0.5em;
    font-size: 1.1em;
    font-family: 'Baloo 2', cursive;
}

.JayServicePath-step-text p {
    color: #666;
    font-size: 0.95em;
}

.JayServicePath-faq-preview {
    width: 100%;
    max-width: 800px;
    margin: 2em 0;
}

.JayServicePath-faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1em;
}

.JayServicePath-faq-question {
    padding: 1.5em;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 1em;
}

.JayServicePath-plus-sign {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.JayServicePath-faq-answer {
    display: none;
    padding: 0 1.5em 1.5em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .JayServicePath-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .JayServicePath-header h2 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .JayServicePath-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .JayServicePath-services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .JayServicePath-main-title {
        font-size: 2em;
    }
    
    .JayServicePath-section-title {
        font-size: 1.8em;
    }
    
    .JayServicePath-price-tag {
        font-size: 1.3em;
    }
    
    .JayServicePath-content-container {
        padding: 1.5em;
    }
    
    .JayServicePath-cta-button {
        width: 100%;
        text-align: center;
        font-size: 1em;
    }

    .JayServicePath-steps-container {
        grid-template-columns: 1fr;
    }

    .JayServicePath-step {
        flex-direction: column;
        text-align: center;
    }
}

/* Icons using SVG */
.JayServicePath-icon-zap {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.JayServicePath-icon-trending {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 7L13.5 15.5L8.5 10.5L2 17'/%3E%3Cpath d='M16 7L22 7L22 13'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.JayServicePath-icon-palette {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13.5' cy='6.5' r='.5' fill='currentColor'/%3E%3Ccircle cx='17.5' cy='10.5' r='.5' fill='currentColor'/%3E%3Ccircle cx='8.5' cy='7.5' r='.5' fill='currentColor'/%3E%3Ccircle cx='6.5' cy='12.5' r='.5' fill='currentColor'/%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.JayServicePath-icon-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Hidden sections by default */
.JayServicePath-service-detail {
    display: none;
}

.JayServicePath-service-detail.active {
    display: block;
}

/* Navigation styles */
.JayServicePath-nav-back {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s ease;
}

.JayServicePath-nav-back:hover {
    background-color: #a5023f;
    transform: scale(1.05);
}
/* WordPress aggressive full-width overrides */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.entry-content, 
.post-inner, 
.wp-block-group, 
.wp-block-cover, 
.content-area, 
#content, 
article, 
.entry, 
.site-content,
.wp-block-post-content,
.wp-site-blocks,
.wp-block-template-part,
.has-global-padding,
.alignfull,
.alignwide {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Full-width berry gradient background with pattern overlay */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 30px 5vw;
  background: linear-gradient(135deg, #C6034B 0%, #d71c5f 100%);
  position: relative;
  overflow: hidden;
}

.services-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* Service columns */
.service-column {
  position: relative;
  z-index: 1;
  flex: 0 1 220px;
  max-width: 220px;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  background: #fff;
  border-bottom: 3px solid #C6034B;
  transition: transform 0.3s ease;
}

.service-column:hover {
  transform: translateY(-3px);
}

.service-column img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.column-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #C6034B;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #fbe5ee;
}

.service-column p {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #333;
}

/* Accordion */
.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-item {
  margin-bottom: 6px;
  border: 1px solid #f0d0dc;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 8px 10px;
  background: #fbe5ee;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.85em;
  color: #8a0336;
}

.plus-sign {
  display: inline-block;
  margin-right: 6px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #C6034B;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.8em;
  color: #333;
  background: #fff;
}

.accordion-item.active .accordion-content {
  padding: 10px;
  max-height: 120px;
}

.accordion-item.active .plus-sign {
  transform: rotate(45deg);
}

.service-column:nth-child(2) {
  border-bottom-color: #d71c5f;
}

.service-column:nth-child(2) .column-title {
  color: #d71c5f;
}

.service-column:nth-child(3) {
  border-bottom-color: #e73573;
}

.service-column:nth-child(3) .column-title {
  color: #e73573;
}

/* Responsive */
@media (max-width: 768px) {
  .service-column {
    flex: 1 1 100%;
    max-width: 280px;
  }
}
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.full-width-header {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 2em 0;
  text-align: center;
  background-color: #C6034B;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.full-width-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.main-title {
  font-size: 3em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.intro-card {
  background: #fff;
  border-left: 4px solid #C6034B;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2em;
  max-width: 800px;
  width: 100%;
}

.underline-text {
  text-decoration: underline;
  color: #C6034B;
  font-weight: 500;
}

.button-container {
  text-align: center;
}

.cta-button {
  background: #C6034B;
  color: #fff;
  padding: 1em 2.5em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #a5023f;
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}

.services-list {
  background: #fff;
  border-top: 4px solid #C6034B;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2em;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1em;
}

.services-ul {
  list-style: none;
  padding: 0;
}

.services-ul li {
  margin-bottom: 0.8em;
  position: relative;
  padding-left: 1.5em;
}

.services-ul li::before {
  content: '•';
  color: #C6034B;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.price-tag {
  text-align: center;
  margin-top: 1.5em;
  background: #f9f9f9;
  padding: 0.8em;
  border: 1px dashed #C6034B;
  border-radius: 8px;
}

.image-section {
  text-align: center;
}

.image-container img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.image-caption h3 {
  margin: 1em 0 0.5em;
}

.photo-note {
  font-style: italic;
  margin-top: 1em;
}

.follow-up-options {
  margin-top: 2em;
  background: #f9f2f5;
  border-left: 3px solid #C6034B;
  padding: 1.5em;
  border-radius: 8px;
}

.process-preview {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 8px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2em;
}

.step {
  flex: 1 1 220px;
  text-align: center;
  position: relative;
  margin-bottom: 2em;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #C6034B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 20px;
  color: #C6034B;
}

.faq-preview {
  max-width: 800px;
  margin: 2em auto 0;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1em;
}

.faq-question {
  cursor: pointer;
  padding: 1em;
  display: flex;
  align-items: center;
}

.plus-sign {
  margin-right: 10px;
  color: #C6034B;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 1em 1em;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .step:not(:last-child)::after {
    content: '↓';
    position: static;
  }
}
/* WordPress aggressive full-width overrides */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.entry-content, 
.post-inner, 
.wp-block-group, 
.wp-block-cover, 
.content-area, 
#content, 
article, 
.entry, 
.site-content,
.wp-block-post-content,
.wp-site-blocks,
.wp-block-template-part,
.has-global-padding,
.alignfull,
.alignwide {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Full-width berry gradient background with pattern overlay */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 30px 5vw;
  background: linear-gradient(135deg, #C6034B 0%, #d71c5f 100%);
  position: relative;
  overflow: hidden;
}

.services-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* Service columns */
.service-column {
  position: relative;
  z-index: 1;
  flex: 0 1 220px;
  max-width: 220px;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  background: #fff;
  border-bottom: 3px solid #C6034B;
  transition: transform 0.3s ease;
}

.service-column:hover {
  transform: translateY(-3px);
}

.service-column img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.column-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #C6034B;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #fbe5ee;
}

.service-column p {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #333;
}

/* Accordion */
.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-item {
  margin-bottom: 6px;
  border: 1px solid #f0d0dc;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 8px 10px;
  background: #fbe5ee;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.85em;
  color: #8a0336;
}

.plus-sign {
  display: inline-block;
  margin-right: 6px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #C6034B;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.8em;
  color: #333;
  background: #fff;
}

.accordion-item.active .accordion-content {
  padding: 10px;
  max-height: 120px;
}

.accordion-item.active .plus-sign {
  transform: rotate(45deg);
}

.service-column:nth-child(2) {
  border-bottom-color: #d71c5f;
}

.service-column:nth-child(2) .column-title {
  color: #d71c5f;
}

.service-column:nth-child(3) {
  border-bottom-color: #e73573;
}

.service-column:nth-child(3) .column-title {
  color: #e73573;
}

/* Responsive */
@media (max-width: 768px) {
  .service-column {
    flex: 1 1 100%;
    max-width: 280px;
  }
}
document.addEventListener('DOMContentLoaded', function() {
  document.querySelectorAll('.accordion-header').forEach(header => {
    header.addEventListener('click', function() {
      const item = this.parentNode;
      const wasActive = item.classList.contains('active');
      document.querySelectorAll('.accordion-item').forEach(i => i.classList.remove('active'));
      if (!wasActive) item.classList.add('active');
    });
  });
});
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.full-width-header {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 2em 0;
  text-align: center;
  background-color: #C6034B;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.full-width-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.main-title {
  font-size: 3em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.intro-card {
  background: #fff;
  border-left: 4px solid #C6034B;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2em;
  max-width: 800px;
  width: 100%;
}

.underline-text {
  text-decoration: underline;
  color: #C6034B;
  font-weight: 500;
}

.button-container {
  text-align: center;
}

.cta-button {
  background: #C6034B;
  color: #fff;
  padding: 1em 2.5em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #a5023f;
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}

.services-list {
  background: #fff;
  border-top: 4px solid #C6034B;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2em;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1em;
}

.services-ul {
  list-style: none;
  padding: 0;
}

.services-ul li {
  margin-bottom: 0.8em;
  position: relative;
  padding-left: 1.5em;
}

.services-ul li::before {
  content: '•';
  color: #C6034B;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.price-tag {
  text-align: center;
  margin-top: 1.5em;
  background: #f9f9f9;
  padding: 0.8em;
  border: 1px dashed #C6034B;
  border-radius: 8px;
}

.image-section {
  text-align: center;
}

.image-container img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.image-caption h3 {
  margin: 1em 0 0.5em;
}

.photo-note {
  font-style: italic;
  margin-top: 1em;
}

.follow-up-options {
  margin-top: 2em;
  background: #f9f2f5;
  border-left: 3px solid #C6034B;
  padding: 1.5em;
  border-radius: 8px;
}

.process-preview {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 8px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2em;
}

.step {
  flex: 1 1 220px;
  text-align: center;
  position: relative;
  margin-bottom: 2em;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #C6034B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 20px;
  color: #C6034B;
}

.faq-preview {
  max-width: 800px;
  margin: 2em auto 0;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1em;
}

.faq-question {
  cursor: pointer;
  padding: 1em;
  display: flex;
  align-items: center;
}

.plus-sign {
  margin-right: 10px;
  color: #C6034B;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 1em 1em;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .step:not(:last-child)::after {
    content: '↓';
    position: static;
  }
}
/* Social Media Marketing Services Stylesheet */

/* Full-width header section */
.full-width-header {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2em 0;
    text-align: center;
    background-color: #C6034B ;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Pattern overlay for header */
.full-width-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* Pattern overlay for header */
.full-width-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.main-title {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Content container */
.content-container {
    display: flex;
		background-color: #fbeec1 ;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    gap: 2em;
    max-width: 100%;
    margin: 0 auto;
}

/* Intro card */
.intro-card {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    background-color: #ffff ;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2em;
    width: 100%;
    max-width: 800px;
    border-left: 4px solid #C6034B;
}

.underline-text {
    text-decoration: underline;
    color: #C6034B;
    font-weight: 500;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    width: 100%;
}

.cta-button {
    padding: 1em 2.5em;
    background: #C6034B;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    display: inline-block;
}

.cta-button:hover {
    background: #a5023f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    width: 100%;
    max-width: 1200px;
}

/* Services list */
.services-list {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2em;
    border-top: 4px solid #C6034B;
}

.section-title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5em;
    color: #333;
    position: relative;
    padding-bottom: 0.5em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #C6034B;
}

.services-ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.services-ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
}

.services-ul li::before {
    content: '•';
    color: #C6034B;
    font-weight: bold;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
}

.price-tag {
    font-size: 1.6em;
    color: #222;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5em;
    padding: 0.8em;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px dashed #C6034B;
}

/* Image section */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 80%;
    max-width: 400px;
    margin-bottom: 2em;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-caption h3 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 0.5em;
}

.photo-note {
    font-size: 1.1em;
    color: #555;
    margin-top: 1em;
    padding: 0 2em;
    text-align: center;
}

.photo-note p {
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .price-tag {
        font-size: 1.3em;
    }
    
    .content-container {
        padding: 1.5em;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        font-size: 1em;
    }
}
/* Graphic Design & Brand Services Stylesheet */

/* Page background */
html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    background-color: #fbeec1;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Full-width header section */
.full-width-header {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2em 0;
    text-align: center;
    background-color:#B3023A;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Pattern overlay for header */
.full-width-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.main-title {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Content container */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro card */
.intro-card {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    background-color: #f8f4ed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2em;
    width: 100%;
    max-width: 800px;
    border-left: 4px solid #C6034B;
}

.underline-text {
    text-decoration: underline;
    color: #C6034B;
    font-weight: 500;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    font-family: 'Baloo 2', cursive !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #412234;
    background-color: #ffe29d;
    border: 3px solid #C6034B;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 226, 157, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-width: 250px;
    text-align: center;
}

.cta-button:hover {
    background-color: #3BFAD4;
    color: #412234 !important;
    border-color: #3BFAD4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 250, 212, 0.3);
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    width: 100%;
    max-width: 1200px;
}

/* Services list */
.services-list {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    background-color: #f8f4ed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2em;
    border-top: 4px solid #C6034B;
}

.section-title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5em;
    color: #333;
    position: relative;
    padding-bottom: 0.5em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #C6034B;
}

.services-ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.services-ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
}

.services-ul li::before {
    content: '•';
    color: #C6034B;
    font-weight: bold;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
}

.price-tag {
    font-size: 1.6em;
    color: #222;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5em;
    padding: 0.8em;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px dashed #C6034B;
}

/* Image section */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 80%;
    max-width: 400px;
    margin-bottom: 2em;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-caption h3 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 0.5em;
}

.photo-note {
    font-size: 1.1em;
    color: #555;
    margin-top: 1em;
    padding: 0 2em;
    text-align: center;
}

.photo-note p {
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .price-tag {
        font-size: 1.3em;
    }
    
    .content-container {
        padding: 1.5em;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        font-size: 1em;
    }
}
/* Hero section */
.hero-section-services {
    background: url('http://www.jgriffithmedia.com/wp-content/uploads/2025/07/Jelena-Griffith-1-1-scaled.png') no-repeat center center;
    background-size: cover;
    height: 60vh;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: none !important;
    box-sizing: border-box;
    border: none;
    outline: none;
	border-bottom: 4px solid #C6034B;
}
}



/* Position content above the overlay */
.hero-section > .hero-content {
    position: relative;
    z-index: 2;
}

/* Hero section content layout */
.hero-content {
    text-align: center;
}

/* Smaller title with dots on either side */
.smaller-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.smaller-title::before, .smaller-title::after {
    content: '✦';
    font-size: 3rem;
    color: white;
}

/* Typing animation */
#typed-text-services {
    font-size: 2rem;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    display: block;
    min-height: 5.5rem;
}

#typed-text-services {
    border-right: 2px solid white;
    padding-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .smaller-title {
        font-size: 2em;
    }
    
    #typing-animation {
        font-size: 2.5em;
        min-height: 3rem;
    }
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff5d6;
    color: #412234;
    line-height: 1.6;
    min-height: 100vh;
}

/* Container */
.services-container-projects {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    min-height: 100vh;
}

/* Service Section */
.service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 6rem 0;
    border-bottom: 2px solid #ffe29d;
    min-height: 80vh;
}

.service-section:last-child {
    border-bottom: none;
}

.service-section:nth-child(even) {
    direction: rtl;
}

.service-section:nth-child(even) > * {
    direction: ltr;
}

/* Service Content */
.service-content {
    padding: 3rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-family: 'Baloo 2', cursive;
    font-size: 3.2rem;
    color: #C6034B;
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-description {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	

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

.hero-image.placeholder {
    background: linear-gradient(135deg, #3BFAD4, #ffe29d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    color: #412234;
    font-weight: 600;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fbeec1, #ffe29d);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #412234;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    padding: 1rem;
}

.project-item:hover {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 3, 75, 0.95), rgba(65, 34, 52, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    padding: 1rem;
}

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

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Baloo 2', cursive;
    color: #412234;
    background-color: #ffe29d;
    border: 3px solid #C6034B;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 226, 157, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #3BFAD4;
    color: #412234;
    border-color: #3BFAD4;
    box-shadow: 0 12px 30px rgba(59, 250, 212, 0.3);
}

.service-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Different gradient styles for each section */
.content-creation .hero-image.placeholder {
    background: linear-gradient(135deg, #3BFAD4, #ffe29d);
}

.social-media .hero-image.placeholder {
    background: linear-gradient(135deg, #C6034B, #ffe29d);
}

.design-services .hero-image.placeholder {
    background: linear-gradient(135deg, #412234, #3BFAD4);
}

.digital-marketing .hero-image.placeholder {
    background: linear-gradient(135deg, #ffe29d, #C6034B);
}

/* Responsive */
@media (max-width: 768px) {
    .services-container {
        padding: 4rem 1rem;
        gap: 4rem;
    }

    .service-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
        min-height: auto;
    }

    .service-section:nth-child(even) {
        direction: ltr;
    }

    .service-content {
        padding: 2rem;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-title {
        font-size: 2.5rem;
    }

    .service-description {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image.placeholder {
        font-size: 1.4rem;
    }
}