:root {
    --primary-emerald: #efa63e;
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-orange: #f59e0b;
    --primary-gray: #1e293b;
    --primary-pink: #ec4899;

    --guidesCardFillColor-1: #8b5cf6;
    --guidesCardStrokeColor-1: rgba(255, 255, 255, 0.774);
    --guidesCardFillColor-2: #3b82f6;
    --guidesCardStrokeColor-2: rgba(255, 255, 255, 0.774);
    --guidesCardFillColor-3: #f59e0b;
    --guidesCardStrokeColor-3: rgba(255, 255, 255, 0.774);
    --guidesCardFillColor-4: #1e293b;
    --guidesCardStrokeColor-4: rgba(255, 255, 255, 0.774);
    --guidesCardFillColor-5: #ec4899;
    --guidesCardStrokeColor-5: rgba(255, 255, 255, 0.774);

    --garaj-blue: #2563eb;
    --garaj-light-blue: #3b82f6;
    --garaj-dark-blue: #1e40af;
}


.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Guides Section */
.guides-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.GuidesHomeHeroGraphic {
    display: grid;
    grid-template-columns: repeat(3, 254px);
    grid-template-rows: repeat(4, auto);
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.GuidesHomeHeroGraphic__card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 42 / 19;
}

.GuidesHomeHeroGraphic__card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 6 / 30;
}

.GuidesHomeHeroGraphic__card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 30 / 53;
}

.GuidesHomeHeroGraphic__card:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 1 / 24;
}

.GuidesHomeHeroGraphic__card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 24 / 47;
}

/* Card Base Styling */
.GuidesCard {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 200px;
}

.GuidesCard:hover {
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.048);
}

.GuidesCard__shadow {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 0;
    transition: all 0.3s ease;
}

.GuidesCard:hover .GuidesCard__shadow {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.GuidesCard__card {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: 6px;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.GuidesCard:hover .GuidesCard__card {
    transform: translateY(-4px);
}

/* Card Variants for Guides Section */
.GuidesCard--variantAtlasGuides .GuidesCard__card {
    background: linear-gradient(135deg, #3db0a0 0%, #d45d51 100%) !important;
}

.GuidesCard--variantProductResources .GuidesCard__card {
    background: linear-gradient(135deg, #3db0a0 0%, #ffbd8a 100%) !important;
}

.GuidesCard--variantPlatforms .GuidesCard__card {
    background: linear-gradient(135deg, #3db0a0 0%, #f1991d 100%) !important;
}

.GuidesCard--variantIndustryUpdates .GuidesCard__card {
    background: linear-gradient(135deg, #ffbd8a 0%, #f1991d 100%) !important;
}

.GuidesCard--variantTaxGuides .GuidesCard__card {
    background: linear-gradient(135deg, #ffbd8a 0%, #d45d51 100%) !important;
}

/* Card Variants for Product Resources Section */
.ProductCard--variantGettingStarted .ProductCard__card {
    background: linear-gradient(135deg, var(--garaj-blue) 0%, var(--garaj-dark-blue) 100%);
}

.ProductCard--variantInfrastructure .ProductCard__card {
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
}

.ProductCard--variantSecurity .ProductCard__card {
    background: linear-gradient(135deg, #84cc16 0%, #4d7c0f 100%);
}

.ProductCard--variantDeployment .ProductCard__card {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
}

.ProductCard--variantDataServices .ProductCard__card {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.ProductCard--variantCostOptimization .ProductCard__card {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.ProductCard--variantUseCases .ProductCard__card {
    background: linear-gradient(135deg, #64748b 0%, #334155 100%);
}

.ProductCard--variantDeveloperTools .ProductCard__card {
    background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
}

.ProductCard--variantMigration .ProductCard__card {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.ProductCard--variantSupport .ProductCard__card {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

/* Product Card Specific Styles */
.ProductCard {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 420px;
}

.ProductCard__shadow {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 0;
    transition: all 0.3s ease;
}

.ProductCard:hover .ProductCard__shadow {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.ProductCard__card {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: 6px;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.ProductCard:hover .ProductCard__card {
    transform: translateY(-4px);
}

/* SVG Art Styling */
.GuidesCardArt,
.ProductCardArt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.GuidesCard__text,
.ProductCard__text {
    position: relative;
    z-index: 2;
}

.GuidesCard__category,
.ProductCard__category {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.GuidesCard__title,
.ProductCard__title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

/* Hover Arrow Styling */
.GuidesCard__cta,
.ProductCard__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
}

.GuidesCard__cta:hover,
.ProductCard__cta:hover {
    color: white;
}

.GuidesCard:hover .GuidesCard__cta,
.ProductCard:hover .ProductCard__cta {
    opacity: 1;
    transform: translateY(0);
}

.HoverArrow {
    transition: transform 0.3s ease;
}

.GuidesCard__cta:hover .HoverArrow,
.ProductCard__cta:hover .HoverArrow {
    transform: translateX(4px);
}

.HoverArrow__linePath,
.HoverArrow__tipPath {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* SVG Animation */
.GuidesCardArt__rings circle,
.GuidesCardArt__circle circle,
.GuidesCardArt__bars path,
.GuidesCardArt__semicircle path,
.GuidesCardArt__arc path,
.GuidesCardArt__diamond path,
.GuidesCardArt__square path,
.GuidesCardArt__triangle path,
.ProductCardArt__rings circle,
.ProductCardArt__circle circle,
.ProductCardArt__bars path,
.ProductCardArt__semicircle path,
.ProductCardArt__arc path,
.ProductCardArt__diamond path,
.ProductCardArt__square path,
.ProductCardArt__triangle path {
    stroke-dasharray: 320px;
    stroke-dashoffset: 320px;
    animation: drawPath 2s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Section Styling */
.product-resources,
.garaj-section {
    padding: 60px 0;
}

.product-grid,
.garaj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.see-all-btn {
    background-color: #efa63e;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.see-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 1px 4px 13px #efa53e98;
    ;
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* Text and Layout */
.text-color {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-emerald);
}

.heading-paragraph {
    gap: 1.5rem !important;
    display: inline-grid;
    max-width: 500px;
}

.feature-border {
    border-inline: 1px solid rgba(200, 200, 200, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .product-grid,
    .garaj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .GuidesHomeHeroGraphic {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .GuidesHomeHeroGraphic__card:nth-child(1),
    .GuidesHomeHeroGraphic__card:nth-child(2),
    .GuidesHomeHeroGraphic__card:nth-child(3),
    .GuidesHomeHeroGraphic__card:nth-child(4),
    .GuidesHomeHeroGraphic__card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .GuidesHomeHeroGraphic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .product-grid,
    .garaj-grid {
        grid-template-columns: 1fr;
    }

    .GuidesCard,
    .ProductCard {
        min-height: 160px;
    }

    .GuidesCard__card,
    .ProductCard__card {
        padding: 1.25rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Add these new gradient styles to your existing CSS */

/* Getting Started variants */
.ProductCard--variantGettingStarted-1 .ProductCard__card {
    background: #3db0a0 !important;
}

.ProductCard--variantGettingStarted-2 .ProductCard__card {
    background: #ffbd8a !important;
}

.ProductCard--variantGettingStarted-3 .ProductCard__card {
    background: #f1991d !important;
}

/* Infrastructure variants */
.ProductCard--variantInfrastructure-1 .ProductCard__card {
    background: #f1991d !important;
}

.ProductCard--variantInfrastructure-2 .ProductCard__card {
    background: #d45d51 !important;
}

.ProductCard--variantInfrastructure-3 .ProductCard__card {
    background: #3db0a0 !important;
}

/* Security variants */
.ProductCard--variantSecurity-1 .ProductCard__card {
    background: #d45d51 !important;
}

.ProductCard--variantSecurity-2 .ProductCard__card {
    background: #3db0a0 !important;
}

.ProductCard--variantSecurity-3 .ProductCard__card {
    background: #d2a480 !important;
}

/* Deployment variants */
.ProductCard--variantDeployment-1 .ProductCard__card {
    background: #8b5cf6 !important;
}

.ProductCard--variantDeployment-2 .ProductCard__card {
    background: #ec4899 !important;
}

.ProductCard--variantDeployment-3 .ProductCard__card {
    background: #f59e0b !important;
}

/* Data Services variants */
.ProductCard--variantDataServices-1 .ProductCard__card {
    background: #3b82f6 !important;
}

.ProductCard--variantDataServices-2 .ProductCard__card {
    background: #06b6d4 !important;
}

.ProductCard--variantDataServices-3 .ProductCard__card {
    background: #84cc16 !important;
}

/* Cost Optimization variants */
.ProductCard--variantCostOptimization-1 .ProductCard__card {
    background: #8b5cf6 !important;
}

.ProductCard--variantCostOptimization-2 .ProductCard__card {
    background: #3b82f6 !important;
}

.ProductCard--variantCostOptimization-3 .ProductCard__card {
    background: #f59e0b !important;
}

/* Use Cases variants */
.ProductCard--variantUseCases-1 .ProductCard__card {
    background: #ec4899 !important;
}

.ProductCard--variantUseCases-2 .ProductCard__card {
    background: #8b5cf6 !important;
}

.ProductCard--variantUseCases-3 .ProductCard__card {
    background: #3b82f6 !important;
}

/* Developer Tools variants */
.ProductCard--variantDeveloperTools-1 .ProductCard__card {
    background: #3b82f6 !important;
}

.ProductCard--variantDeveloperTools-2 .ProductCard__card {
    background: #84cc16 !important;
}

.ProductCard--variantDeveloperTools-3 .ProductCard__card {
    background: #8b5cf6 !important;
}

/* Migration variants */
.ProductCard--variantMigration-1 .ProductCard__card {
    background: #06b6d4 !important;
}

.ProductCard--variantMigration-2 .ProductCard__card {
    background: #3b82f6 !important;
}

.ProductCard--variantMigration-3 .ProductCard__card {
    background: #f59e0b !important;
}

/* Support variants */
.ProductCard--variantSupport-1 .ProductCard__card {
    background: #f59e0b !important;
}

.ProductCard--variantSupport-2 .ProductCard__card {
    background: #ec4899 !important;
}

.ProductCard--variantSupport-3 .ProductCard__card {
    background: #8b5cf6 !important;
}
.contact-megamenu {
    left: 60%;
    top: 80%;
}

.contact-title:hover {
    color: unset;
}

.contact-title {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    margin-bottom: 0;
}