.elementor-11893 .elementor-element.elementor-element-b8784a6{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11893 .elementor-element.elementor-element-2daf6c7{width:100%;max-width:100%;}.elementor-11893 .elementor-element.elementor-element-2daf6c7 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-11893 .elementor-element.elementor-element-2daf6c7.elementor-element{--flex-grow:1;--flex-shrink:0;}@media(min-width:768px){.elementor-11893 .elementor-element.elementor-element-b8784a6{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-2daf6c7 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    background: #0f0f0f !important;
    /*background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%) !important;*/
    color: #e0e0e0!important;
}

.nav-tabs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    z-index: 1000;
    height: 60px;
    align-items: center;
}

.nav-tabs button {
    background: transparent;
    border: none;
    color: #888;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-tabs button.active {
    color: #fff;
    border-bottom-color: #3b82f6;
}

.nav-tabs button:hover {
    color: #ddd;
}

.container {
    margin-top: 0px !important;
    /*min-height: 100vh;*/
    /*width: 100%;*/
}

@media (min-width: 0px) {
    .container {
        width: 100% !important;
        margin-top: 0px!important;
    }
}

.template-section {
    display: none;
    padding: 40px 20px;
}

.template-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== TEMPLATE 1: Grid Cards with Icons ==================== */
.template1 {
    /*background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);*/
}

.template1 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template1 .header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.template1 .header p {
    font-size: 18px;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
}

.template1 .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.template1 .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
    cursor: pointer;
}

.template1 .card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.template1 .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.template1 .card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.template1 .card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* ==================== TEMPLATE 2: Staggered Reveal ==================== */
.template2 {
    background: #0f0f0f;
}

.template2 .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.template2 .section-title h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
}

.template2 .features-list {
    max-width: 900px;
    margin: 0 auto;
}

.template2 .feature-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    animation: slideInFeature 0.6s ease forwards;
}

.template2 .feature-item:nth-child(2) { animation-delay: 0.1s; }
.template2 .feature-item:nth-child(3) { animation-delay: 0.2s; }
.template2 .feature-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideInFeature {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.template2 .feature-number {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    min-width: 60px;
}

.template2 .feature-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.template2 .feature-content p {
    color: #888;
    line-height: 1.8;
    font-size: 16px;
}

/* ==================== TEMPLATE 3: Bento Grid ==================== */
.template3 {
    background: linear-gradient(to bottom, #0a0a0a, #1a1a2e);
}

.template3 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template3 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template3 .header p {
    color: #666;
    font-size: 18px;
}

.template3 .bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.template3 .bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.template3 .bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.template3 .bento-item:hover::before {
    opacity: 1;
}

.template3 .bento-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
}

.template3 .bento-item:nth-child(2) {
    grid-column: span 2;
}

.template3 .bento-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.template3 .bento-item p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==================== TEMPLATE 4: Slider Carousel ==================== */
.template4 {
    background: #0f0f0f;
}

.template4 .header {
    text-align: center;
    margin-bottom: 50px;
}

.template4 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template4 .carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.template4 .carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: thin;
}

.template4 .carousel::-webkit-scrollbar {
    height: 6px;
}

.template4 .carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.template4 .carousel::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 3px;
}

.template4 .carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.template4 .carousel-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.template4 .carousel-item h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.template4 .carousel-item p {
    color: #888;
    line-height: 1.6;
}

.template4 .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59, 130, 246, 0.8);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.template4 .nav-button:hover {
    background: rgba(59, 130, 246, 1);
}

.template4 .nav-button.prev {
    left: -60px;
}

.template4 .nav-button.next {
    right: -60px;
}

/* ==================== TEMPLATE 5: Tabs System ==================== */
.template5 {
    background: #0f0f0f;
}

.template5 .header {
    text-align: center;
    margin-bottom: 50px;
}

.template5 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template5 .tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.template5 .tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.template5 .tab-btn {
    background: transparent;
    border: none;
    color: #666;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.template5 .tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.template5 .tab-btn:hover {
    color: #888;
}

.template5 .tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.template5 .tab-content.active {
    display: block;
}

.template5 .tab-content h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.template5 .tab-content p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.template5 .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.template5 .feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
}

.template5 .feature-list-item::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
    font-size: 18px;
}

/* ==================== TEMPLATE 6: Split Layout ==================== */
.template6 {
    background: #0f0f0f;
}

.template6 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template6 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template6 .split-features {
    max-width: 1200px;
    margin: 0 auto;
}

.template6 .feature-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.template6 .feature-pair:nth-child(even) {
    direction: rtl;
}

.template6 .feature-pair:nth-child(even) > * {
    direction: ltr;
}

.template6 .feature-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.template6 .feature-text h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
}

.template6 .feature-text p {
    color: #888;
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .template6 .feature-pair {
        grid-template-columns: 1fr;
    }
}

/* ==================== TEMPLATE 7: Counter Stats ==================== */
.template7 {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
}

.template7 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template7 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template7 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.template7 .stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
}

.template7 .stat-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.template7 .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.template7 .stat-label {
    color: #aaa;
    font-size: 16px;
}

.template7 .features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.template7 .showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.template7 .showcase-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.template7 .showcase-item p {
    color: #888;
    line-height: 1.6;
}

/* ==================== TEMPLATE 8: Timeline ==================== */
.template8 {
    background: #0f0f0f;
}

.template8 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template8 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

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

.template8 .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, transparent);
}

.template8 .timeline-item {
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
}

.template8 .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.template8 .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.template8 .timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.template8 .timeline-dot {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border: 4px solid #0f0f0f;
    border-radius: 50%;
    margin-top: 8px;
}

.template8 .timeline-content h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.template8 .timeline-content p {
    color: #888;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .template8 .timeline::before {
        left: 10px;
    }
    .template8 .timeline-item,
    .template8 .timeline-item:nth-child(even) {
        flex-direction: column;
    }
}

/* ==================== TEMPLATE 9: Floating Cards ==================== */
.template9 {
    background: linear-gradient(to bottom, #0a0a0a, #0f0f0f);
    position: relative;
    overflow: hidden;
}

.template9::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.template9 .header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.template9 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template9 .floating-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.template9 .floating-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s;
}

.template9 .floating-card:nth-child(1) {
    animation-delay: 0s;
}

.template9 .floating-card:nth-child(2) {
    animation-delay: 1s;
}

.template9 .floating-card:nth-child(3) {
    animation-delay: 2s;
}

.template9 .floating-card:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.template9 .floating-card:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.template9 .floating-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.template9 .floating-card p {
    color: #aaa;
    line-height: 1.6;
}

/* ==================== TEMPLATE 10: Icon Ring ==================== */
.template10 {
    background: #0f0f0f;
}

.template10 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template10 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template10 .ring-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 100px 50px;
}

.template10 .center-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}

.template10 .ring {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.template10 .ring-item {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}

.template10 .ring-item:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.6);
}

.template10 .ring-item h4 {
    color: #fff;
    font-size: 14px;
}

/* ==================== TEMPLATE 11: Expandable Accordion ==================== */
.template11 {
    background: #0f0f0f;
}

.template11 .header {
    text-align: center;
    margin-bottom: 50px;
}

.template11 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template11 .accordion {
    max-width: 800px;
    margin: 0 auto;
}

.template11 .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.template11 .accordion-header {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.template11 .accordion-header:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.template11 .accordion-header.active {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.template11 .toggle-icon {
    transition: transform 0.3s;
    color: #3b82f6;
}

.template11 .toggle-icon.active {
    transform: rotate(180deg);
}

.template11 .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #888;
    line-height: 1.8;
}

.template11 .accordion-content.active {
    max-height: 500px;
    padding: 20px;
}

/* ==================== TEMPLATE 12: Comparison Table ==================== */
.template12 {
    /*background: #0f0f0f;*/
}

.template12 .header {
    text-align: center;
    margin-bottom: 50px;
}

.template12 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template12 .table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.template12 table {
    width: 100%;
    border-collapse: collapse;
}

.template12 th {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: left;
    color: #fff;
    font-weight: 600;
}

.template12 td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #aaa;
}

.template12 tr:hover td {
    background: rgba(59, 130, 246, 0.05);
}

.template12 .checkmark {
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.template12 .cross {
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

/* ==================== TEMPLATE 13: 3D Perspective Cards ==================== */
.template13 {
    background: #0f0f0f;
    perspective: 1000px;
}

.template13 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template13 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template13 .cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.template13 .perspective-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transform-style: preserve-3d;
    transition: transform 0.4s;
    cursor: pointer;
}

.template13 .perspective-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.template13 .perspective-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.template13 .perspective-card p {
    color: #888;
    line-height: 1.6;
}

/* ==================== TEMPLATE 14: Animated Progress ==================== */
.template14 {
    /*background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);*/
}

.template14 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template14 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template14 .progress-container {
    max-width: 900px;
    margin: 0 auto;
}

.template14 .progress-item {
    margin-bottom: 40px;
}

.template14 .progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.template14 .progress-label span {
    color: #fff;
    font-weight: 600;
}

.template14 .progress-value {
    color: #3b82f6;
}

.template14 .progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.template14 .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    animation: fillProgress 1.5s ease-out forwards;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
    to {
        width: var(--fill, 100%);
    }
}

/* ==================== TEMPLATE 15: Hover Reveal ==================== */
.template15 {
    /*background: #0f0f0f;*/
}

.template15 .header {
    text-align: center;
    margin-bottom: 60px;
}

.template15 .header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}

.template15 .reveal-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.template15 .reveal-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.template15 .reveal-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    opacity: 0.15;
    transition: opacity 0.4s;
}

.template15 .reveal-card:hover .reveal-background {
    opacity: 0.3;
}

.template15 .reveal-content {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.template15 .reveal-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    position: relative;
}

.template15 .reveal-description {
    color: #aaa;
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.template15 .reveal-card:hover .reveal-description {
    max-height: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .template1 .header h1 { font-size: 32px; }
    .template2 .section-title h1 { font-size: 32px; }
    .template3 .header h1 { font-size: 32px; }
    .template4 .header h1 { font-size: 32px; }
    .template4 .carousel-item { flex: 0 0 100%; }
    .template4 .nav-button { display: none; }
    .template5 .header h1 { font-size: 32px; }
    .template6 .feature-pair { grid-template-columns: 1fr; }
    .template7 .header h1 { font-size: 32px; }
    .template8 .header h1 { font-size: 32px; }
    .template9 .header h1 { font-size: 32px; }
    .template10 .header h1 { font-size: 32px; }
    .template11 .header h1 { font-size: 32px; }
    .template12 .header h1 { font-size: 32px; }
    .template13 .header h1 { font-size: 32px; }
    .template14 .header h1 { font-size: 32px; }
    .template15 .header h1 { font-size: 32px; }
}/* End custom CSS */