/* CSS Variables */
:root {
    --primary-color: #1a4d8f;
    --primary-dark: #0f3666;
    --primary-light: #2c7bc7;
    --secondary-color: #3a9ad9;
    --accent-color: #f0a500;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 10px 24px;
    border-radius: 6px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 54, 102, 0.5) 0%, rgba(26, 77, 143, 0.45) 50%, rgba(44, 123, 199, 0.4) 100%);
    z-index: 1;
}

.slideshow-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(240, 165, 0, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 50%;
    animation-delay: 12s;
    animation-duration: 24s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -500px) scale(1.5);
        opacity: 0;
    }
}

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

.hero-text {
    max-width: 800px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInSlide 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    color: var(--accent-color);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(240, 165, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 700px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 1s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 1.2s; }
.stat-card:nth-child(2) { animation-delay: 1.4s; }
.stat-card:nth-child(3) { animation-delay: 1.6s; }

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

/* Compliance Frameworks Section */
.compliance-frameworks {
    background: linear-gradient(135deg, #0f3666 0%, #1a4d8f 100%);
    position: relative;
    overflow: hidden;
}

.compliance-frameworks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1639322537228-f710d846310a?w=1920&h=600&fit=crop&q=80') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.compliance-frameworks .container {
    position: relative;
    z-index: 1;
}

.frameworks-title {
    color: var(--text-white) !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.compliance-frameworks .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.framework-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.framework-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.2), rgba(58, 154, 217, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.framework-badge:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(240, 165, 0, 0.3);
}

.framework-badge:hover::before {
    opacity: 1;
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.framework-badge:hover .badge-icon {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: rotate(360deg) scale(1.1);
}

.framework-badge span {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Services Section */

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

.service-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(26, 77, 143, 0.05), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-out;
    border-radius: 50%;
}

.service-card:hover::after {
    width: 600px;
    height: 600px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(26, 77, 143, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(26, 77, 143, 0.3);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Expertise Section */
.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-image {
    position: relative;
    z-index: 1;
}

.expertise-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: block;
    transition: var(--transition);
}

.expertise-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.expertise-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.expertise-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.expertise-text p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Past Performance Section */
.past-performance {
    background: var(--bg-light);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.performance-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Certifications & Standards Section */
.certifications-standards {
    padding: 100px 20px;
    background: var(--bg-white);
}

.cert-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-logo-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cert-logo-card:hover {
    transform: translateY(-12px);
}

.cert-logo-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.cert-logo-card:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.cert-logo-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.cert-logo-card:hover h4 {
    color: var(--primary-color);
}

.performance-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.performance-bg {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    position: relative;
}

.performance-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 77, 143, 0.8) 100%);
    transition: opacity 0.4s ease;
}

.performance-card:hover .performance-bg {
    transform: scale(1.08);
}

.performance-card:hover .performance-bg::after {
    opacity: 0.5;
}

.performance-content {
    padding: 0 32px 40px;
    position: relative;
}

.performance-logo {
    margin-top: -50px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(26, 77, 143, 0.3);
    border: 4px solid var(--bg-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-card:hover .logo-circle {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 12px 32px rgba(26, 77, 143, 0.4);
}

.performance-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(26, 77, 143, 0.15);
}

.performance-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.performance-card:hover h3 {
    color: var(--primary-color);
}

.performance-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Certifications Section */
.certifications {
    background: var(--primary-color);
    color: var(--text-white);
}

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

.cert-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.cert-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-list li {
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cert-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cert-list strong {
    color: var(--text-white);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.service-area {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.service-area h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-area p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: var(--bg-white);
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-logo p {
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-content h4 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-contact p {
    margin-bottom: 8px;
}

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

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 140px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .frameworks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .framework-badge {
        padding: 20px 16px;
    }
    
    .framework-badge span {
        font-size: 0.95rem;
    }
    
    .slideshow-indicators {
        bottom: 60px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .performance-bg {
        height: 180px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Fade animations and scroll effects */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.service-card,
.performance-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for icons */
@keyframes pulse-icon {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 77, 143, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(26, 77, 143, 0);
    }
}

.service-card:hover .service-icon {
    animation: pulse-icon 1.5s infinite;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0f3666 0%, #1a4d8f 100%);
    padding: 160px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1639322537228-f710d846310a?w=1920&h=600&fit=crop&q=80') center/cover;
    opacity: 0.1;
}

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

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 16px;
}

.highlight-purple {
    color: #a78bfa;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detailed Page */
.services-detailed {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-detailed-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detailed-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(26, 77, 143, 0.15);
}

.service-detailed-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-icon-overlay {
    position: absolute;
    bottom: -30px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(26, 77, 143, 0.3);
    transition: all 0.4s ease;
}

.service-detailed-card:hover .service-icon-overlay {
    transform: rotate(360deg) scale(1.1);
}

.service-detailed-content {
    padding: 40px 32px 32px;
}

.service-detailed-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-detailed-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    padding-left: 8px;
}

/* Training Page Styles */
.training-header {
    background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 100%);
}

.training-section {
    padding: 100px 20px;
}

.training-section.alt-bg {
    background: var(--bg-light);
}

.section-tag.gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: var(--text-dark);
}

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

.training-grid.specializations {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.training-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.training-card:hover::before {
    transform: scaleX(1);
}

.training-card.featured::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 77, 143, 0.12);
}

.training-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.training-card.featured .training-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.training-card:hover .training-icon {
    transform: scale(1.1) rotate(5deg);
}

.training-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--text-white);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.training-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: var(--text-dark);
}

.training-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.training-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.training-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.training-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.training-features li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.training-features li:last-child {
    border-bottom: none;
}

.training-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.training-duration {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Compact training cards */
.training-card.compact {
    padding: 24px;
}

.training-icon-small {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 16px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-top: 12px;
}

.learn-more:hover {
    padding-left: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 80px 20px;
    text-align: center;
    color: var(--text-white);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 20px 60px;
    }
    
    .training-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .btn-small,
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .performance-grid-two {
        grid-template-columns: 1fr;
    }
    
    .cert-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cert-badge-icon {
        width: 100px;
        height: 100px;
    }
    
    .cert-logo {
        font-size: 1.4rem;
    }
}

/* About Page Styles */
.about-content {
    padding: 100px 20px;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Page Adjustments */
.contact {
    background: var(--bg-light);
    padding-top: 0;
}

/* Form select styling */
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select + label {
    top: -10px;
    left: 12px;
    font-size: 0.875rem;
    color: var(--primary-color);
    background: var(--bg-white);
    padding: 0 4px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 992px) {
    .cert-badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        gap: 32px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .nav-cta {
        width: 90%;
        max-width: 300px;
    }

    .cert-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cert-shield,
    .cert-circle,
    .cert-rectangle {
        width: 120px;
        height: 140px;
    }
    
    .cert-main-logo {
        font-size: 1.8rem;
    }
    
    .cert-org-name {
        font-size: 0.4rem;
    }
    
    .cert-dual-circles {
        width: 140px;
        height: 120px;
    }
    
    .dual-circle {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .cert-shield,
    .cert-circle,
    .cert-rectangle {
        width: 100px;
        height: 120px;
    }
    
    .cert-main-logo {
        font-size: 1.5rem;
    }
    
    .cert-main-logo-large {
        font-size: 2rem;
    }
}

/* Update mobile responsive for cert logos */
@media (max-width: 992px) {
    .cert-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cert-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .cert-logo-card img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .cert-logo-card img {
        width: 120px;
        height: 120px;
    }
    
    .cert-logo-card h4 {
        font-size: 0.9rem;
    }
}

/* Certification Logo Grid Styles */
.cert-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-logo-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-logo-card:hover {
    transform: translateY(-12px);
}

.cert-logo-card img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
}

.cert-logo-card:hover img {
    filter: drop-shadow(0 8px 24px rgba(26, 77, 143, 0.3));
    transform: scale(1.05);
}

.cert-logo-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.cert-logo-card:hover h4 {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cert-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .cert-logo-card img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .cert-logo-card img {
        width: 100px;
        height: 100px;
    }
    
    .cert-logo-card h4 {
        font-size: 0.9rem;
    }
}

/* ===== Service Detail Pages - Mobile Responsive ===== */
.service-detail-content {
    padding: 60px 20px;
}

.service-detail-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-grid .main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-detail-grid .main-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.service-detail-grid .main-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-grid .main-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.service-detail-grid .main-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.service-detail-grid .sidebar a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.service-detail-grid .sidebar a:hover {
    color: var(--primary-light);
}

.service-detail-grid .cta-box h3 {
    color: white;
    margin-bottom: 12px;
}

.service-detail-grid .cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Tablet and below - Stack to single column and move sidebar to bottom */
@media (max-width: 992px) {
    .service-detail-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .service-detail-grid .main-content {
        order: 1;
    }
    
    .service-detail-grid .sidebar {
        order: 2;
        position: static !important;
        top: auto !important;
        margin-top: 20px;
    }
    
    .service-detail-grid .sidebar-card {
        margin-bottom: 20px !important;
    }
    
    .service-detail-grid .sidebar-card ul {
        padding-left: 0 !important;
    }
    
    .service-detail-grid .sidebar-card ul li {
        padding: 16px 0 !important;
    }
    
    .service-detail-grid .cta-box {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-detail-content {
        padding: 40px 16px;
    }
    
    .service-detail-grid {
        gap: 32px !important;
    }
    
    .service-detail-grid .main-content h2 {
        font-size: 1.75rem;
    }
    
    .service-detail-grid .main-content h3 {
        font-size: 1.25rem;
    }
    
    .service-detail-grid .sidebar {
        margin-top: 32px;
    }
    
    .service-detail-grid .sidebar-card,
    .service-detail-grid .cta-box {
        padding: 24px !important;
    }
    
    .service-detail-grid .cta-box {
        padding: 28px 20px !important;
        max-width: 100%;
    }
    
    .service-detail-grid .cta-box h3 {
        font-size: 1.3rem !important;
    }
    
    .service-detail-grid .cta-box p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .service-detail-grid .cta-box .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .service-detail-grid .values-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .service-detail-content {
        padding: 32px 12px;
    }
    
    .service-detail-grid {
        gap: 24px !important;
    }
    
    .service-detail-grid .main-content h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-grid .main-content h3 {
        font-size: 1.15rem;
    }
    
    .service-detail-grid .sidebar {
        margin-top: 24px;
    }
    
    .service-detail-grid .sidebar-card,
    .service-detail-grid .cta-box {
        padding: 20px !important;
        border-radius: 12px !important;
    }
    
    .service-detail-grid .sidebar-card h3 {
        font-size: 1.1rem !important;
    }
    
    .service-detail-grid .sidebar-card ul li {
        padding: 14px 0 !important;
        font-size: 0.95rem;
    }
    
    .service-detail-grid .cta-box h3 {
        font-size: 1.2rem !important;
    }
    
    .service-detail-grid .cta-box p {
        font-size: 0.95rem !important;
    }
    
    .service-detail-grid .cta-box .btn {
        width: 100%;
        padding: 16px 24px;
        text-align: center;
    }
}
