* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-purple: #2205A8;
    --magenta-purple: #A8057F;
    --light-purple: #BBACC8;
    --slate-blue: #483D8B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --dark-gray: #2C2C2C;
    --light-gray: #6C757D;
    --red: #D32F2F;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Typography Defaults */
p {
    margin-bottom: 1.2rem; /* Default spacing between paragraphs */
}

/* Subtitle Styles */
.section-subtitle {
    font-size: 1.8rem; /* Adjust size as desired */
    color: var(--deep-purple);
    margin-top: 2rem; /* Add some spacing above if it follows content */
    margin-bottom: 1rem; /* Add some spacing below */
    text-align: center; /* Assuming it's centered */
    font-weight: 600; /* Make it a bit bolder than regular text */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 30px;
    width: 100%;
    background: var(--deep-purple);
    box-shadow: 0 4px 20px rgba(34, 5, 168, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo .company-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.logo .owner-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--magenta-purple);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 5, 127, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem !important;
    opacity: 1 !important;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 5, 127, 0.6);
    background: white;
    color: var(--magenta-purple) !important;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, var(--light-purple) 0%, transparent 60%);
    transform: rotate(15deg);
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, var(--magenta-purple) 0%, transparent 70%);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--deep-purple);
}


.hero h2 {
    font-size: 1.4rem; /* Slightly bigger */
    color: #A8057F;
    margin-bottom: 1rem;
    font-weight: 800; /* Even bolder */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 1; /* Full opacity */
}

.hero h3 {
    font-size: 1.2rem; /* Bump up from 1.1rem */
    color: var(--deep-purple);
    margin-bottom: 2rem;
    font-weight: 600; /* Bolder instead of 500 */
    opacity: 0.8;
    font-style: normal; /* Remove italic */
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero .swoosh {
    text-align: center;
    font-size: 1.6rem;
    margin: 2.5rem 0;
}

.hero .swoosh strong,
.hero .swoosh {
    background: linear-gradient(45deg, #A8057F, #9A4A9C); /* Changed end color for better readability */
    padding: 6px 14px; /* Slightly more padding */
    border-radius: 15px 5px 20px 8px;
    transform: rotate(-1deg);
    display: inline-block;
    color: white;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Add text shadow for better readability */
}

.hero .lead {
    font-size: 1.5rem;
    color: #333; /* Change from var(--dark-gray) to the same dark color */
    margin-bottom: 1rem;
    font-weight: 600; /* Make it even bolder since it's the intro line */
}

.hero p {
    font-size: 1.25rem;
    color: #333; /* Already fixed */
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 500;
}


.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--magenta-purple);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(168, 5, 127, 0.4);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 5, 127, 0.5);
}

.cta-button-secondary {
    background: white;
    color: var(--deep-purple);
    padding: 1.2rem 2.5rem;
    border: 3px solid var(--deep-purple);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
}

.cta-button-secondary:hover {
    background: var(--deep-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 5, 168, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta-purple));
    color: white;
    padding: 2rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    transform: skewY(-2deg);
    box-shadow: 0 10px 30px rgba(34, 5, 168, 0.2);
}

.section-header > * {
    transform: skewY(2deg);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--magenta-purple) 0%, 
        var(--light-purple) 25%, 
        var(--magenta-purple) 50%, 
        var(--light-purple) 75%, 
        var(--magenta-purple) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Alternating Sections */
section:nth-child(even) {
    background: var(--off-white);
}

/* Cards */
.card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(187, 172, 200, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--deep-purple), var(--magenta-purple));
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced styling for Who Am I cards */
.who-am-i-card {
    background: linear-gradient(135deg, rgba(187, 172, 200, 0.1), rgba(255, 255, 255, 0.95));
    padding: 3.5rem;
}

.who-am-i-card p {
    text-shadow: 2px 2px 6px rgba(34, 5, 168, 0.3);
}

.who-am-i-card-secondary {
    background: linear-gradient(135deg, rgba(187, 172, 200, 0.2), rgba(255, 255, 255, 0.9));
    padding: 3.5rem;
    border: 2px solid rgba(168, 5, 127, 0.3);
}

.who-am-i-card-secondary p {
    text-shadow: 2px 2px 6px rgba(34, 5, 168, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta-purple));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--slate-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(187, 172, 200, 0.4);
}

.service-card h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--magenta-purple);
    box-shadow: 0 15px 40px rgba(168, 5, 127, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--deep-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--magenta-purple);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(168, 5, 127, 0.4);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
    position: absolute;
    top: 15px;
    right: 20px;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--deep-purple);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    padding-left: 10px;
    color: var(--light-purple);
}

.mobile-cta {
    background: var(--magenta-purple);
    text-align: center;
    border-radius: 50px;
    margin-top: 20px;
    padding: 15px !important;
    border: none !important;
}

/* Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Hamburger animation */
body.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Styling */
strong {
    color: var(--deep-purple);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(34, 5, 168, 0.05), rgba(168, 5, 127, 0.05));
    border-left: 4px solid var(--magenta-purple);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

/* What Can You Expect Section */
.expect-section {
    padding: var(--spacing-lg) 0;
    background: white;
}

.expect-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    list-style: none;
    padding: 0;
    counter-reset: number-counter;
}

.expect-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.numbered .number-circle {
    background: var(--deep-purple);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    counter-increment: number-counter;
}

.numbered .number-circle:after {
    content: counter(number-counter);
}

.checkmark {
    background: var(--deep-purple);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.crossmark {
    background: var(--red);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.expect-item p {
    font-size: 1.2rem;
    color: var(--deep-purple);
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h1 span {
        font-size: 1.8rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (max-width: 600px) {
    .expect-list {
        grid-template-columns: 1fr;
    }
    .expect-item p {
        font-size: 1rem;
    }
}


.brush-highlight {
  background: linear-gradient(45deg, var(--deep-purple), var(--magenta-purple));
  padding: 4px 12px;
  border-radius: 15px 5px 20px 8px;
  transform: rotate(-1deg);
  display: inline-block;
  color: var(--white);
  letter-spacing: 1px;
}

.brush-highlight-magenta {
  background: linear-gradient(45deg, var(--magenta-purple), var(--light-purple));
  padding: 4px 12px;
  border-radius: 15px 5px 20px 8px;
  transform: rotate(-1deg);
  display: inline-block;
  color: var(--white);
  letter-spacing: 1px;
}

/* --- My Journey in Snapshots Timeline Styles --- */

.timeline-container {
    position: relative;
    padding-left: 0;
    margin-top: 60px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 0;
}

.timeline-content {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--magenta-purple);
    position: relative;
    padding-left: 1.2rem;
}

.timeline-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0;
    height: 0;
    border-top: 0.25em solid transparent;
    border-bottom: 0.25em solid transparent;
    border-left: 0.5em solid var(--deep-purple);
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 0;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray); /* Changed from var(--text-color) */
}

.timeline-content ul li:last-child {
    margin-bottom: 0;
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 0;
        margin-top: 40px;
    }

    .timeline-item {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .timeline-content {
        left: 0;
        width: 100%;
        padding: 1rem;
    }

    .timeline-content h4 {
        font-size: 1.3rem;
        padding-left: 1rem;
    }

    .timeline-content h4::before {
        top: 0.4em;
        border-top: 0.2em solid transparent;
        border-bottom: 0.2em solid transparent;
        border-left: 0.4em solid var(--deep-purple);
    }

    .timeline-content ul li {
        font-size: 1rem;
        padding-left: 0;
    }
}

/* Modified Grow Section (now housing pain points) */
.grow-section {
    padding: var(--spacing-lg) 0 5rem 0; /* Top padding, increased bottom padding */
    background: var(--off-white); /* Light background for the section */
    text-align: center; /* Center the overall content */
}

/* --- Styles for Pain Points Content within Grow Section --- */
.pain-points-question {
    font-size: 2.8rem; /* Large, prominent question */
    color: var(--deep-purple);
    margin-bottom: 3.5rem; /* Space below the question */
    max-width: 850px; /* Control question line length for readability */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    font-weight: 700; /* Make it bold */
}

.pain-points-list {
    display: flex;
    flex-direction: column; /* Ensures stacked layout on all screen sizes */
    gap: 1.5rem; /* Space between the challenge cards */
    max-width: 700px; /* Control the overall width of the stacked cards */
    margin-left: auto;
    margin-right: auto; /* Center the stacked cards */
    margin-bottom: 3rem; /* Space between cards and the CTA */
}

.challenge-card {
    background: var(--white); /* White background for individual cards */
    padding: 2rem;
    border-radius: 12px; /* Slightly more rounded corners */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); /* More pronounced, but still subtle shadow for depth */
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    text-align: left; /* Text aligns to the left within the card */
    transition: transform 0.2s ease-in-out; /* Smooth hover effect */
}

.challenge-card:hover {
    transform: translateY(-5px); /* Lift card slightly on hover */
}

/* Updated .card-icon to match .service-icon style */
.card-icon {
    width: 60px;
    height: 60px;
    margin-right: 1.2rem;
    background: var(--slate-blue); /* Background color like service-icon */
    border-radius: 50%; /* Make it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Color of the icon inside the circle */
    font-size: 2rem; /* Adjusted size for better fit in the circle */
    box-shadow: 0 3px 10px rgba(187, 172, 200, 0.3); /* Lighter shadow */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.card-text {
    font-size: 1.25rem; /* Slightly larger text for readability */
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0; /* Remove default paragraph margin */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .grow-section { /* Apply adjustments to the grow-section itself */
        padding: var(--spacing-md) 0 4rem 0;
    }

    .pain-points-question {
        font-size: 2rem; /* Smaller font for mobile screens */
        margin-bottom: 2.5rem;
    }

    .pain-points-list {
        gap: 1rem; /* Slightly less space between cards on mobile */
        max-width: 90%; /* Allow cards to take more width on smaller screens */
    }

    .challenge-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .card-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .card > div[style*="grid-template-columns"] {
        display: block !important;
    }
    .card > div[style*="grid-template-columns"] > div:last-child {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content > div[style*="grid-template-columns"] {
        display: block !important;
    }
    .hero-content > div[style*="grid-template-columns"] > div:last-child {
        margin-top: 2rem;
        text-align: center;
    }
}

/* Testimonials Styling */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-bubble {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(168, 5, 127, 0.15);
}

.testimonial-bubble::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--magenta-purple);
    font-weight: bold;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--deep-purple);
    font-size: 1.3rem;
    font-weight: 700;
}

.testimonial-context {
    color: var(--magenta-purple);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.testimonial-highlight {
    background: linear-gradient(120deg, rgba(168, 5, 127, 0.1) 0%, rgba(168, 5, 127, 0.1) 100%);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--deep-purple);
}

.testimonial-email-quote {
    font-style: italic;
    color: var(--light-gray);
    font-size: 1.1rem;
    border-left: 3px solid var(--magenta-purple);
    padding-left: 1rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.testimonial-email-quote::before {
    content: "Email excerpt: ";
    font-weight: 600;
    color: var(--magenta-purple);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-testimonial {
    grid-column: 1 / -1;
    background: white;
    border: 3px solid var(--magenta-purple);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 12px 40px rgba(168, 5, 127, 0.15);
}

.featured-testimonial::before {
    color: var(--magenta-purple);
    top: -20px;
    font-size: 6rem;
    opacity: 0.3;
}

.featured-testimonial .testimonial-icon {
    background: linear-gradient(135deg, var(--deep-purple), var(--magenta-purple));
    margin: 0 auto 1.5rem auto;
}

.featured-testimonial h4 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.featured-testimonial .testimonial-context {
    color: var(--magenta-purple);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.featured-testimonial .testimonial-quote {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.three-words {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--magenta-purple);
}

.three-words-label {
    color: var(--deep-purple);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.words-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--magenta-purple);
    letter-spacing: 1px;
}

.words-display span {
    margin: 0 0.5rem;
}

/* Final statement styling */
.final-statement {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(168, 5, 127, 0.2);
}

.final-checkmark {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.final-text {
    font-size: 1.3rem;
    color: #333; /* Dark charcoal for readibilty */
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Final statement with arrow + frame styling */
.arrow-frame-statement {
    border: 2px solid var(--light-purple);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    background: rgba(142, 36, 170, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
	margin-top: 3rem; /* Add space above the frame */
}

.arrow-icon {
    color: var(--deep-purple);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.final-text-option4 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Sample Work Section Styling */
.subsection {
    margin-bottom: 4rem;
}

.subsection h3 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.category-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

.category-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Colors */
.seo-category .category-header {
    color: #8E24AA;
    border-bottom-color: #8E24AA;
}

.analytics-category .category-header {
    color: #1976D2;
    border-bottom-color: #1976D2;
}

.content-category .category-header {
    color: #388E3C;
    border-bottom-color: #388E3C;
}

.technical-category .category-header {
    color: #F57C00;
    border-bottom-color: #F57C00;
}

.automation-category .category-header {
    color: #D32F2F;
    border-bottom-color: #D32F2F;
}

.consulting-category .category-header {
    color: #7B1FA2;
    border-bottom-color: #7B1FA2;
}

/* Task Lists */
.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.task-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Colored bullets per category */
.seo-category .task-list li::before {
    color: #8E24AA;
}

.analytics-category .task-list li::before {
    color: #1976D2;
}

.content-category .task-list li::before {
    color: #388E3C;
}

.technical-category .task-list li::before {
    color: #F57C00;
}

.automation-category .task-list li::before {
    color: #D32F2F;
}

.consulting-category .task-list li::before {
    color: #7B1FA2;
}

/* Featured Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 0;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(187, 172, 200, 0.3), rgba(168, 5, 127, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    color: var(--magenta-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin: 1rem;
}

/* Global Experience */
.global-experience {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.global-text h4 {
    color: var(--deep-purple);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.global-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.countries {
    color: var(--magenta-purple);
    font-weight: 600;
}

.industries {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.global-image {
    text-align: center;
}

.global-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .global-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.mobile-logo {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1rem;
}
.project-video {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.project-video:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.7);
    transition: all 0.3s ease;
}

.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 24px solid #000;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
}

.project-video a {
    text-decoration: none;
    display: block;
    position: relative;
}

.project-video img {
    transition: opacity 0.3s ease;
}

.project-video:hover img {
    opacity: 0.9;
}

/* ========================================
   CONTACT FORM STYLES
======================================== */

/* Book a Call Section */
#book-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#book-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    position: relative;
    z-index: 1;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-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;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #c3e6cb;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.submit-btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    #book-call {
        padding: 60px 0;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .form-header p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

/* Servicces Stats */
.service-stat {
    margin-top: 15px;
    padding: 8px 12px;
    background-color: #f0f8ff;
    border-left: 3px solid #28a745;
    color: #2d5016;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-card:hover .service-stat {
    background-color: #e8f5e9;
    border-left-color: #1976d2;
    transform: translateX(5px);
}

/* Two Column Layout for Expect Section - Chart Style */
.expect-columns {
    display: flex;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    justify-content: center;
}

.expect-column {
    flex: 0 1 380px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.expect-column h3 {
    font-size: 1.25rem;
    margin: 0;
    padding: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    color: #555;
    font-weight: 600;
    text-align: center;
}

.expect-list {
    padding: 1rem;
}

.expect-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.expect-item:last-child {
    border-bottom: none;
}

/* Responsive - Stack columns on mobile */
@media (max-width: 768px) {
    .expect-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .expect-column {
        flex: 1 1 100%;
    }
}

.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: white;
    padding: 8px 20px;
    text-align: center;
    z-index: 1001;
    font-size: 14px;
}

.top-contact-bar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.top-contact-bar a {
    padding: 0;
    margin: 0 5px;  /* just a small margin between items */
    display: inline;  /* make sure they're inline */
}

.top-contact-bar a:hover {
    color: #ff1493;
}

.top-contact-bar .phone-icon {
    margin-right: 5px;
}

/* Pink Floating Button */
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #A8057F;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.floating-phone:hover {
    background-color: #ff69b4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-phone-icon {
    width: 20px;
    height: 20px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Purple Compact Button */
.floating-phone-compact {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #666666;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-phone-compact:hover {
    width: auto;
    padding: 0 25px;
    border-radius: 30px;
    background-color: #ff1493;
}

.floating-phone-compact span {
    display: none;
    margin-left: 10px;
    white-space: nowrap;
}

.floating-phone-compact:hover span {
    display: inline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-phone {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    nav {
        top: 60px;
    }
    
    .top-contact-bar {
        font-size: 12px;
        padding: 6px 10px;
    }
}

html {
    scroll-padding-top: 120px;
}

.two-column-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.image-column {
    text-align: center;
}

.text-column {
    /* Text styling already handled by your existing card styles */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .two-column-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
