@charset "UTF-8";

/* 
  Main Stylesheet
  Version: 2.2
  Author: Grace Pariser
  Description: Updated styles for websites for HR consultants
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Global Styles */
:root {
    --accent: #FF1493;
    --dark: #293241;
    --light: #ffffff;
    --grey: #f8f9fa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

a:hover {
    color: #e6008a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--light);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.btn:hover {
    background-color: #e6008a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.4);
    color: var(--light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--light);
}

section {
    padding: 50px 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background-color: var(--dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 240px;
    height: auto;
}

.logo-container img.logo {
    max-width: 300px;
    height: auto;
}

.logo-placeholder {
    color: var(--light);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    background-color: transparent !important;
    /* Force transparent background */
}

nav ul li a:hover {
    color: var(--accent);
    background-color: transparent !important;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    background-color: transparent !important;
}

.mobile-menu-btn {
    display: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 5px;
    user-select: none;
}

/* Responsive Styles for Header */
@media (max-width: 1100px) {
    nav ul li {
        margin-left: 15px;
    }

    .logo-container img.logo {
        max-width: 240px;
    }
}

@media (max-width: 991px) {
    .logo-container img.logo {
        max-width: 220px;
    }
}

@media (max-width: 880px) {
    .header-container {
        padding: 10px 0;
    }

    .logo-container img.logo {
        max-width: 200px;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--dark);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }

    nav ul.active,
    #nav-menu.active {
        left: 0 !important;
    }

    nav ul li {
        margin: 15px 0;
    }
}

/* Page Header */
.page-header {
    background-color: var(--dark);
    color: var(--light);
    padding: 90px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,20,147,0.1) 0%, rgba(41,50,65,0.1) 100%);
    opacity: 0.1;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background-color: var(--dark);
    color: var(--light);
    padding: 90px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,20,147,0.05) 0%, rgba(41,50,65,0.05) 100%);
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    bottom: 8px;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-image {
    position: relative;
    text-align: center;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    background-color: var(--light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.section-header p {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(41, 50, 65, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.feature-card p {
    color: #555;
    margin-bottom: 20px;
}

/* About Section */
.about {
    background-color: var(--grey);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.expertise-card p {
    color: #555;
}

/* Products Section */
.products {
    background-color: var(--light);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--grey);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.product-content p {
    color: #555;
    margin-bottom: 20px;
}

/* Values Section */
.values {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
}

.values::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
}

.values .section-header h2,
.values .section-header p {
    color: var(--light);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--dark);
    border-radius: 15px;
    padding: 50px;
    color: var(--light);
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 25px;
    text-align: center;
}

.contact-text {
    font-size: 1.05rem;
}

.contact-text a {
    color: var(--light);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: var(--light);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--grey);
}

.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: var(--accent);
    color: var(--light);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.form-submit:hover {
    background-color: #e6008a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.4);
}

/* FAQ Section */
.faq-section {
    background-color: var(--grey);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    background-color: var(--light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 30px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: #555;
}

/* Schedule Section */
.schedule-section {
    background-color: var(--light);
    text-align: center;
}

.schedule-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--dark);
    border-radius: 15px;
    padding: 60px 40px;
    color: var(--light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.schedule-container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.05;
    top: -100px;
    right: -100px;
}

.schedule-container::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.05;
    bottom: -75px;
    left: -75px;
}

.schedule-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.schedule-section h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 25%;
}

.schedule-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Examples Section (Modified Portfolio) */
.examples-intro {
    background-color: var(--light);
    text-align: center;
}

.examples-intro p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

/* Examples Filter */
.examples-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--accent);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent);
    color: var(--light);
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.example-item {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.example-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.example-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.example-item:hover .example-image img {
    transform: scale(1.05);
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 50, 65, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.example-overlay-content {
    text-align: center;
    padding: 20px;
}

.view-example {
    display: inline-block;
    background-color: var(--accent);
    color: var(--light);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.view-example:hover {
    background-color: #e6008a;
    transform: translateY(-3px);
}

.example-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.example-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.example-description {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.example-tag {
    background-color: var(--grey);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--dark);
}

/* Case Studies Section */
.case-studies {
    background-color: var(--grey);
}

.case-study {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Ensure consistent display */
.case-study:nth-child(odd) .case-study-image {
    justify-self: start;
}

.case-study:nth-child(even) .case-study-content {
    padding-left: 50px;
}

.case-study:nth-child(odd) .case-study-content {
    padding-right: 50px;
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-container {
    display: grid;
    grid-template-columns: 500px 1fr;
    min-height: 500px;
}

/* Create alternating logo styles for visual interest */
.case-study:nth-child(1) .case-study-image::before,
.case-study:nth-child(1) .case-study-image::after {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(41, 50, 65, 0.05));
}

.case-study:nth-child(2) .case-study-image::before,
.case-study:nth-child(2) .case-study-image::after {
    background: linear-gradient(135deg, rgba(86, 180, 211, 0.08), rgba(41, 50, 65, 0.05));
}

.case-study:nth-child(3) .case-study-image::before,
.case-study:nth-child(3) .case-study-image::after {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.08), rgba(41, 50, 65, 0.05));
}

.case-study-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    min-height: 100%;
    background-color: #ffffff;
    border-radius: 0 0 0 15px;
    width: 500px;
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Alternate layout for even case studies */
.case-study:nth-child(even) .case-study-image {
    border-radius: 0 15px 0 0;
    width: 500px;
    height: 500px;
}

/* Fix for the alternating layout */
.case-study:nth-child(even) .case-study-container {
    grid-template-columns: 1fr 500px;
}

.case-study:nth-child(even) .case-study-content {
    order: 1;
}

.case-study:nth-child(even) .case-study-image {
    order: 2;
    justify-self: end;
}

.case-study-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-logo {
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.case-study-image:hover .client-logo {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.15));
}

.case-study-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(41, 50, 65, 0.05));
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.case-study-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(41, 50, 65, 0.05), rgba(255, 20, 147, 0.08));
    border-radius: 50%;
    bottom: -75px;
    right: -75px;
    z-index: 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.case-study-image:hover::before, .case-study-image:hover::after {
    transform: scale(1.2);
    opacity: 0.7;
}

.website-preview {
    max-width: 450px;
    max-height: 280px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.case-study-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-study-content p {
    color: #555;
    margin-bottom: 20px;
}

.case-study-highlights {
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.highlight-icon {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

.highlight-text {
    font-weight: 500;
}

/* CTA Section */
.cta {
    background-color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.05;
    top: -150px;
    left: -150px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--dark);
    opacity: 0.05;
    bottom: -100px;
    right: -100px;
}

.cta-container {
    background-color: var(--dark);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-intro p {
    color: #555;
    font-size: 1.1rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.toggle-label {
    font-weight: 600;
    color: var(--dark);
    margin: 0 15px;
}

.toggle-button {
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--dark);
    cursor: pointer;
}

.toggle-button::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--light);
    top: 3px;
    left: 3px;
    transition: var(--transition);
}

.toggle-button.monthly::before {
    transform: translateX(30px);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: var(--light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 5px solid transparent;
}

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

.pricing-card.featured {
    border-top-color: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.pricing-card.featured .pricing-header {
    background-color: var(--dark);
    color: var(--light);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--grey);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-subtitle {
    color: #ddd;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.pricing-card.featured .pricing-price {
    color: var(--accent);
}

.pricing-period {
    color: #666;
    font-size: 0.9rem;
    display: block;
}

.pricing-card.featured .pricing-period {
    color: #ddd;
}

.pricing-monthly {
    display: none;
}

.pricing-monthly.show {
    display: block;
}

.pricing-onetime {
    display: block;
}

.pricing-onetime.hide {
    display: none;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #555;
}

.pricing-feature-icon {
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
    min-width: 20px;
}

.pricing-card-footer {
    text-align: center;
}

/* Add-ons Section */
.addons-section {
    background-color: var(--grey);
    padding-top: 80px;
    padding-bottom: 80px;
}

.addons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.addon-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--accent);
}

.addon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.addon-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.addon-body {
    padding: 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.addon-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.addon-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #555;
}

.addon-feature-icon {
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
    min-width: 20px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .story-container,
    .expertise-grid,
    .products-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-image {
        margin-bottom: 30px;
        order: 1;
    }

    .story-content {
        order: 2;
    }

    .about-image {
        margin-bottom: 40px;
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-image::after,
    .story-image::after {
        display: none;
    }

    .section-header h2,
    .story-content h2,
    .about-content h2,
    .cta h2,
    .case-study-content h3,
    .pricing-intro h2 {
        font-size: 2rem;
    }

    .expertise-card,
    .product-card {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .contact-info {
        margin-bottom: 30px;
    }

    .case-study-container,
    .case-study:nth-child(even) .case-study-container {
        grid-template-columns: 1fr;
    }
    
    .case-study:nth-child(even) .case-study-content,
    .case-study:nth-child(even) .case-study-image {
        order: unset;
    }
    
    .case-study-content {
        order: 2;
    }
    
    .case-study-image {
        order: 1;
    }

    .case-study-image {
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 500px;
        background-color: #ffffff;
    }
    
    .client-logo {
        max-width: 150px;
        margin-bottom: 25px;
    }
    
    .website-preview {
        max-width: 90%;
    }

    .case-study-content {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 0;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--dark);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }

    nav ul.active,
    #nav-menu.active {
        left: 0 !important;
    }

    nav ul li {
        margin: 15px 0;
    }

    .page-header {
        padding: 60px 0 25px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .testimonial {
        padding: 30px 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

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

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .schedule-container {
        padding: 40px 20px;
    }

    .examples-grid,
    .pricing-cards,
    .addons-container {
        grid-template-columns: 1fr;
    }

    .example-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Improve case study display on mobile */
    .case-study-image {
        padding: 30px;
        height: 400px;
        background-color: #ffffff;
    }
    
    .client-logo {
        max-width: 300px;
        max-height: 300px;
    }
    
    .case-study-image::before,
    .case-study-image::after {
        width: 100px;
        height: 100px;
    }
    
    .case-study-content h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .case-study-highlights {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Super aggressive fixes for the white background issue */
/* Add these at the END of your CSS file to ensure they override everything */

/* Target the specific about link */
a.nav-link.about,
a.about,
.nav-link.about,
a.nav-link.maintenance,
a.nav-link.issues {
    background-color: transparent !important;
    background: none !important;
}

/* Target all navigation links */
header nav ul li a,
.header-container nav ul li a,
nav ul li a,
.nav-link {
    background-color: transparent !important;
    background: none !important;
}

/* Target active links specifically */
a.active,
nav a.active,
.nav-link.active,
a.nav-link.about.active,
a.nav-link.maintenance.active,
a.nav-link.issues.active,
header nav ul li a.active {
    background-color: transparent !important;
    background: none !important;
}

body header .header-container .logo-container img.logo[src],
body .header-container .logo-container img.logo[src],
body header img.logo[src],
html body img.logo[src] {
    max-width: 500px !important;
    height: auto !important;
}

@media (max-width: 991px) {

    body header .header-container .logo-container img.logo[src],
    body .header-container .logo-container img.logo[src],
    body header img.logo[src],
    html body img.logo[src] {
        max-width: 350px !important;
    }
}

@media (max-width: 768px) {

    body header .header-container .logo-container img.logo[src],
    body .header-container .logo-container img.logo[src],
    body header img.logo[src],
    html body img.logo[src] {
        max-width: 200px !important;
    }
}

rgba(0, 0, 0, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.1;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--dark);
    font-weight: 500;
}

/* Process Section */
.process {
    background-color: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.process-step {
    padding: 30px;
    background-color: var(--grey);
    border-radius: 15px;
    position: relative;
    padding-top: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.process-step p {
    color: #555;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    line-height: 0;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--light);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 20px;
    transition: var(--transition);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* My Story Section */
.my-story {
    background-color: var(--light);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.1;
    z-index: -1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

.story-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Expertise Section */
.expertise {
    background-color: var(--grey);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--accent);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Two-row header layout */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

/* Logo container adjustments */
.logo-container {
    margin-bottom: 8px;
    justify-content: center;
}

/* Navigation adjustments */
nav {
    width: 100%;
    text-align: center;
}

nav ul {
    justify-content: center;
    margin-top: 0;
}

/* Adjust page-header padding to account for taller header - using exact measurement + buffer */
.page-header {
    padding: 70px 0 30px;
}

.hero {
    padding: 70px 0 30px;
}

/* Mobile adjustments */
@media (max-width: 880px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 0;
    }

    .logo-container {
        margin-bottom: 0;
    }

    nav {
        width: auto;
    }

    nav ul {
        margin-top: 0;
    }
}
.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr;
    }
}
/* Custom styles for Handbook Portal page */
.demo-note {
    margin-top: 5px;
    margin-left: 5px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .demo-note {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* For the values section in Handbook Portal */
.values .about-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.values .about-content h3 {
    color: var(--light);
}

.values .about-content p {
    color: rgba(255, 255, 255, 0.8);
}
/* Target the specific links */
a.nav-link.about,
a.about,
.nav-link.about,
a.nav-link.maintenance,
a.nav-link.issues,
a.nav-link.handbook {
    background-color: transparent !important;
    background: none !important;
}

/* Target all navigation links */
header nav ul li a,
.header-container nav ul li a,
nav ul li a,
.nav-link {
    background-color: transparent !important;
    background: none !important;
}

/* Target active links specifically */
a.active,
nav a.active,
.nav-link.active,
a.nav-link.about.active,
a.nav-link.maintenance.active,
a.nav-link.issues.active,
a.nav-link.handbook.active,
header nav ul li a.active {
    background-color: transparent !important;
    background: none !important;
}
/* Additional classes for Bootstrap-like grid system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-content-center {
    justify-content: center;
}

.col-md-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Update for pricing card to ensure it's centered and looks nice */
.pricing-card.featured {
    max-width: 100%;
    margin: 0 auto;
}

.pricing-intro {
    margin-bottom: 40px;
}
/* About Section Responsive Adjustments */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
}

/* Fix for HR platform images on mobile */
@media (max-width: 768px) {
    body header .header-container .logo-container img.logo[src],
    body .header-container .logo-container img.logo[src],
    body header img.logo[src],
    html body img.logo[src],
    .hero-image img,
    .about-image img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }
}
/* Add this to your style-v2.css file */

/* Fix for maintenance page pricing */
.addon-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 350px) {
    .addon-price {
        font-size: 1.3rem;
    }
}

/* Price card equal height fix for website issues page */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    flex-grow: 1;
}
/* Add this to your style-v2.css file */

/* Handbook portal grid mobile fix */
@media (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .values-container .feature-card,
    .values-container .value-card {
        margin-bottom: 20px;
    }
    
    /* General grid fixes for mobile */
    .features-container,
    .expertise-grid,
    .about-stats,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Stack all cards on mobile */
    .feature-card,
    .expertise-card,
    .product-card,
    .value-card,
    .addon-card {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Additional fixes for examples page */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.example-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.example-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.example-description {
    flex-grow: 1;
}

/* Mobile menu improvements */
@media (max-width: 880px) {
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav ul.active,
    #nav-menu.active {
        left: 0 !important;
    }
    
    nav ul li {
        margin: 15px 0;
    }
}

/* Fix for the section-cta on index */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Contact form result message */
#form-result {
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#form-result div {
    padding: 10px;
    border-radius: 4px;
}

#form-result div[style*="color: #4caf50"] {
    background-color: rgba(76, 175, 80, 0.1);
}

#form-result div[style*="color: #f44336"] {
    background-color: rgba(244, 67, 54, 0.1);
}
/* Add this CSS to your style-v2.css file */

/* Pricing Cards Layout - Equal Size Fix */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Remove any existing transform that might affect size */
.pricing-card {
    transform: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Apply hover effect equally to both cards */
.pricing-card:hover {
    transform: translateY(-10px) !important;
}

/* Ensure the height of content areas is identical */
.pricing-header {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-features {
    min-height: 220px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}
/* Document Centre Page Styles */

/* Pricing Cards Layout - Equal Size Fix */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Remove any existing transform that might affect size */
.pricing-card {
    transform: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Apply hover effect equally to both cards */
.pricing-card:hover {
    transform: translateY(-10px) !important;
}

/* Ensure the height of content areas is identical */
.pricing-header {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-features {
    min-height: 220px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Pricing Container */
.pricing-container {
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Toggle Switch Styling */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-period-label {
    font-weight: 500;
    margin: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#annual-label {
    color: #777;
}

.pricing-period-label.active {
    color: var(--accent);
    font-weight: 600;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--accent);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Card Styling for Document Centre page */
.pricing-card {
    width: 100%;
    border-top: 5px solid var(--accent);
}

/* Annual/Monthly specific elements */
.annual-price,
.annual-period,
.annual-feature {
    display: none;
}

/* Terms and modal styles */
.terms-container {
    margin-bottom: 25px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.terms-text {
    margin-top: 20px;
    color: #333;
    line-height: 1.6;
}

.terms-text h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

#card-errors {
    color: #f44336;
    margin-bottom: 20px;
    min-height: 20px;
}

.payment-form {
    margin-top: 30px;
}

/* Footer fix - ensure it spans the entire width */
.document-centre-page html, 
.document-centre-page body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.document-centre-page footer, 
.document-centre-page footer .container, 
.document-centre-page .footer-container, 
.document-centre-page .footer-bottom {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure main content doesn't cause horizontal overflow */
.document-centre-page .container {
    max-width: 1200px;
    box-sizing: border-box;
}

/* Pricing toggle styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.toggle-label {
    font-weight: 600;
    color: var(--dark);
    margin: 0 15px;
}

.toggle-button {
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--dark);
    cursor: pointer;
}

.toggle-button::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--light);
    top: 3px;
    left: 3px;
    transition: var(--transition);
}

.toggle-button.annual::before {
    transform: translateX(30px);
}

/* Plan selection styles */
.plan-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: var(--transition);
}

.plan-option:hover {
    border-color: var(--accent);
}

.plan-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.plan-option label {
    font-weight: 500;
    cursor: pointer;
}

.plan-option input[type="radio"]:checked + label {
    color: var(--accent);
    font-weight: 600;
}

.plan-option:has(input[type="radio"]:checked) {
    border-color: var(--accent);
    background-color: rgba(255, 20, 147, 0.05);
}

/* Card styling enhancements */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    flex-grow: 1;
}

/* Single form container */
.payment-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    opacity: 0;
}

/* Dynamic Submit Button Text */
#submit-button.monthly:before {
    content: "Monthly - £45/month";
}

#submit-button.annual:before {
    content: "Annual - £500/year";
}

/* Responsive layout */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 100%;
    }
}

.case-studies {
    background-color: var(--grey);
    padding: 60px 0;
}

.case-study {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-container {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 300px;
}

/* Alternate the layout for every second case study */
.case-study:nth-child(even) .case-study-container {
    grid-template-columns: 60% 40%;
}

.case-study-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--grey);
    padding: 30px;
}

.client-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.case-study-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.case-study-content p {
    color: #555;
    margin-bottom: 20px;
}

.case-study-highlights {
    margin-bottom: 25px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.highlight-icon {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 20px;
}

.highlight-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Testimonial styles */
.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    transition: var(--transition);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.client-info {
    display: flex;
    justify-content: center;
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .case-study-container,
    .case-study:nth-child(even) .case-study-container {
        grid-template-columns: 1fr;
    }
    
    .case-study-image {
        min-height: auto;
        padding: 30px;
    }
    
    .client-logo {
        max-width: 150px;
        margin-bottom: 0;
    }
    
    .case-study-content {
        padding: 30px;
    }
    
    .case-study-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .case-studies {
        padding: 40px 0;
    }
    
    .case-study {
        margin-bottom: 30px;
    }
    
    .case-study-image {
        padding: 25px;
    }
    
    .client-logo {
        max-width: 120px;
    }
    
    .case-study-content {
        padding: 25px;
    }
    
    .highlight-text {
        font-size: 0.9rem;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .case-study-content h3 {
        font-size: 1.4rem;
    }
    
    .case-study-content p {
        font-size: 0.95rem;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Fix case study elements */
    .case-study {
        flex-direction: column !important;
    }
    
    .case-study:nth-child(even) {
        flex-direction: column !important;
    }
    
    .case-study-image,
    .case-study:nth-child(even) .case-study-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        border-radius: 15px 15px 0 0 !important;
    }
    
    .case-study-content {
        padding: 20px !important;
        width: 100% !important;
    }
    
    /* Fix any fixed width elements */
    .container {
        padding: 0 15px;
    }
    
    /* Ensure tables are scrollable */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix buttons and forms */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Fix pricing cards */
    .pricing-card {
        max-width: 100% !important;
        margin: 0 auto 20px !important;
    }
    
    .pricing-cards {
        flex-direction: column;
    }
    
    /* Fix navigation */
    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Fix images */
    img {
        max-width: 100%;
        height: auto;
    }
}