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

:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #ff6b35;
    --accent-pink: #ff006e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --bg-light: #f9fafb;
    --bg-dark: #0a0a0a;
    --success: #10b981;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s;
}

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

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    margin-top: 10px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
}

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

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Add invisible padding area below dropdown parent for seamless hover */
.nav-menu .dropdown::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    z-index: 1;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
}

.nav-menu .dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 4px;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: calc(100% - 10px); /* Overlap with parent for seamless hover */
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    padding-top: 15px; /* Extra padding at top for hover area */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    list-style: none;
    z-index: 1001;
    pointer-events: none; /* Prevent interaction when hidden */
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Enable interaction when visible */
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.nav-menu .dropdown-menu li {
    padding: 0;
}

.nav-menu .dropdown-menu a {
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-menu .dropdown-menu a:hover {
    background: #f3f4f6;
    color: #3b82f6;
    padding-left: 24px;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.30) 100%), 
                url('assets/work%20examples/Scaffold%20fade.jpg') center center / cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    background-blend-mode: darken;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Section */
.section {
    padding: 80px 20px;
}

.bg-white {
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
}

/* Image-Based Service Cards */
.services-grid-image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-image {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: white;
    transition: opacity 0.3s;
}

.service-card-image:hover .service-overlay {
    opacity: 0;
}

.service-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97), rgba(26, 26, 26, 0.97));
    padding: 40px 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-image:hover .service-hover {
    opacity: 1;
}

.service-hover h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: white;
}

.service-hover p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.service-hover ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-hover ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: white;
}

.service-hover ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.btn-small {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-small:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
}

.shop-link {
    color: var(--accent) !important;
    font-weight: 600;
}

.shop-link:hover {
    color: var(--primary) !important;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Portfolio Carousel */
.portfolio-carousel {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.portfolio-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px;
}

.portfolio-track::-webkit-scrollbar {
    display: none;
}

.portfolio-slide {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-slide img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: #f5f5f5;
}

.portfolio-info {
    text-align: center;
    margin-top: 30px;
    max-width: 700px;
}

.portfolio-info h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.portfolio-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.portfolio-carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.portfolio-carousel-btn:hover {
    background: var(--accent-pink);
    transform: translateY(-50%) scale(1.1);
}

.portfolio-prev {
    left: 0;
}

.portfolio-next {
    right: 0;
}

.portfolio-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.portfolio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-dot.active {
    background: var(--accent);
    width: 10px;
    height: 10px;
}

.portfolio-dot:hover {
    background: var(--accent-pink);
}

/* Stats */
.stats {
    background: var(--bg-light);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Testimonials Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 60px;
}

.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 20px;
}

.testimonial-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 16px;
    border-left: 6px solid var(--accent);
    flex-shrink: 0;
    scroll-snap-align: center;
    box-sizing: border-box;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
    background: var(--accent-pink);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--accent-pink);
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--success);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

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

/* Assessment Styles */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.value-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.question-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

.question-number {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.question-card h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    padding: 16px 20px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    font-size: 1rem;
}

.option-btn:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.option-btn.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.yes-no {
    flex-direction: row;
}

.yes-no .option-btn {
    flex: 1;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-btn {
    padding: 12px 32px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}

.nav-btn.primary {
    background: var(--primary);
    color: white;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.score-display {
    text-align: center;
    background: white;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.score-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-inner {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.score-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.score-message {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    border-left: 4px solid;
    background: var(--bg-light);
    border-radius: 8px;
}

.score-message h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.next-steps-card {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    border-radius: 16px;
    text-align: center;
}

.next-steps-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.next-steps-card p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.footer h3 {
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

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

.hidden {
    display: none !important;
}

/* Certification Ticker Banner */
.cert-ticker-wrapper {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
    padding: 12px 0;
    border-bottom: 3px solid #3b82f6;
}

.cert-ticker {
    display: flex;
    white-space: nowrap;
}

.cert-ticker-content {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    padding-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cert-ticker:hover .cert-ticker-content {
    animation-play-state: paused;
}

.cert-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 20px;
}

.cert-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cert-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding: 0 10px;
}

/* Certifications Section */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certification-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.certification-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.certification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

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

.certification-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.certification-note {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.certification-note svg {
    width: 40px;
    height: 40px;
    color: #3b82f6;
    flex-shrink: 0;
}

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

.certification-note p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        padding: 0;
        z-index: 9999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu > li > a {
        padding: 15px 20px !important;
        color: var(--text-dark);
        font-size: 1rem;
    }

    /* Remove extra padding from dropdown parent on mobile */
    .nav-menu .dropdown > a {
        padding: 15px 20px !important;
    }

    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9fafb;
        display: none;
        padding: 0;
        pointer-events: auto;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-menu a {
        padding: 12px 20px 12px 40px !important;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--text-dark);
        z-index: 10000;
    }

    /* Hide nav CTA on mobile to save space */
    .nav-cta {
        display: none;
    }

    /* Adjust nav height for mobile */
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    /* Resize logo for mobile */
    .logo {
        height: 35px;
    }

    .hero {
        margin-top: 60px;
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

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

    .section {
        padding: 50px 0;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .yes-no {
        flex-direction: column;
    }

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

    .testimonial-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .portfolio-carousel {
        padding: 0 60px;
    }

    .portfolio-carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .portfolio-slide img {
        max-height: 400px;
    }

    .portfolio-info h3 {
        font-size: 1.5rem;
    }

    .portfolio-info p {
        font-size: 1rem;
    }

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

    .certification-note {
        flex-direction: column;
        text-align: center;
    }

    .certification-note svg {
        margin: 0 auto;
    }

    .cert-ticker-wrapper {
        margin-top: 60px;
        padding: 10px 0;
    }

    .cert-item {
        font-size: 0.75rem;
        padding: 0 10px;
        gap: 6px;
    }

    .cert-item svg {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px;
        min-height: 14px;
        flex-shrink: 0;
    }

    .cert-divider {
        font-size: 1rem;
        padding: 0 8px;
    }

    .cert-ticker-content {
        padding-right: 30px;
    }
}
