/* Reset and Base Styles */

.thumb-style-three3{
     height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.banner-style-eight-info1 {
    padding-top: 50px;
    padding-bottom: 50px;
}






/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
} */

.section-header p {
    /* font-size: 1.2rem; */
    color: #eef0f4;
    /* max-width: 600px; */
    /* margin: 0 auto; */
}

/* who is it for */

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}



.keyareas {
    list-style-type: disc;
    margin: 0;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333; /* Text color for good readability */
}

.keyareas li {
    margin-bottom: 1rem;
}



/* Case Studies Section */
.case-studies-section {
    padding: 20px 0;
    background: var(--bg-gray-gradient-secondary);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     /* grid-template-columns: repeat(2, 1fr); exactly 2 per row */
    gap: 30px;
    margin-top: -25px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flip-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card-front {
    background: white;
    border: 2px solid #e2e8f0;
}

.flip-card-back {
    background: linear-gradient(135deg, #3B82F6, #22C55E);
    color: white;
    transform: rotateY(180deg);
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #22C55E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.flip-card-front p {
    color: #6b7280;
    margin-bottom: 20px;
}

.flip-indicator {
    font-size: 0.9rem;
    color: #3B82F6;
    font-weight: 500;
    opacity: 0.8;
}

.flip-card-back h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.flip-card-back p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: gold;
    font-size: 0.95rem;
}



/* Target Audience Section */
.target-audience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.audience-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.audience-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 30px;
    color: #3B82F6;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

.audience-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #4b5563;
}

.audience-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 15px 0;
    background: var(--bg-gray-gradient-secondary);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    width: 20px;
    height: 20px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.cta-action {
    text-align: center;
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, #22C55E, #16a34a);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.cta-button:hover .button-glow {
    opacity: 1;
    transform: scale(1);
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .infographic-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .circular-infographic {
        width: 350px;
        height: 350px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .highlights-grid,
    .case-studies-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .circular-infographic {
        width: 300px;
        height: 300px;
    }
    
    .center-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .highlight-item,
    .audience-card {
        padding: 20px;
    }
    
    .flip-card {
        height: 250px;
    }
    
    .circular-infographic {
        width: 250px;
        height: 250px;
    }
    
    .cta-button {
        flex-direction: column;
        gap: 10px;
        padding: 15px 30px;
    }
}

/* Animation Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



.note-box {
  background: #fff;
  border-left: 6px solid #DBB444; /* gold accent */
}



.flip-card {
  background: transparent;
  
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* ✅ Flip on hover instead of click */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
}

/* Front side */
.flip-card-front {
  background: #fff;
  color: #333;
}

/* Back side */
.flip-card-back {
  background: #001027;
  color: #333;
  transform: rotateY(180deg);
}


.flip-card:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}








.category-style-one-item{
    height: 280px;
}