


        /* --- RESET & VARIABLES --- */
        :root {
            /* Brand Colors */
            --primary-teal: #00897B;
            --teal-dark: #00695C;
            --navy-blue: #1A237E;
            --sky-blue: #E1F5FE;
            --white: #ffffff;
            --text-dark: #2C3E50;
            --text-light: #F5F5F5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* --- NAVIGATION --- */
        nav {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy-blue);
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--primary-teal);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-teal);
        }

        .btn {
            background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
            color: var(--white);
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
        }

        .btn:hover {
            background: linear-gradient(135deg, var(--teal-dark), var(--navy-blue));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 137, 123, 0.4);
        }

        /* --- SERVICES HERO --- */
        .services-hero {
            background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-teal) 100%);
            padding: 100px 0 80px;
            color: var(--white);
            text-align: center;
        }

        .services-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .services-hero p {
            font-size: 1.3rem;
            margin-bottom: 15px;
            opacity: 0.95;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-hero .subtitle {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- WHY CHOOSE SECTION --- */
        .why-choose-intro {
            padding: 80px 0;
            background: var(--white);
        }

        .why-choose-intro h2 {
            font-size: 2.5rem;
            color: var(--navy-blue);
            text-align: center;
            margin-bottom: 20px;
        }

        .why-choose-intro .intro-text {
            text-align: center;
            font-size: 1.15rem;
            color: var(--text-dark);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .why-card {
            background: var(--white);
            border: 2px solid var(--sky-blue);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .why-card:hover {
            border-color: var(--primary-teal);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 137, 123, 0.15);
        }

        .why-card i {
            font-size: 3rem;
            color: var(--primary-teal);
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.3rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
        }

        .why-card p {
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* --- SERVICE CATEGORY SECTION --- */
        .service-category {
            padding: 80px 0;
            /* background: var(--sky-blue); */
             background: var(--sky-blue);
        }

        .service-category:nth-child(even) {
            background: var(--white);
        }

        .category-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .category-header h2 {
            font-size: 2.8rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
            font-weight: 800;
        }

        .category-header .subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.8;
        }

        /* Service Cards with Images */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 137, 123, 0.2);
        }

        .service-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.6rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-content ul {
            margin: 20px 0;
            padding-left: 0;
        }

        .service-content li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .service-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: 900;
            font-size: 1.2rem;
        }

        .service-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 15px;
        }

        /* --- SPECIALTY SECTION --- */
        .specialty-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navy-blue) 0%, #0d47a1 100%);
            color: var(--white);
        }

        .specialty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .specialty-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .specialty-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .specialty-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--sky-blue);
        }

        .specialty-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .specialty-card p {
            line-height: 1.8;
            opacity: 0.9;
        }

        /* --- PROCESS SECTION --- */
        .process-section {
            padding: 80px 0;
            background: var(--white);
        }

        .process-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--navy-blue);
            margin-bottom: 12px;
        }

        .process-section .subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.8;
            margin-bottom: 60px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 900;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(0, 137, 123, 0.3);
        }

        .process-step h3 {
            font-size: 1.2rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
        }

        .process-step p {
            color: var(--text-dark);
            line-height: 1.0;
        }

        /* --- CTA SECTION --- */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 40px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-btn-primary {
            background: var(--white);
            color: var(--primary-teal);
        }

        .cta-btn-primary:hover {
            background: var(--navy-blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        .cta-btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .cta-btn-secondary:hover {
            background: var(--white);
            color: var(--primary-teal);
            transform: translateY(-3px);
        }


        /* --- SERVICE PRICING SECTION --- */
        .service-pricing {
            padding: 30px 0;
            /* background: var(--sky-blue); */
             background: var(--sky-blue);
        }

        .category-pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .category-pricing-header h2 {
            font-size: 2.8rem;
            color: var(--navy-blue);
            margin-bottom: 10px;
            font-weight: 800;
        }

        .category-pricing-header .subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.8;
        }

        .service-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .service-pricing-card {
            background: var(--white);
            border: 2px solid var(--sky-blue);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-pricing-card:hover {
            border-color: var(--primary-teal);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 137, 123, 0.15);
        }

        .service-pricing-card i {
            font-size: 3rem;
            color: var(--primary-teal);
            margin-bottom: 20px;
        }

        .service-pricing-card h3 {
            font-size: 1.3rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
        }

        .service-pricing-card p {
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* --- FOOTER --- */
        footer {
            background: linear-gradient(to bottom, #0d1117, #161b22);
            color: #c9d1d9;
            padding-top: 90px;
            font-size: 0.95rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-teal), var(--navy-blue), var(--primary-teal));
            box-shadow: 0 2px 10px rgba(0, 137, 123, 0.3);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.1fr 1.2fr 1.2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-teal), transparent);
            border-radius: 2px;
        }

        .footer-about p {
            margin-bottom: 25px;
            line-height: 1.9;
            color: #8b949e;
            font-size: 0.95rem;
        }

        .footer-certifications {
            display: flex;
            gap: 12px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .cert-badge {
            background: rgba(0, 137, 123, 0.15);
            border: 1.5px solid var(--primary-teal);
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--primary-teal);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .cert-badge:hover {
            background: rgba(0, 137, 123, 0.25);
            transform: translateY(-2px);
        }

        .cert-badge i {
            font-size: 0.95rem;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #8b949e;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--primary-teal);
            padding-left: 8px;
        }

        .footer-links a i {
            font-size: 0.75rem;
            color: var(--primary-teal);
            transition: all 0.3s ease;
        }

        .footer-links a:hover i {
            transform: translateX(3px);
        }

        .contact-info li {
            display: flex;
            gap: 18px;
            margin-bottom: 25px;
            align-items: flex-start;
            transition: all 0.3s ease;
            padding: 10px 0;
        }

        .contact-info li:hover {
            padding-left: 5px;
        }

        .contact-info i {
            color: var(--primary-teal);
            margin-top: 3px;
            font-size: 1.2rem;
            width: 22px;
        }

        .contact-info span {
            color: #8b949e;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .social-footer {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .social-footer a {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #21262d, #2d333b);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            font-size: 1.1rem;
        }

        .social-footer a:hover {
            background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
            color: white;
            border-color: var(--primary-teal);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 137, 123, 0.4);
        }

        .footer-newsletter {
            margin-top: 30px;
        }

        .footer-newsletter p {
            color: #8b949e;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 18px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #30363d;
            background: #21262d;
            border-radius: 8px;
            color: var(--white);
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-teal);
            background: #2d333b;
            box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.15);
        }

        .newsletter-form input::placeholder {
            color: #6e7681;
        }

        .newsletter-form button {
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
            color: var(--white);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
        }

        .newsletter-form button:hover {
            background: linear-gradient(135deg, var(--teal-dark), var(--navy-blue));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 137, 123, 0.4);
        }

        .copyright-area {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 20px 0;
            border-top: 1px solid rgba(0, 137, 123, 0.2);
        }

        .copyright-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .copyright-content p {
            margin: 0;
            color: #ccc;
            font-size: 0.85rem;
        }

        .copyright-content p strong {
            color: var(--primary-teal);
            font-weight: 700;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #6e7681;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--primary-teal);
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

        /* --- NEW STYLES FOR SERVICE SHOWCASE --- */
        .service-showcase {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .service-showcase.reverse {
            flex-direction: row-reverse;
        }

        .service-showcase:nth-child(even) { /* To alternate backgrounds */
            background: var(--sky-blue);
        }

        .service-image-container {
            flex: 1;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .showcase-image {
            width: 100%;
            height: 550px; /* Consistent height */
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease-in-out;
        }

        .service-image-container:hover .showcase-image {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            backdrop-filter: blur(5px);
        }

        .service-details {
            flex: 1;
        }

        .service-details h3 {
            font-size: 2rem;
            color: var(--navy-blue);
            margin-bottom: 15px;
        }

        .service-description {
            font-size: 1.1rem;
            color: var(--text-dark);
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .service-list {
            margin: 0 0 25px 0;
            padding-left: 0;
        }

        .service-list li {
            padding: 8px 0;
            padding-left: 35px;
            position: relative;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 1rem;
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: 900;
            font-size: 1.2rem;
        }

        .service-meta {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .service-meta .service-tag {
            background: var(--primary-teal);
            font-size: 0.8rem;
            padding: 8px 15px;
            border-radius: 15px;
            opacity: 0.9;
        }

        .service-meta .service-tag.highlight {
            background: linear-gradient(135deg, var(--teal-dark), var(--navy-blue));
            font-weight: 700;
        }

        .service-meta .service-tag i {
            margin-right: 5px;
        }

        /* --- NEW STYLES FOR SPECIALIZED SERVICES --- */
        .specialty-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .specialty-service-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .specialty-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0, 137, 123, 0.2);
        }

        .specialty-image-wrapper {
            position: relative;
            width: 100%;
            height: 280px; /* Fixed height for images */
            overflow: hidden;
        }

        .specialty-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
        }

        .specialty-service-card:hover .specialty-image {
            transform: scale(1.05);
        }

        .specialty-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--sky-blue);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .specialty-content {
            padding: 30px;
            flex-grow: 1; /* Allows content to take up remaining space */
        }

        .specialty-content h3 {
            font-size: 1.55rem;
            color: var(--navy-blue);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .specialty-description {
            font-size: 1.05rem;
            color: var(--text-dark);
            opacity: 0.9;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .specialty-features {
            margin-bottom: 25px;
            padding-left: 0;
        }

        .specialty-features li {
            padding: 6px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .specialty-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: 900;
            font-size: 1.1rem;
        }

        .specialty-footer {
            margin-top: auto; /* Pushes footer to the bottom */
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 15px;
            border-top: 1px solid var(--sky-blue);
        }

        .specialty-tag {
            background: var(--primary-teal);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.78rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .specialty-tag i {
            font-size: 0.85rem;
        }

        .specialty-cta {
            background: linear-gradient(135deg, var(--navy-blue), var(--teal-dark));
            color: var(--white);
            padding: 50px 40px;
            border-radius: 16px;
            text-align: center;
            margin-top: 60px;
            box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
        }

        .specialty-cta h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .specialty-cta p {
            font-size: 1.15rem;
            opacity: 0.9;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-btn-specialty {
            background: var(--white);
            color: var(--primary-teal);
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        .cta-btn-specialty:hover {
            background: var(--navy-blue);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(26, 35, 126, 0.4);
        }


        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }

            .services-hero p {
                font-size: 1.1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-showcase {
                flex-direction: column;
                gap: 30px;
            }

            .service-showcase.reverse {
                flex-direction: column;
            }

            .service-image-container {
                width: 100%;
            }

            .showcase-image {
                height: 400px;
            }

            .service-details {
                text-align: center;
            }

            .service-list {
                text-align: left;
                display: inline-block; /* To center list items */
            }

            .service-list li {
                text-align: left;
            }

            .service-meta {
                justify-content: center;
            }

            .specialty-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .services-hero h1 {
                font-size: 2rem;
            }

            .category-header h2 {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .service-showcase {
                padding: 30px;
            }

            .image-overlay {
                font-size: 1rem;
                padding: 8px 15px;
            }

            .specialty-services-grid {
                grid-template-columns: 1fr;
            }

            .specialty-service-card {
                margin-bottom: 30px; /* Add spacing between cards when stacked */
            }

            .specialty-cta {
                padding: 40px 20px;
            }

            .specialty-cta h3 {
                font-size: 1.8rem;
            }

            .specialty-cta p {
                font-size: 1.1rem;
            }

            .cta-btn-specialty {
                font-size: 1rem;
                padding: 12px 28px;
            }
        }


        /* --- NEW STYLES FOR PROCESS FLOW --- */
        .process-flowchart {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .process-flow-step {
            flex: 1;
            text-align: center;
            position: relative;
            min-width: 200px; /* Ensure minimum width for each step */
        }

        .flow-step-wrapper {
            background: var(--white);
            border: 1.15px solid var(--sky-blue);
            border-radius: 12px;
            padding: 10px 5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 245px; /* Fixed height for consistency */
        }

        .process-flow-step:hover .flow-step-wrapper {
            border-color: var(--primary-teal);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 137, 123, 0.15);
        }

        .flow-icon {
            font-size: 1.75rem;
            color: var(--primary-teal);
            margin-bottom: 5px;
        }

        .flow-number {
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--teal-dark);
            opacity: 0.3;
            margin-bottom: 0.85px;
        }

        .flow-content h3 {
            font-size: 1.0rem;
            color: var(--navy-blue);
            margin-bottom: 7px;
            font-weight: 700;
        }

        .flow-content p {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.35;
            margin-bottom: 10px;
            flex-grow: 1; /* Allow paragraph to take available space */
        }

        .flow-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            color: var(--primary-teal);
            font-weight: 600;
            margin-top: auto; /* Push to bottom */
        }

        .flow-detail i {
            font-size: 1rem;
        }

        .flow-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            width: 100px; /* Space for connector */
        }

        .connector-line {
            width: 2px;
            height: 70px;
            background: linear-gradient(to bottom, var(--primary-teal), var(--teal-dark));
            margin: 10px 0;
        }

        .connector-arrow {
            font-size: 1.45rem;
            color: var(--primary-teal);
            transform: rotate(90deg); /* Point right */
        }

        /* Process Benefits Banner */
        .process-benefits {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: var(--sky-blue);
            padding: 40px 30px;
            border-radius: 12px;
            margin-top: 50px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            color: var(--navy-blue);
            font-weight: 600;
        }

        .benefit-item i {
            color: var(--primary-teal);
            font-size: 1.8rem;
        }


        /* --- RESPONSIVE FOR PROCESS FLOW --- */
        @media (max-width: 992px) {
            .process-flowchart {
                flex-direction: column;
                gap: 40px;
                align-items: stretch; /* Make steps take full width */
            }

            .flow-connector {
                display: none; /* Hide connectors in column view */
            }

            .process-flow-step {
                min-width: unset; /* Reset minimum width */
                width: 100%;
            }

            .flow-step-wrapper {
                height: auto; /* Auto height for column view */
            }

            .flow-content p {
                margin-bottom: 15px; /* Ensure spacing */
            }

            .process-benefits {
                flex-direction: column;
                text-align: center;
            }

            .benefit-item {
                justify-content: center;
                width: 100%;
                margin-bottom: 20px;
            }

            .benefit-item:last-child {
                margin-bottom: 0;
            }
        }


        /* --- NEW STYLES FOR CIRCULAR PROCESS FLOW --- */
        .process-circle-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0;
            position: relative;
        }

        .process-circle {
            position: relative;
            width: 400px;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-step {
            position: absolute;
            width: 100px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: transform 0.5s ease-in-out;
        }

        .step-1 { transform: translate(0, -180px); }
        .step-2 { transform: translate(180px, 0); }
        .step-3 { transform: translate(0, 180px); }
        .step-4 { transform: translate(-180px, 0); }

        .circle-step:hover .step-card {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 137, 123, 0.15);
            border-color: var(--primary-teal);
        }

        .step-card {
            background: var(--white);
            border: 2px solid var(--sky-blue);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 160px; /* Adjust card width */
            height: 170px; /* Adjust card height */
            justify-content: space-between;
        }

        .step-icon { font-size: 2rem; color: var(--primary-teal); margin-bottom: 8px; }
        .step-number { font-size: 1.2rem; font-weight: 900; color: var(--teal-dark); opacity: 0.3; margin-bottom: 5px; }
        .step-card h3 { font-size: 1.1rem; color: var(--navy-blue); margin-bottom: 5px; font-weight: 700; }
        .step-card p { font-size: 0.85rem; color: var(--text-dark); line-height: 1.5; margin-bottom: 10px; }

        .step-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: var(--primary-teal);
            font-weight: 600;
        }

        .step-badge i { font-size: 0.8rem; }

        /* Circular connector styles */
        .circle-connector {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: visible; /* Ensure arrows are visible */
        }

        .animated-path {
            stroke-dasharray: 0; /* Initially hidden */
            stroke-dashoffset: 0;
            animation: drawPath 5s ease-in-out infinite;
        }

        .path-1 { animation-delay: 0s; }
        .path-2 { animation-delay: 0.2s; }
        .path-3 { animation-delay: 0.4s; }
        .path-4 { animation-delay: 0.6s; }

        @keyframes drawPath {
            from { stroke-dasharray: 0, 1000; stroke-dashoffset: 1000; }
            to { stroke-dasharray: 1000, 1000; stroke-dashoffset: 0; }
        }

        .center-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--primary-teal);
            z-index: 10;
        }

        .center-icon i {
            font-size: 3rem;
            margin-bottom: 10px;
            animation: rotateCenter 6s linear infinite;
        }

        .center-icon span {
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.8;
        }

        @keyframes rotateCenter {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Adjustments for circular flow responsiveness */
        @media (max-width: 992px) {
            .process-circle { width: 300px; height: 300px; }
            .circle-step { width: 80px; height: 80px; }
            .step-1 { transform: translate(0, -140px); }
            .step-2 { transform: translate(140px, 0); }
            .step-3 { transform: translate(0, 140px); }
            .step-4 { transform: translate(-140px, 0); }

            .step-card { width: 140px; height: 150px; padding: 15px; }
            .step-icon { font-size: 1.6rem; }
            .step-number { font-size: 1rem; }
            .step-card h3 { font-size: 1rem; }
            .step-card p { font-size: 0.8rem; }
            .step-badge { font-size: 0.7rem; }
            .center-icon i { font-size: 2.5rem; }
            .center-icon span { font-size: 0.8rem; }
            .circle-connector { transform: scale(0.75); } /* Scale down the connector */
        }

        @media (max-width: 768px) {
            .process-circle-wrapper { display: none; } /* Hide circular flow on smaller screens */
            .process-flowchart { display: flex; } /* Show the linear flowchart */
        }


        /* --- CIRCULAR PROCESS FLOW --- */
.process-circular-container {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-flowchart-circular {
    position: relative;
    width: 800px; /* Increased from 650px to push cards apart */
    height: 800px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Icon Style */
.central-excellence {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
}

.excellence-inner {
    text-align: center;
    color: var(--white);
}

.excellence-inner i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    display: block;
    margin-bottom: 5px;
}

.fa-spin-slow {
    animation: spin 8s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.excellence-inner span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Positioning Steps at Cardinal Points */
.process-flow-step {
    position: absolute;
    width: 280px; /* Slightly wider cards */
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-top { top: -20px; left: 50%; transform: translateX(-50%); }
.step-right { right: -40px; top: 50%; transform: translateY(-50%); }
.step-bottom { bottom: -20px; left: 50%; transform: translateX(-50%); }
.step-left { left: -40px; top: 50%; transform: translateY(-50%); }

.flow-step-wrapper {
    background: var(--white);
    border: 2px solid var(--sky-blue);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.process-flow-step:hover .flow-step-wrapper {
    border-color: var(--primary-teal);
    transform: scale(1.05);
}

.step-top:hover { transform: translate(-50%, -15px); }
.step-right:hover { transform: translate(15px, -50%); }
.step-bottom:hover { transform: translate(-50%, 15px); }
.step-left:hover { transform: translate(-15px, -50%); }

/* SVG Arrows Styles */
.flow-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.arrow-path {
    fill: none;
    stroke: var(--primary-teal);
    stroke-width: 2;
    stroke-dasharray: 8;
    opacity: 0.3;
    /* We use a larger radius in the SVG viewbox (d="M 400...") */
}

@keyframes dash {
    to { stroke-dashoffset: -20; }
}

/* --- RESPONSIVE BEHAVIOR --- */
@media (max-width: 992px) {
    .process-flowchart-circular {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .process-flow-step, 
    .central-excellence, 
    .flow-arrows {
        position: static;
        transform: none !important;
    }

    .process-flow-step {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 90%;
        max-width: 400px;
    }

    .central-excellence {
        order: -1; /* Keep icon at top or hide on mobile */
        margin-bottom: 20px;
    }

    .flow-arrows { display: none; }
    
    .process-flow-step {
        width: 100%;
        max-width: 350px;
    }
}
