/* Body adjustments to clear fixed header */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f6f2; 
    color: #4a4a4a;
    line-height: 1.6;
}

/* Content wrapper padding to push below 80px fixed header */
.program-section-wrapper {
    display: block !important;
    width: 100%;
    max-width: 1200px;        /* स्लाइडर की मैक्सिमम चौड़ाई तय करेगा ताकि स्क्रीन पर बहुत न फैले */
    margin: 120px auto 40px auto !important; /* ऊपर 120px का गैप दिया ताकि हेडर नेवबार से न चिपके, और auto से ये सेंटर में रहेगा */
    padding: 0 40px !important; /* लेफ्ट और राइट साइड में 40px का बढ़िया खाली स्पेस (Gap) देगा */
    box-sizing: border-box;
}

/* Header Styles */
.page-header {
   margin-bottom: 40px !important;
    text-align: center;
    width: 100%;
}

.swiper.programSlider {
    width: 100%;
    padding-bottom: 60px !important; /* नीचे डॉट्स के लिए स्पेस */
    overflow: hidden; /* डॉट्स के लिए नीचे जगह */
}

.swiper {
    width: 100%;
    padding-bottom: 50px !important; /* डॉट्स के लिए नीचे जगह */
    position: relative; /* नीचे डॉट्स के लिए जगह */
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #2c4a3e; 
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: #7a827e;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* Card Styles */
.program-card {
    width: 100% !important;
    box-sizing: border-box;
}

.swiper-button-next, .swiper-button-prev {
    color: #4A5568; 
}

.swiper-pagination-bullet-active {
   background-color: #4a5568 !important; /* गहरा योग-थीम रंग */
    width: 24px !important; /* एक्टिव डॉट थोड़ा लंबा (pill-shape) दिखेगा जो बहुत मॉडर्न लगता है */
    border-radius: 5px;/* एक्टिव डॉट का रंग */
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 74, 62, 0.12);
}

.swiper-pagination {
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* डॉट्स के बीच की दूरी */
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #cbd5e1 !important; /* हल्का ग्रे रंग */
    opacity: 1 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Card Image */
.program-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-image img {
    transform: scale(1.06);
}

/* Card Content */
.program-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c4a3e;
    margin-bottom: 12px;
}

.program-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Duration & Fees Info */
.program-details {
    background-color: #f0f4f1; 
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a9a91;
    font-weight: 600;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.95rem;
    color: #3d4a41;
    font-weight: 500;
}

.detail-value-price {
    font-size: 1.3rem;
    color: #c026d3; 
    font-weight: 700;
}

/* Join Now Button */
.btn-join {
    display: block;
    text-align: center;
    background-color: #c026d3 ;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-join:hover {
    background-color: #2c4a3e; 
}

.btn-join:active {
    transform: scale(0.98);
}

/* Responsive Breakpoints */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
}