/* =====================================================
   DMK CHITS
   Premium CSS
   Part 1
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7faff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

/* =====================================================
SECTION
===================================================== */

section{
    padding:90px 0;
}

.container{
    max-width:1200px;
}

/*====================================================
ABOUT DMK CHITS
====================================================*/

.about-chits{

    background:#ffffff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-content h2{

    font-size:40px;

    font-weight:700;

    color:#132238;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    font-size:17px;

    margin-bottom:20px;

    line-height:1.9;

}

.about-list{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.about-list li{

    margin-bottom:16px;

    font-size:17px;

    color:#444;

    display:flex;

    align-items:center;

}

.about-list i{

    color:#0d6efd;

    font-size:20px;

    margin-right:12px;

}

/*====================================================
CHIT GROUPS
====================================================*/

.chit-groups{
    padding:80px 0;
    background:#f8fbff;
}

.group-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.group-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* IMAGE BOX */

.group-card img{
    width:100%;
    height:420px;          /* Adjust if needed */
    object-fit:contain;    /* Shows complete poster */
    background:#ffffff;
    padding:10px;
    display:block;
}

/* CONTENT */

.group-content{
    padding:25px;
}

.group-content h3{
    font-size:26px;
    font-weight:700;
    color:#0b5ed7;
    margin-bottom:20px;
}

.group-content ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.group-content li{
    margin-bottom:12px;
    font-size:16px;
    color:#555;
}

.group-content li i{
    color:#0d6efd;
    margin-right:8px;
}

.join-btn{
    display:inline-block;
    padding:12px 28px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#084298;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:992px){

.group-card img{
    height:360px;
}

}

@media(max-width:768px){

.group-card img{
    height:300px;
}

}

@media(max-width:576px){

.group-card img{
    height:250px;
}

}


/*====================================================
WHY CHOOSE DMK CHITS
====================================================*/

.why-chits{

    background:#ffffff;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border:1px solid #edf2f7;

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(13,110,253,.18);

}

.why-card i{

    width:85px;

    height:85px;

    background:#0d6efd;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin:0 auto 25px;

    transition:.4s;

}

.why-card:hover i{

    transform:rotateY(180deg);

    background:#0056d6;

}

.why-card h4{

    font-size:24px;

    font-weight:700;

    color:#132238;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}


/*====================================================
BENEFITS
====================================================*/

.benefits{

    background:linear-gradient(135deg,#eef6ff,#ffffff);

}

.benefit-box{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.benefit-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(13,110,253,.15);

}

.benefit-box i{

    font-size:48px;

    color:#0d6efd;

    margin-bottom:20px;

}

.benefit-box h4{

    font-size:23px;

    font-weight:700;

    margin-bottom:15px;

}

.benefit-box p{

    color:#666;

}


/*====================================================
HOW IT WORKS
====================================================*/

.process-section{

    background:#fff;

}

.process-card{

    text-align:center;

    padding:30px;

    position:relative;

}

.process-number{

    width:70px;

    height:70px;

    background:#0d6efd;

    color:#fff;

    font-size:26px;

    font-weight:700;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    box-shadow:0 15px 35px rgba(13,110,253,.25);

}

.process-card h4{

    font-size:22px;

    font-weight:700;

    color:#132238;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

}

.process-card::after{

    content:"";

    position:absolute;

    top:35px;

    right:-50%;

    width:100%;

    height:2px;

    background:#dbeafe;

    z-index:-1;

}

.process-card:last-child::after{

    display:none;

}


/*====================================================
STATISTICS
====================================================*/

.stats-section{

    background:linear-gradient(135deg,#0d6efd,#003e9b);

    color:#fff;

}

.stat-card{

    text-align:center;

    padding:35px 20px;

}

.stat-card i{

    font-size:50px;

    margin-bottom:20px;

    display:block;

}

.stat-card h2{

    font-size:46px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-card p{

    font-size:18px;

    opacity:.95;

}


/*====================================================
ANIMATION
====================================================*/

.why-card,
.benefit-box,
.process-card,
.stat-card{

    animation:fadeUp .9s ease;

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

.process-card::after{

    display:none;

}

.stat-card{

    margin-bottom:30px;

}

}

@media(max-width:768px){

.why-card{

    margin-bottom:25px;

}

.benefit-box{

    margin-bottom:25px;

}

.process-card{

    margin-bottom:35px;

}

.stat-card h2{

    font-size:34px;

}

}

@media(max-width:576px){

.why-card{

    padding:30px 20px;

}

.benefit-box{

    padding:28px 20px;

}

.process-number{

    width:60px;

    height:60px;

    font-size:22px;

}

.stat-card i{

    font-size:40px;

}

.stat-card h2{

    font-size:30px;

}

}
/*====================================================
GALLERY SECTION
====================================================*/

.gallery-section{

    background:#f8fbff;

}

.gallery-card{

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    transition:.4s;

    margin-bottom:30px;

}

.gallery-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(13,110,253,.20);

}

.gallery-card:hover img{

    transform:scale(1.08);

}


/*====================================================
FAQ
====================================================*/

.faq-section{

    background:#ffffff;

}

.faq-section .accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-section .accordion-button{

    background:#fff;

    font-weight:600;

    font-size:18px;

    padding:22px;

    color:#132238;

}

.faq-section .accordion-button:not(.collapsed){

    background:#0d6efd;

    color:#fff;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    font-size:16px;

    color:#666;

    line-height:1.8;

    padding:22px;

}


/*====================================================
CTA
====================================================*/

.cta-section{

    background:linear-gradient(135deg,#0d6efd,#0046b8);

    color:#fff;

    text-align:center;

}

.cta-section h2{

    font-size:46px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-section p{

    font-size:18px;

    margin-bottom:35px;

    opacity:.95;

}

.cta-btn{

    display:inline-block;

    padding:16px 45px;

    background:#fff;

    color:#0d6efd;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.cta-btn:hover{

    background:#ffd54f;

    color:#111;

    transform:translateY(-5px);

}


/*====================================================
FLOATING WHATSAPP
====================================================*/

.whatsapp{

    position:fixed;

    right:22px;

    bottom:22px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

    z-index:999;

    animation:pulse 2s infinite;

}

.whatsapp:hover{

    color:#fff;

    transform:scale(1.1);

}


/*====================================================
BACK TO TOP
====================================================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:100px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:24px;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    transition:.3s;

}

.back-top:hover{

    color:#fff;

    background:#004fc4;

}


/*====================================================
ANIMATIONS
====================================================*/

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.12);

}

100%{

transform:scale(1);

}

}

.fade-up{

animation:fadeUp 1s ease;

}

.zoom{

animation:zoomIn .8s ease;

}

@keyframes zoomIn{

from{

opacity:0;

transform:scale(.8);

}

to{

opacity:1;

transform:scale(1);

}

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

.cta-section h2{

font-size:36px;

}

.gallery-card img{

height:220px;

}

}

@media(max-width:768px){

.section-title h2{

font-size:32px;

}

.cta-section{

padding:70px 20px;

}

.cta-section h2{

font-size:30px;

}

.cta-section p{

font-size:16px;

}

.gallery-card img{

height:200px;

}

.whatsapp{

width:58px;

height:58px;

font-size:28px;

}

.back-top{

width:48px;

height:48px;

font-size:20px;

}

}

@media(max-width:576px){

.section-title h2{

font-size:28px;

}

.section-title p{

font-size:15px;

}

.gallery-card{

border-radius:16px;

}

.gallery-card img{

height:180px;

}

.cta-btn{

width:100%;

text-align:center;

}

}

/* ===================================================
COMMON SECTION
=================================================== */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0B2C52;
    margin-bottom:15px;
}

.section-title span{
    color:#0d6efd;
}

.section-title p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ===================================================
WHY CHITS
=================================================== */
/* 
.why-chits{
    background:#f8fbff;
}

.why-card{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card .icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#eaf3ff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
}

.why-card i{
    font-size:34px;
    color:#0d6efd;
}

.why-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
} */

/* ===================================================
CHIT GROUPS
=================================================== */

.chit-groups{
    background:white;
}

.group-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.group-card:hover{
    transform:translateY(-10px);
}

.group-card img{
    width:100%;
    height:520px;
    object-fit:contain;
    background:#fff;
    padding:15px;
    display:block;
}

.group-content{
    padding:25px;
}

.group-content h3{
    font-size:25px;
    font-weight:700;
    margin-bottom:20px;
}

.group-content ul{
    padding:0;
    list-style:none;
}

.group-content li{
    margin-bottom:12px;
    color:#555;
}

.group-content i{
    color:#0d6efd;
    margin-right:8px;
}

.join-btn{
    display:inline-block;
    margin-top:20px;
    background:#0d6efd;
    color:#fff;
    padding:12px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#0B2C52;
    color:white;
}

/* ===================================================
PROCESS
=================================================== */

.process-section{
    background:#f7fbff;
}

.process-card{
    background:white;
    padding:40px 25px;
    border-radius:22px;
    position:relative;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    position:absolute;
    top:-20px;
    left:50%;
    transform:translateX(-50%);
    width:45px;
    height:45px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.process-card i{
    font-size:48px;
    color:#0d6efd;
    margin-top:20px;
    margin-bottom:20px;
}

/* ===================================================
BENEFITS
=================================================== */

.benefits-section img{
    border-radius:25px;
    width:100%;
}

.benefits-section h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:25px;
}

.benefit-list{
    margin-top:30px;
}

.benefit-list div{
    margin-bottom:18px;
    font-size:18px;
}

.benefit-list i{
    color:#0d6efd;
    margin-right:12px;
}

/* ===================================================
FEATURES
=================================================== */

.features-section{
    background:#f8fbff;
}

.feature-card{
    background:white;
    text-align:center;
    padding:35px 20px;
    border-radius:22px;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.feature-card h4{
    font-weight:700;
}

/* ===================================================
ELIGIBILITY
=================================================== */

.eligibility-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.eligibility-list li{
    margin-bottom:18px;
    font-size:18px;
}

.eligibility-list i{
    color:#0d6efd;
    margin-right:10px;
}

.eligibility-section img{
    border-radius:25px;
}

/* ===================================================
FAQ
=================================================== */

.faq-section{
    background:#fff;
}

.accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.accordion-button{
    font-weight:700;
    font-size:18px;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#0d6efd;
    color:white;
}

.accordion-body{
    font-size:17px;
    color:#555;
    line-height:1.8;
}

/* ===================================================
CTA
=================================================== */

.cta-section{
    background:linear-gradient(135deg,#0d6efd,#0B2C52);
    color:white;
}

.cta-section h2{
    font-size:42px;
    font-weight:800;
}

.cta-section p{
    margin-top:15px;
    font-size:18px;
}

.cta-section .hero-btn{
    background:white;
    color:#0d6efd;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
}

.cta-section .hero-btn:hover{
    background:#f5f5f5;
}

/* ===================================================
RESPONSIVE
=================================================== */

@media(max-width:991px){

.group-card img{
    height:450px;
}

.benefits-section img,
.eligibility-section img{
    margin-bottom:40px;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.group-card img{
    height:380px;
}

.section-title h2{
    font-size:30px;
}

.benefits-section h2{
    font-size:30px;
}

.cta-section h2{
    font-size:30px;
}

}