/* Green Certificates & Incentives Page Styles */

@import url('../components/service-page-header.css');
@import url('../components/filter-search.css');
@import url('../sections/services-page-shared.css');

/* Main Layout */
main {
    /* Header height + buffer */
    background-color: #ffffff;
    display: block;
}



/* Page Header Section */
.page-header {
    padding: 4rem 0; /* Increased padding */
    background-color: #ffffff;
}

.page-header .container {
    max-width: 90%;
    width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: left;
    margin-bottom: 2rem;
}

/* Use global h2 styles for uniformity */

.section-header .highlight {
    color: #2c8c5e;
    font-weight: 500;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem; /* Increased margin */
    margin-bottom: 3rem; /* Added bottom margin */
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #2c8c5e;
    color: white;
    border-color: #2c8c5e;
}

.btn-primary:hover {
    background-color: #1a7140;
    border-color: #1a7140;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 140, 94, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c8c5e;
    border-color: #2c8c5e;
}

.btn-secondary:hover {
    background-color: #2c8c5e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 140, 94, 0.2);
}

/* Hero Section Styles */
.hero.parallax-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: image-set(
    url('../../images-opt/sustainability-hero-w1280.avif') type('image/avif') 1x,
    url('../../images-opt/sustainability-hero-w960.avif') type('image/avif') 2x,
    url('../../images-opt/sustainability-hero-w1280.webp') type('image/webp') 1x,
    url('../../images-opt/sustainability-hero-w960.webp') type('image/webp') 2x,
    url('../../images-opt/sustainability-hero-w1280.jpg') type('image/jpeg') 1x,
    url('../../images-opt/sustainability-hero-w960.jpg') type('image/jpeg') 2x
  );
  background-image: url('../../images/sustainability-hero.jpg'); /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 20, 0, 0.8), rgba(0, 0, 0, 0.5));
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 90%;
    width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero .animated-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.3s;
}

.hero .animated-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.6s;
}

.hero .scroll-down-btn {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.9s;
}

.hero .scroll-down-btn i {
    margin-right: 10px;
    animation: bounce 2s infinite;
}

.hero .scroll-down-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Certificates Overview Section */
.certificates-overview {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.certificates-overview .container {
    max-width: 90%;
    width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Use global .section-title styles */

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-card {
    position: relative;
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: linear-gradient(135deg, #1a7140, #2c8c5e);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
    transform: rotateY(0deg);
}

.card-back {
    background: white;
    padding: 2rem;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.certificate-card:hover .card-front {
    transform: rotateY(-180deg);
}

.certificate-card:hover .card-back {
    transform: rotateY(0deg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff;
}

.card-prompt {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.certificate-card:hover .card-prompt {
    opacity: 1;
}

.certificate-card:hover .card-prompt::before {
    content: "Hover to learn more";
}

.certificate-card .card-prompt::before {
    content: "Click to learn more";
}

.card-back h3 {
    color: #2c8c5e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-back p {
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    align-self: flex-start;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #2c8c5e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #1a7140;
    transform: translateY(-2px);
}

/* Services and Benefits Section */
.services-benefits-section {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 50px;
    margin-top: 2rem;
}

.services-info {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 2rem;
    border-right: none;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 50px;
}

/* Headings in this section inherit global styles; remove local underline */

.services-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 50px;
}

/* Service items - New vertical card design */
.service-item {
    position: relative;
    width: 100%;
    padding: 0;
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); 
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 350px;
}

/* Card header with image and title merged - thinner design */
.service-item .card-header-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    min-height: auto;
}

/* Certification image styling - smaller and integrated */
.cert-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-logo {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

.service-item:hover .cert-image {
    transform: scale(1.1) rotate(5deg);
}

/* Service content - now includes title in header */
.service-item .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
}

/* Title styling - now in header section */
.service-item .service-title {
    flex: 1;
    margin: 0;
}

/* Style for the gradient border pseudo-element */
.service-item::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border: 2px solid transparent; 
    border-radius: inherit;
    background: linear-gradient(45deg, #2c8c5e, #1a7140) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

/* Title styling in header section */
.service-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: #2c8c5e;
}

/* Description text styling */
.service-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: #555;
}

/* Service buttons container - now at bottom */
.service-buttons {
    padding: 0 2rem 2rem 2rem;
    margin-top: auto;
}

/* Submit button style - minimal design */
.pricing-btn {
    display: block;
    width: auto;
    max-width: 200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #999;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
}

.pricing-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Remove learn button from new design */
.learn-btn {
    display: none;
}

/* Animation trigger */
.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add hover effect for service items */
.service-item:hover {
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 12px 28px rgba(44, 140, 94, 0.25); 
    border-color: #d5d5d5;
}

/* Enhance buttons on card hover */
.service-item:hover .pricing-btn {
    background-color: #333;
    color: white;
    border-color: #333;
}

.service-item:hover .learn-btn {
    background-color: #2c8c5e;
    color: white;
    border-color: #2c8c5e;
}

/* Interactive Image Section */
.interactive-image-wrapper {
    position: relative;
    cursor: pointer;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 30px;
    background-color: #f8f9fb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.interactive-image-wrapper:hover {
     box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.interactive-image-wrapper h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    border-radius: 50px;
    overflow: hidden;
}

.interactive-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(44, 140, 94, 0.7), rgba(26, 113, 64, 0.7));
    mix-blend-mode: multiply;
    clip-path: polygon(0 0, 65% 0, 35% 100%, 0 100%);
    transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-benefits {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 55%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
    pointer-events: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.image-benefits .benefit-item {
    margin-bottom: 0.8rem;
    opacity: 1;
    transform: none;
}

.image-benefits .benefit-item:last-child {
    margin-bottom: 0;
}

.image-benefits .benefit-item i {
    font-size: 1.2rem; 
    padding: 0.6rem;
    color: #2c8c5e;
    background-color: rgba(44, 140, 94, 0.1);
    border-radius: 50%;
}

.image-benefits .benefit-item h4 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.image-benefits .benefit-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
    margin-bottom: 0;
}

.hover-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Hover Effects */
.interactive-image-wrapper:hover .interactive-image {
    transform: scale(1.05);
}

.interactive-image-wrapper:hover .image-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.interactive-image-wrapper:hover .image-benefits {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.interactive-image-wrapper:hover .hover-prompt {
    opacity: 0;
}

/* Consultation CTA Button */
.consultation-cta {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.btn-consultation {
    background: linear-gradient(135deg, #2c8c5e, #1a7140);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(44, 140, 94, 0.3);
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #1a7140, #2c8c5e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 140, 94, 0.4);
    color: white;
}

/* Benefit Item styles for observer */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease;
}

.benefit-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Incentives Section */
.incentives-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.incentives-section .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Training-inspired styles for incentives */
.explore-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    position: relative;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.explore-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c8c5e;
    width: 100%;
}

.explore-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.incentives-tabs {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.tab-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #2c8c5e;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.tab-button:hover {
    background-color: rgba(44, 140, 94, 0.05);
    color: #2c8c5e;
}

.tab-button.active {
    color: #2c8c5e;
    background-color: rgba(44, 140, 94, 0.1);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.incentives-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
}

.incentive-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.incentive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.incentive-header h3 {
    color: #333;
    font-size: 1.3rem;
}

.incentive-badge {
    background-color: #2c8c5e;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.incentive-item p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.eligibility-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.eligibility-list li {
    margin-bottom: 0.5rem;
    color: #555;
    position: relative;
}

.eligibility-list li:before {
    content: '•';
    color: #2c8c5e;
    position: absolute;
    left: -1rem;
}

.incentive-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    color: #2c8c5e;
    text-decoration: none;
    border: 1px solid #2c8c5e;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.incentive-btn:hover {
    background-color: #2c8c5e;
    color: white;
}

/* === ADD CAROUSEL STYLES (Copied from airtightness-styles.css) === */
.services-carousel { /* Note: Using the same class name for consistency */
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background: #f6f6f8; /* Light background for the whole section */
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Center the carousel intro section */
.carousel-intro {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

/* Use global heading styles in carousel intro */

.carousel-intro p {
    color: var(--gray-600); /* Use gray color from :root */
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    height: auto;
    box-sizing: border-box;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Ensure carousel takes full width */
}

.carousel-item {
    flex: 0 0 calc(100% - 40px); /* Calculate item width considering margin */
    margin: 0 20px; /* Add margin for spacing */
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 100px; /* Adjust padding as needed */
    border-radius: 50px; /* Rounded corners for items */
    height: 450px; /* Fixed height for consistency */
    box-sizing: border-box;
    /* Add background colors/gradients per item if desired */
}

/* Example background colors (adjust as needed for Green Cert page) */
.carousel-item:nth-child(1) {
    background: linear-gradient(135deg, #a8d880, #76b65e); /* Example Green */
}

.carousel-item:nth-child(2) {
    background: linear-gradient(135deg, #80c9d8, #5eabb6); /* Example Teal */
}

.carousel-item:nth-child(3) {
    background: linear-gradient(135deg, #d8b880, #b6965e); /* Example Gold */
}

.carousel-item:nth-child(4) {
    background: linear-gradient(135deg, #80a8d8, #5e86b6); /* Example Blue */
}
.carousel-item:nth-child(5) {
    background: linear-gradient(135deg, #c0a0d8, #9a78b6); /* Example Purple */
}
.carousel-item:nth-child(6) {
    background: linear-gradient(135deg, #d89a80, #b67a5e); /* Example Coral/Terracotta */
}
/* Add more styles for other items if needed */


.item-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.text-content {
    flex: 1;
    padding: 20px;
    margin-left: 0;
    text-align: left;
}

.text-content h2 {
    font-size: 44px;
    color: white;
    margin: 0 0 20px;
    font-weight: bold;
}

.text-content h3 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.text-content p {
    font-size: 16px;
    color: white;
    margin: 0 0 40px; /* Keep original margin */
}

.text-content .btn { /* Style for buttons inside carousel text */
    padding: 10px 40px;
    font-size: 16px;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.text-content .btn:hover {
    background: white;
    color: #5eabb6; /* Example color - adjust as needed */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-content {
    flex-shrink: 0;
    width: 400px; /* Adjust size as needed */
    height: 400px; /* Adjust size as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%; /* Circular image container */
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the circle */
}

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

.indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-500); /* Darker inactive dots */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicators span.active {
    background: white;
    transform: scale(1.2);
    border-color: var(--primary); /* Use primary color for active border */
}

.indicators span:hover {
    background: var(--primary); /* Use primary color for hover */
}

/* Responsive styles for the new carousel */
@media (max-width: 1024px) {
    .carousel-wrapper {
        height: auto;
        /* Allow horizontal scroll on smaller screens if needed, but overflow: hidden is default */
        /* overflow-x: auto; */
    }

    .carousel-item {
        padding: 60px;
        height: auto;
    }

    .image-content {
        width: 250px;
        height: 250px;
    }
     .text-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .services-benefits-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1.5rem;
    }
    
    .services-info {
        position: relative;
        top: auto;
        text-align: center;
    }
    
    /* Improve service items for medium tablets */
    .service-item {
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
    
    .cert-image {
        width: 110px;
        height: 110px;
    }
    
    .certification-logo {
        max-width: 85px;
        max-height: 85px;
    }
    
    .image-benefits {
        position: static;
        width: 100%;
        opacity: 1;
        transform: none;
        margin-top: 1.5rem;
        pointer-events: auto;
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .hover-prompt {
        display: none;
    }
    
    .interactive-image-wrapper:hover .image-benefits {
        transform: none;
    }
    
    .image-overlay {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .services-benefits-section {
        padding: 1rem;
        border-radius: 25px;
    }
    
    .services-info {
        padding: 1rem;
        border-radius: 25px;
    }
    
    .services-timeline {
        padding: 1rem;
        border-radius: 25px;
    }
    
    .service-item {
        padding: 1.5rem;
        border-radius: 25px;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        min-height: auto;
    }
    
    .cert-image {
        align-self: center;
        margin-bottom: 1rem;
        width: 100px;
        height: 100px;
    }
    
    .certification-logo {
        max-width: 80px;
        max-height: 80px;
    }
    
    /* Better card layout for tablets */
    .card-header-section {
        padding: 1rem 1.25rem 0.75rem 1.25rem !important;
        flex-direction: row !important;
        gap: 0.875rem !important;
        min-height: auto !important;
    }
    
    .service-item h3 {
        font-size: 1.15rem;
        line-height: 1.3;
    }
    
    .service-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-content {
        padding: 1rem 1.5rem !important;
    }
    
    .service-buttons {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 1 40%;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta .cta-title {
        font-size: 2rem !important;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        text-align: center;
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .breadcrumb {
        padding: 0 1rem;
    }
    
    .page-header .container {
        padding: 0 1rem;
    }
    
    .certificates-overview .container {
        padding: 0 1rem;
    }
    
    /* Incentive Services Intro responsive */
    .incentive-services-intro {
        padding: 3rem 0;
    }
    
    .intro-left {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .intro-left h3 {
        font-size: 1.5rem;
    }
    
    .benefits-content {
        margin-bottom: 2.5rem;
    }
    
    .intro-right h3 {
        font-size: 1.8rem;
    }
    
    .services-description {
        font-size: 1.1rem;
    }
    
    .btn-highlight {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .card-header {
        padding: 2rem 2rem 1rem 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-card-main .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-main .card-icon i {
        font-size: 1.8rem;
    }
    
    .service-card-main h4 {
        font-size: 1.3rem;
    }
    
    .service-card-main p {
        padding: 0 2rem;
    }
    
    .card-cta {
        padding: 1.5rem 2rem 2rem 2rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero .animated-title {
        font-size: 2rem;
    }
    
    .hero .animated-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced service card mobile optimization */
    .service-item {
        border-radius: 15px !important;
        margin-bottom: 1.5rem;
        min-height: auto !important;
    }
    
    /* Mobile header section */
    .card-header-section {
        padding: 1rem 1rem 0.75rem 1rem !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.75rem !important;
        min-height: auto !important;
        flex-wrap: nowrap !important;
    }
    
    /* Reduce certification image size for mobile */
    .cert-image {
        width: 50px !important;
        height: 50px !important;
        border-radius: 10px !important;
    }
    
    .certification-logo {
        max-width: 35px !important;
        max-height: 35px !important;
    }
    
    /* Mobile title styling */
    .service-item h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        flex: 1 !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Mobile content section */
    .service-content {
        padding: 1rem 1.25rem !important;
    }
    
    .service-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile button section */
    .service-buttons {
        padding: 0 1.25rem 1.25rem 1.25rem !important;
    }
    
    .pricing-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
        border-radius: 20px !important;
        max-width: 180px !important;
    }
}

/* Additional breakpoint for very small screens */
@media (max-width: 480px) {
    .services-benefits-section {
        padding: 0.75rem !important;
        border-radius: 15px !important;
    }
    
    .services-info {
        padding: 0.75rem !important;
    }
    
    .services-timeline {
        padding: 0.75rem !important;
        gap: 1rem !important;
    }
    
    .service-item {
        border-radius: 12px !important;
        margin-bottom: 1rem !important;
    }
    
    /* Very small screen header */
    .card-header-section {
        padding: 0.875rem 0.875rem 0.625rem 0.875rem !important;
        gap: 0.625rem !important;
        flex-wrap: nowrap !important;
        min-height: auto !important;
    }
    
    .cert-image {
        width: 45px !important;
        height: 45px !important;
        border-radius: 8px !important;
    }
    
    .certification-logo {
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    .service-item h3 {
        font-size: 0.9rem !important;
        line-height: 1.15 !important;
        flex: 1 !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Very small screen content */
    .service-content {
        padding: 0.75rem 1rem !important;
    }
    
    .service-item p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* Very small screen buttons */
    .service-buttons {
        padding: 0 1rem 1rem 1rem !important;
    }
    
    .pricing-btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 18px !important;
        max-width: 160px !important;
    }
}

/* Improve landscape orientation on small devices */
@media (max-width: 768px) and (orientation: landscape) {
    .service-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .card-header-section {
        padding: 0.75rem 1rem 0.5rem 1rem !important;
    }
    
    .cert-image {
        width: 45px !important;
        height: 45px !important;
    }
    
    .certification-logo {
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    .service-content {
        padding: 0.75rem 1rem !important;
        text-align: center;
    }
    
    .service-buttons {
        padding: 0 1rem 0.75rem 1rem !important;
        text-align: center;
    }
    
    .pricing-btn {
        max-width: 150px !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* Incentive Services Introduction Section */
.incentive-services-intro {
   
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.incentive-services-intro .container {
    max-width: 90%;
    width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - 1/3 */
.intro-left {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.intro-left h3 {
    font-size: 1.8rem;
    color: #2c8c5e;
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefits-content {
    margin-bottom: 3.5rem;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.benefit-point:last-child {
    margin-bottom: 0;
}

.benefit-point i {
    font-size: 1.5rem;
    color: #2c8c5e;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-point h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-point p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.btn-outline-primary {
    background-color: transparent;
    color: #2c8c5e;
    border: 2px solid #2c8c5e;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-primary:hover {
    background-color: #2c8c5e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 140, 94, 0.3);
}

/* Eye-catching Highlight Button */
.btn-highlight {
    background: linear-gradient(135deg, #2c8c5e, #1a7140);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(44, 140, 94, 0.3);
}

.btn-highlight:hover {
    background: linear-gradient(135deg, #1a7140, #2c8c5e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 140, 94, 0.4);
}

/* Right Column - 2/3 */
.intro-right {
    padding: 1rem 0;
}

.intro-right h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services-grid {
    display: block;
    margin-bottom: 3rem;
}

/* Enhanced Interactive Service Card */
.service-card-main {
    background: white;
    padding: 0;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.service-card-main.interactive:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: #2c8c5e;
}

.card-header {
    padding: 2.5rem 2.5rem 1rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-card-main .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c8c5e, #1a7140);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-card-main.interactive:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(44, 140, 94, 0.4);
}

.service-card-main .card-icon i {
    font-size: 2rem;
    color: white;
}

.service-card-main h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
}

.service-card-main p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    padding: 0 2.5rem;
}

.card-cta {
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(44, 140, 94, 0.02));
}

.card-cta .btn {
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.service-card-main.interactive:hover .card-cta .btn {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(44, 140, 94, 0.3);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Incentive Services Introduction */
@media (max-width: 1024px) {
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero .animated-title {
        font-size: 2rem;
    }
    
    .hero .animated-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .breadcrumb {
        padding: 0 0.5rem;
    }
    
    .page-header .container {
        padding: 0 0.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta .cta-title {
        font-size: 1.8rem !important;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    /* Incentive Services Intro responsive for small screens */
    .intro-layout {
        gap: 2rem;
    }
    
    .intro-left {
        padding: 1.25rem;
    }
    
    .benefits-content {
        margin-bottom: 2rem;
    }
    
    .benefit-point {
        margin-bottom: 1.5rem;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .service-card-main p {
        padding: 0 1.5rem;
    }
    
    .card-cta {
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Certification Process Section */
.certification-process {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.certification-process .container {
    max-width: 90%;
    width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.process-container {
    margin-bottom: 5rem;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    width: 4px;
    background-color: #ddd;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-steps {
    position: relative;
}

.process-step {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.process-step:nth-child(1) { --i: 1; }
.process-step:nth-child(2) { --i: 2; }
.process-step:nth-child(3) { --i: 3; }
.process-step:nth-child(4) { --i: 4; }

.step-number {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #2c8c5e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-content {
    width: 45%;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: auto;
}

.process-step:nth-child(even) .step-content {
    margin-left: 0;
    margin-right: auto;
}

.step-content h3 {
    color: #2c8c5e;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #555;
    line-height: 1.5;
}

/* Mobile timeline adjustments */
@media (max-width: 768px) {
  .process-timeline { padding-left: 28px; }
  .timeline-track { left: 28px; width: 3px; }
  .step-number { left: 28px; width: 42px; height: 42px; font-size: 1.1rem; box-shadow: 0 0 0 4px #fff; transform: translateX(-50%); }
  .step-content { width: calc(100% - 60px); margin-left: 3.5rem; }
  .process-step:nth-child(even) .step-content { margin-right: 0; margin-left: 3.5rem; }
}

@media (max-width: 576px) {
  .process-timeline { padding-left: 24px; }
  .timeline-track { left: 24px; width: 2px; }
  .step-number { left: 24px; width: 36px; height: 36px; font-size: 0.95rem; box-shadow: 0 0 0 3px #fff; transform: translateX(-50%); }
  .step-content { width: calc(100% - 52px); margin-left: 3rem; padding: 1rem; border-radius: 12px; }
  .step-content h3 { font-size: 1rem; }
  .step-content p { font-size: 0.9rem; line-height: 1.4; }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c8c5e, #1a7140);
    color: white;
    text-align: center;
    padding: 6.25rem 1rem 4rem 1rem; /* More bottom padding */
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    /* Override the global section bottom padding from energy-modeling.css */
    padding-bottom: 6.25rem !important;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 150px 75px rgba(255,255,255,0.04),
                0 0 300px 150px rgba(255,255,255,0.04),
                0 0 500px 250px rgba(255,255,255,0.03);
    animation: cta-pulse-effect 6s linear infinite;
    z-index: 0;
}

@keyframes cta-pulse-effect {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto auto;
    padding: 0;
    text-align: center;
}

/* CTA Title - Clean white styling without underlines */
.cta .cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* No underlines or pseudo-elements */
}

.cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem; /* Add more space above buttons */
    margin-bottom: 0;
}

.cta .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta .primary-btn {
    background: white;
    color: #2c8c5e;
    border-color: white;
}

.cta .primary-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a7140;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.cta .secondary-btn:hover {
    background: white;
    color: #2c8c5e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer.footer {
    margin-top: 0 !important;
}

/* Incentives Header */
.incentives-header {
    margin-bottom: 2rem;
    text-align: center;
}

.incentives-found {
    font-size: 1.1rem;
    color: #666;
}

.incentives-count {
    font-weight: 600;
    color: #2c8c5e;
    font-size: 1.3rem;
}

/* Incentives Carousel Container */
.incentives-carousel-container {
    position: relative;
    margin: 3rem 0;
    width: 100%;
    overflow: hidden;
}

.incentives-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    padding: 1rem 0;
    width: 100%;
    touch-action: pan-y; /* allow vertical page scroll; JS handles horizontal swipe */
    will-change: transform;
}

/* Incentive Card Styling */
.incentive-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e8eef3;
    min-height: 440px;
    overflow: hidden;
}

.incentive-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Card color variations */
.incentive-card:nth-child(3n+1) { background: #f8f9fa; }
.incentive-card:nth-child(3n+2) { background: #e8f5e8; }
.incentive-card:nth-child(3n+3) { background: #e3f2fd; }

.card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.incentive-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    height: 110px;
}

.incentive-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(44, 140, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 8px;
    box-sizing: border-box;
}

.incentive-card:hover .incentive-icon {
    transform: scale(1.1);
}

.incentive-icon i {
    font-size: 2.2rem;
    color: #2c8c5e;
}

/* Auto-logo styling for better containment */
.incentive-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.incentive-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.incentive-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    background: rgba(44, 140, 94, 0.1);
    color: #2c8c5e;
    border: 1px solid rgba(44, 140, 94, 0.2);
}

.incentive-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #2c8c5e;
    text-decoration: none;
    border: 2px solid #2c8c5e;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.incentive-card:nth-child(3n+1) .incentive-link { 
    border-color: #2c8c5e; 
    color: #2c8c5e; 
}
.incentive-card:nth-child(3n+1) .incentive-link:hover { 
    background-color: #2c8c5e; 
    color: white;
}

.incentive-card:nth-child(3n+2) .incentive-link { 
    border-color: #4caf50; 
    color: #4caf50; 
}
.incentive-card:nth-child(3n+2) .incentive-link:hover { 
    background-color: #4caf50; 
    color: white;
}

.incentive-card:nth-child(3n+3) .incentive-link { 
    border-color: #2196f3; 
    color: #2196f3; 
}
.incentive-card:nth-child(3n+3) .incentive-link:hover { 
    background-color: #2196f3; 
    color: white;
}

/* Navigation buttons use global shared styles; keep only positioning hooks */
.incentives-prev { left: 8px; }
.incentives-next { right: 8px; }

/* Carousel Indicators */
/* Incentives indicators follow the shared minimal dots */
/* Indicators use shared minimal dots; no page overrides */

/* Tablet: ensure 2-up layout aligns perfectly with JS translate (no gaps) */
@media (max-width: 992px) and (min-width: 577px) {
  .incentives-carousel { gap: 0; padding: 0; }
  .incentive-card { flex: 0 0 50%; margin: 0; border-radius: 50px; }
}

/* Phone: true single-slide width with no gaps so translateX(100%) aligns */
@media (max-width: 576px) {
  .incentives-carousel-container { margin: 1.5rem 0; padding: 0; }
  .incentives-carousel { gap: 0; padding: 0; }
  .incentive-card { flex: 0 0 100%; margin: 0; border-radius: 40px; min-height: 0; }
  .card-inner { padding: 1.25rem; }
  .incentives-prev { left: 6px; }
  .incentives-next { right: 6px; }
  .carousel-prev, .carousel-next { width: 38px; height: 38px; border-radius: 10px; }
}

/* Remove page-specific underline styles to rely on global heading styles */