/*
Theme Name: Blueprint Web Builder
Theme URI: https://blueprintweb.uk
Author: Blueprint Web Ltd
Description: Custom WordPress theme with flexible content builder
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blueprint-builder
*/

/* ============================================================================
   Globals
  ============================================================================ */


:root {
	--mobile-padding: 10px 30px;
	--container-width: 1600px;
	/* Color variables are loaded from WordPress Customizer via functions.php */
}

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


main > *:first-child {
    padding-top: 90px;
}

/* Poppins Font Family */
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins,Work_Sans/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins,Work_Sans/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins,Work_Sans/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins,Work_Sans/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins,Work_Sans/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Work Sans Variable Font (supports weights 100-900) */
@font-face {
    font-family: 'Work Sans';
    src: url('assets/fonts/Poppins,Work_Sans/Work_Sans/WorkSans-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('assets/fonts/Poppins,Work_Sans/Work_Sans/WorkSans-Italic-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--white);
}

h1, .h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.2;
    color: var(--primary);
}

.subtitle, .h1-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--primary);
}

h2, .h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.3;
    color: var(--primary);
}

h3, .h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.4;
    color: var(--primary);
}

small, .small {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

a {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
    text-decoration: none;
}

button, .button {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
}

.link-2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
    text-decoration: underline;
    background: transparent;
    border: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .subtitle, .h1-sub {
        font-size: 18px;
    }

    h2, .h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    h3, .h3 {
        font-size: 20px;
        letter-spacing: -1px;
    }
}

ul {
	list-style-position: inside;}

::marker {
    font-size: xx-small;
}

.grey-background {
	    background: var(--accent);
}
/* ============================================
   HEADER LAYOUT - ALL SCREENS
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
}

.header a {
    color: var(--white);
}

.hamburger-line {
    background: var(--white);
}

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    flex-shrink: 0;
}

/* Hide hamburger on desktop */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 30px;
    height: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   LOGO - LEFT
   ============================================ */

.site-branding {
    flex-shrink: 0;
}

.site-branding a,
.site-branding .custom-logo-link {
    display: block;
    line-height: 0;
}

.site-logo,
.custom-logo {
    width: 177px;
    height: auto;
    display: block;
}

/* ============================================
   MAIN NAVIGATION - CENTER
   ============================================ */

.main-navigation {
    flex: 1;
    display: none; /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        justify-content: center;
    }
}

/* Target WordPress menu wrapper */
.main-navigation .primary-menu-list,
.main-navigation #primary-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Target the actual ul - but not submenus */
.main-navigation > ul,
.main-navigation .primary-menu-list > ul,
.main-navigation #primary-menu > ul,
.main-navigation .primary-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: border 0.8s ease-in-out;
    letter-spacing: 0.5px;
	padding-bottom: 5px;
	border-bottom: 1px solid transparent;
}

.main-navigation a:hover {
    border-bottom: 1px solid white;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

/* Position parent menu items with children */
.main-navigation .menu-item-has-children {
    position: relative;
}

/* Hide submenus by default */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background-color: var(--white);
    min-width: 250px;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    flex-direction: column;
    gap: 0;
}

/* Show submenu on hover */
.main-navigation .menu-item-has-children:hover > .sub-menu {
    display: flex;
}

/* Submenu items */
.main-navigation .sub-menu li {
    margin: 0;
    width: 100%;
}

/* Submenu links */
.main-navigation .sub-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--primary);
    text-transform: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation .sub-menu li:last-child a {
    border-bottom: none;
}

/* Submenu link hover */
.main-navigation .sub-menu a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* ============================================
   CONTACT BUTTON - RIGHT
   ============================================ */

.header-cta {
    flex-shrink: 0;
    display: none; /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .header-cta {
        display: block;
    }
}



/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 1023px) {
    .header {
        padding: 20px 20px;
        gap: 20px;
    }
    
    .site-logo,
    .custom-logo {
        width: 140px;
    }
}


/* ============================================
   MOBILE MENU OVERLAY - BLUEPRINT STYLE
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
    text-align: center;
}

/* Mobile Menu Header - Top Section with Close Button */
.mobile-menu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    z-index: 10001;
    max-width: 1600px;
    margin: 0 auto;
}

/* Close Button */
.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    font-size: 40px;
    line-height: 1;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

/* Mobile Logo */
.mobile-logo {
    animation: fadeInDown 0.5s ease;
}

.mobile-logo a {
    display: inline-block;
}

.mobile-logo img,
.mobile-site-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Mobile Navigation */
.mobile-navigation {
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.6s ease 0.2s both;
}

.mobile-navigation .mobile-menu-list {
    display: block;
}

.mobile-menu-list,
.mobile-menu-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
}

.mobile-menu-list li a,
.mobile-menu-list a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 20px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu-list li a:hover,
.mobile-menu-list a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Hide submenus in mobile */
.mobile-menu-list .sub-menu {
    display: none;
}

/* Mobile Menu CTA Button */
.mobile-menu-cta {
    padding: 20px;
    margin-top: 20px;
    animation: fadeIn 0.6s ease 0.3s both;
}

.mobile-menu-cta .contact-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: white;
    color: black;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu-cta .contact-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 30px 30px;
    font-family: 'Poppins', sans-serif;
}

.site-footer a {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.site-footer h4,
.site-footer .footer-contact-details a,
.site-footer .footer-contact-details p {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-email {
    margin: 20px 0;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 100px) {
.footer-grid {
    gap: 40px;
	}
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
	justify-content: space-between;
    gap: 40px;

}

/* Logo Column */
.footer-logo-column {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

/* Footer Headings */
.footer-heading {
	font-weight: 500;
 
    font-size: 20px;
    margin-bottom: 33px;
    
}

/* Footer Menus */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}


.footer-menu a {

    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 26px;
}

.social-icon:hover {
    transform: scale(1.5);
    
}

.social-icon:hover i {
    color: #ffffff;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 15px;
	align-items: flex-start;
	justify-content: space-between;
    flex-wrap: wrap;
}

.footer-badge-widget {
    display: inline-block;
}

.footer-badge-widget img,
.footer-badge {
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
	align-items: flex-start;
}

/* Hide widget titles in footer badges */
.footer-badges .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-links a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
	letter-spacing: normal;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    .footer-bottom-links {
        flex-direction: column;
		width: 100%
     
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 20px;
    }
    
    .footer-menu a,
    .footer-contact-details p,
    .footer-copyright,
    .footer-bottom-links a {
        font-size: 16px;
    }
    
    .footer-badge {
        height: 50px;
    }
}



/* ============================================================================
   Demo
  ============================================================================ */

#development-horton {
	order:2;
}

#development-butleigh {
	order:3;
}

/* ============================================================================
   Background Color Classes
  ============================================================================ */

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-tertiary {
    background-color: var(--tertiary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-text1 {
    background-color: var(--text1) !important;
}

.bg-text2 {
    background-color: var(--text2) !important;
}

.bg-gradient {
    background: linear-gradient(to bottom, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
}

/* ============================================================================
   Text Color Classes
  ============================================================================ */

.text-primary {
    color: var(--primary) !important;
}

.text-primary * {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-secondary * {
    color: var(--secondary) !important;
}

.text-tertiary {
    color: var(--tertiary) !important;
}

.text-tertiary * {
    color: var(--tertiary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-accent * {
    color: var(--accent) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-white * {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-black * {
    color: var(--black) !important;
}

.text-text1 {
    color: var(--text1) !important;
}

.text-text1 * {
    color: var(--text1) !important;
}

.text-text2 {
    color: var(--text2) !important;
}

.text-text2 * {
    color: var(--text2) !important;
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */



.contact-section .contact-title {
    margin-bottom: 40px;
    text-align: left;
}




/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.form-message h3 {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-info-item {
        gap: 15px;
    }
    
    .contact-info-item i {
        font-size: 20px;
        min-width: 24px;
    }
    
    .contact-info-item span {
        font-size: 14px;
    }
}

/* ============================================================================
   CONTACT MAP SECTION
   ============================================================================ */

.contact-map-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Background image overlay with opacity control */
.contact-map-section.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image-url);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* Ensure content stays above the background image */
.contact-map-section.has-bg-image > * {
    position: relative;
    z-index: 1;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-map-section .map-column {
    position: relative;
    overflow: hidden;
}

.contact-map-section .map-column .acf-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-map-section .content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
    gap: 30px;
}

.contact-map-section .map-title {
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
}

.contact-map-section .map-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.contact-map-section .map-address {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.contact-map-section .button-directions {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary);
    color: var(--white)!important;
    border: 2px solid var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
}

.contact-map-section .button-directions:hover {
    background-color: transparent;
    color: var(--primary)!important;
    border: 2px solid var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-map-section .map-column {
        min-height: 400px;
    }
    
    .contact-map-section .content-column {
        padding: 60px 40px;
    }
    
    .contact-map-section .map-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-map-section .content-column {
        padding: 40px 20px;
    }
    
    .contact-map-section .map-title {
        font-size: 2rem;
    }
    
    .contact-map-section .map-subtitle {
        font-size: 1rem;
    }
    
    .contact-map-section .map-address {
        font-size: 1rem;
    }
}
/* ========================================
   Case Study Hero Section
   ======================================== */

.case-study-hero {
    padding: 6rem 0 0;
    min-height: 900px;
    display: block;
    position: relative;
    overflow: visible;
    z-index: 1;
    align-items: center;
    background: linear-gradient(to bottom, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
}

.case-study-hero .container {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    padding-bottom: 3rem;
}

.case-study-hero .hero-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.case-study-hero .hero-menu-item {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0;
    margin: 0;
    opacity: 0.95;
    border-bottom: 3px solid #ffffff50;
    width: 300px;
    text-align: left;
    color: var(--white);
    padding: 20px 0;
	transition: border 0.5s ease-in-out;
}


.case-study-hero .hero-menu-item:hover {
	border-bottom: 3px solid white;
}

.case-study-hero .hero-content-wrapper {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.case-study-hero .case-study-categories {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
    margin: 20px 0;
}

.case-study-hero .case-study-category + .case-study-category {
    margin-left: 30px;
}

.case-study-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    color: var(--white);
}

.case-study-hero .hero-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 0;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--white);
}

.case-study-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.case-study-hero .hero-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.case-study-hero  .hero-button:first-child {
    background-color: #0e0e2c;
    color: white;
}

.case-study-hero  .hero-button:first-child:hover {
    background-color: #0a0a20;
    transform: translateY(-2px);
}

.case-study-hero .hero-button:nth-child(2) {
    background-color: #0a2b5e;
    color: white;
}

.case-study-hero .hero-button:nth-child(2):hover {
    background-color: #082348;
    transform: translateY(-2px);
}


.hero-images {
    width: 100%;
    max-width: 1440px;
    margin: -300px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-images img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: block;
}

/* ========================================
   Case Study Overview Section
   ======================================== */

.case-study-overview {
    padding: 80px 0 80px;
}

.case-study-overview .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-overview .overview-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.case-study-overview .overview-text {
    position: sticky;
    top: 120px;
}

.case-study-overview h2 {
    margin: 0 0 20px 0;
}

.case-study-overview .overview-intro {
    margin: 0;
}

.case-study-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-study-overview .overview-item {
    padding: 30px;
    border: 1px solid var(--secondary);
    border-radius: 0px;
    background: #ffffff;
}

.case-study-overview .overview-item h3 {
    font-weight: 400;
    margin: 0 0 15px 0;
}

.case-study-overview .overview-item p {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

/* ========================================
   Case Study Process Section
   ======================================== */

.case-study-process {
    padding: 80px 0;
}

.case-study-process .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-process h2 {
    margin: 0 0 20px 0;
    text-align: center;
    color: var(--white);
}

.case-study-process .process-intro {
    text-align: center;
    margin: 0 auto 50px;
}

.case-study-process .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.case-study-process .process-item {
    padding: 30px;
    background: var(--primary);
}

.case-study-process .process-number {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    background: #fff;
    aspect-ratio: 1;
    width: 60px;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.case-study-process .process-item h3 {
    color: var(--white);
    font-weight: 400;
    margin: 0 0 15px 0;
}

.case-study-process .process-item p {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

/* ========================================
   Case Study Features Section
   ======================================== */

.case-study-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-study-features .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study-features h2 {
    margin: 0 0 20px 0;
}

.case-study-features .features-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.case-study-features .feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
}

.case-study-features .feature-item:nth-child(even) {
    direction: rtl;
}

.case-study-features .feature-item:nth-child(even) > * {
    direction: ltr;
}

.case-study-features .feature-image {
    position: relative;
    overflow: hidden;
}

.case-study-features .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.case-study-features .feature-content {
    padding: 0px;
}

.case-study-features .feature-content .feature-number {
    background: var(--secondary);
    color: #ffffff;
    padding: 0px 10px;
    display: inline-block;
    text-transform: uppercase;
}

.case-study-features .feature-content h3 {
    font-weight: 400;
    margin: 10px 0;
}

.case-study-features .feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.case-study-features .feature-checkmarks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-features .feature-checkmarks li {
    padding: 8px 0;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.case-study-features .feature-checkmarks .checkmark {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   Case Study Testimonial Section
   ======================================== */

.case-study-testimonial-section {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.case-study-testimonial-section.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.case-study-testimonial-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.case-study-testimonial-section .testimonial-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 50px 0;
    text-align: center;
}

.case-study-testimonial-section .testimonial-card {
    position: relative;
    padding: 40px 20px;
}

.case-study-testimonial-section .testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 150px;
    font-weight: 500;
    line-height: 0.5;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin: 0;
    padding: 0;
}

.case-study-testimonial-section .testimonial-stars {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: -20px;
    line-height: 1;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.case-study-testimonial-section .testimonial-stars .star {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.case-study-testimonial-section .testimonial-stars .star.filled {
    color: #ffffff;
}

.case-study-testimonial-section .testimonial-text {
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300;
}

.case-study-testimonial-section .testimonial-author {
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

/* ========================================
    Related Services Section
   ======================================== */
.post-listing-section.related-case-studies {
    padding: 80px 0;
    background-color: var(--accent);
}

.post-listing-section.related-case-studies .post-listing-header {
    margin-bottom: 40px;
}

.post-listing-section.related-case-studies .post-listing-header h2 {
    margin: 0;
}

/* ========================================
   Case Study Responsive Style Section
   ======================================== */

@media (max-width: 1024px) {
    .case-study-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .case-study-overview .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-process .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-features .feature-item {
        grid-template-columns: 1fr;
    }
    
    .case-study-features .feature-item:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .case-study-hero {
        padding: 40px 0;
    }

    .case-study-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-study-hero .hero-menu-wrapper {
        align-items: center;
    }

    .case-study-hero .hero-menu-item {
        text-align: center;
    }

    .hero-images {
        margin: -60px auto 0;
    }
    
    .case-study-hero h1 {
        font-size: 2rem;
    }
    
    .case-study-overview,
    .case-study-process,
    .case-study-features,
    .case-study-testimonial {
        padding: 40px 0;
    }
    
    .case-study-overview h2,
    .case-study-process h2,
    .case-study-features h2 {
        font-size: 2rem;
    }
    
    .case-study-process .process-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-features .feature-content {
        padding: 30px 0px;
    }

        .case-study-overview .overview-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-study-overview .overview-text {
        position: relative;
        margin-bottom: 40px;
        top: 50px
    }
    
    .case-study-overview .overview-grid {
        grid-template-columns: 1fr;
    }

    .case-study-testimonial-section {
        padding: 60px 0;
    }
    
    .case-study-testimonial-section .testimonial-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .case-study-testimonial-section .testimonial-quote {
        font-size: 100px;
    }
    
    .case-study-testimonial-section .testimonial-text {
        font-size: 16px;
    }
    
    .case-study-testimonial-section .testimonial-author {
        font-size: 18px;
    }
}


/* ========================================
   Service Hero Section
   ======================================== */

.services-hero {
    padding: 6rem 0 0;
    min-height: 900px;
    display: flex;
    position: relative;
    overflow: visible;
    z-index: 1;
    align-items: center;
    background: linear-gradient(to bottom, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
}

.services-hero .container {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding-bottom: 3rem;
}

.services-hero .hero-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.services-hero .hero-menu-item {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0;
    margin: 0;
    opacity: 0.95;
    border-bottom: 3px solid #ffffff50;
    width: 300px;
    text-align: left;
    color: var(--white);
    padding: 20px 0;
}

.services-hero .hero-content-wrapper {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.services-hero h1 {
    margin: 0 0 1rem 0;
    color: var(--white);
}

.services-hero .hero-description {
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--white);
}

.services-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.services-hero .hero-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.services-hero  .hero-button:first-child {
    background-color: #0e0e2c;
    color: white;
}

.services-hero  .hero-button:first-child:hover {
    background-color: #0a0a20;
    transform: translateY(-2px);
}

.services-hero .hero-button:nth-child(2) {
    background-color: #0a2b5e;
    color: white;
}

.services-hero .hero-button:nth-child(2):hover {
    background-color: #082348;
    transform: translateY(-2px);
}


.services-hero .hero-images {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-images img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: block;
}

/* ========================================
   Services Overview Section
   ======================================== */

.services-overview {
    padding: 80px 0 80px;
}

.services-overview .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-overview .overview-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.services-overview h2 {
    margin: 0 0 20px 0;
}

.services-overview .overview-intro {
    margin: 0;
}

.services-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-overview .overview-item {
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #ffffff;
    justify-items: flex-start;
}

.services-overview .overview-item img {
    height: 20px;
    width: max-content;
}

.services-overview .overview-item-icon {
    padding: 5px;
    background-color: lightgray;
    aspect-ratio: 1 / 1;
    width: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-overview .overview-item h3 {
    margin: 15px 0;
    text-align: left;
}

.services-overview .overview-item p {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

/* ========================================
   Services packages Section
   ======================================== */

.services-packages {
    padding: 80px 0;
}

.services-packages .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-packages h2 {
    margin: 0 0 20px 0;
}

.services-packages .packages-intro {
    text-align: center;
    margin: 0 auto 50px;
}

.services-packages .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-packages .packages-grid--two-col {
    grid-template-columns: repeat(2, 1fr);
}

.services-packages .package-card {
    border: 1px solid #ecf1f4;
    border-radius: 8px;
    padding: 30px;
	    height: 100%;
	display: flex;
    flex-direction: column;
	    justify-content: space-between;
	min-height: 500px;
}

.services-packages .package-card.popular {
    border: 1px solid var(--secondary);
    border-radius: 8px;
    padding: 30px;
    background-color: #ecf1f4;
}

.services-packages .package-card .price {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
}
.services-packages .package-card .subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--primary);
    margin: 0px;
}

.services-packages .packages-number {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    background: #fff;
    aspect-ratio: 1;
    width: 60px;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.services-packages .packages-item h3 {
    color: var(--white);
    font-weight: 400;
    margin: 0 0 15px 0;
}

.services-packages .packages-item p {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

.services-packages ul {
    margin-bottom: 30px;
}

.services-packages p.small {
    max-width: 60%;
    margin: auto;
    margin-top: 20px;
}

p.price-wrap.vat {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-packages li.packages-item {
    list-style: none;
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    color: var(--black);
	font-weight: 400;
}

.services-packages li.packages-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.services-packages li.packages-item-no-check {
    list-style: none;
    padding: 6px 0 6px 0;
    text-align: left;
}

.services-packages .service-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0px;
    transition: all 0.3s ease;
    align-self: center;
    text-transform: uppercase;
	width: 100%;
}

.services-packages .service-button:hover {
    background-color: transparent;
    color: var(--primary);
}

@media (max-width: 768px) {
    .services-packages .packages-grid,
    .services-packages .packages-grid--two-col {
        grid-template-columns: 1fr;
    }
	
	.services-packages p.small {
		max-width: 100%;
		margin-bottom: 30px;
	}

}

/* ========================================
   Services Testimonial Section
   ======================================== */

.services-testimonial-section {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-testimonial-section.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.services-testimonial-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services-testimonial-section .testimonial-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.services-testimonial-section .testimonials-slider-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0 80px;
}

.services-testimonial-section .testimonials-slider {
    overflow: hidden;
}

.services-testimonial-section .testimonials-track {
    overflow: hidden;
}

.services-testimonial-section .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: #ffffff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}



.services-testimonial-section .slider-arrow--prev {
    left: 20px;
}

.services-testimonial-section .slider-arrow--next {
    right: 20px;
}

.services-testimonial-section .slider-arrow svg {
    height: 1.2em;
    width: 1.2em;
    fill: var(--white);
}
.services-testimonial-section .slider-arrow:hover svg {
    opacity: 0.9;
}

.services-testimonial-section .testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.services-testimonial-section .pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.services-testimonial-section .pagination-dot.active {
    background: #ffffff;
}

.services-testimonial-section .testimonial-card {
    position: relative;
    padding: 60px 40px;
}

.services-testimonial-section .testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 150px;
    font-weight: 500;
    line-height: 0.5;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    padding: 0;
}

.services-testimonial-section .testimonial-stars {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: -20px;
    line-height: 1;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.services-testimonial-section .testimonial-stars .star {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.services-testimonial-section .testimonial-stars .star.filled {
    color: #ffffff;
}

.services-testimonial-section .testimonial-text {
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300;
}

.services-testimonial-section .testimonial-author {
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}



/* ========================================
   Other Services Section
   ======================================== */

.services-other {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
}

.services-other h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--white);
}

.services-other .other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-other .other-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.services-other .other-service-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0px;
}

.services-other .other-service-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-other .other-service-item h3 {
    margin: 0;
    font-size: 1.2rem;
}

.services-other .service-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0px;
    transition: all 0.3s ease;
    align-self: center;
    text-transform: uppercase;
}

.services-other .service-button:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* ========================================
   Services Responsive Style Section
   ======================================== */

@media (max-width: 1024px) {
    .services-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-overview .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .services-packages .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-features .feature-item {
        grid-template-columns: 1fr;
    }
    
    .services-features .feature-item:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 40px 0;
    }

    .services-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-hero .hero-menu-wrapper {
        align-items: center;
    }

    .services-hero .hero-menu-item {
        text-align: center;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero .hero-description {
        font-size: 16px;
    }

    .hero-images {
        margin: -60px auto 0;
    }

    .services-hero .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .services-overview,
    .services-packages,
    .services-features,
    .services-testimonial {
        padding: 40px 0;
    }
    
    .services-overview h2,
    .services-packages h2,
    .services-features h2 {
        font-size: 2rem;
    }
    
    .services-other .other-services-grid,
    .services-packages .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-features .feature-content {
        padding: 30px 0px;
    }

        .services-overview .overview-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-overview .overview-text {
        position: relative;
        margin-bottom: 40px;
        top: 50px
    }
    
    .services-overview .overview-grid {
        grid-template-columns: 1fr;
    }

    .services-testimonial-section {
        padding: 60px 0;
    }
    
    .services-testimonial-section .testimonial-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-testimonial-section .testimonial-quote {
        font-size: 100px;
    }
    
    .services-testimonial-section .testimonial-text {
        font-size: 16px;
    }
    
    .services-testimonial-section .testimonial-author {
        font-size: 18px;
    }
}
