/*=========================================================
            INDIA DOWNLOADS
=========================================================*/

.indiaDownloadsSection{

    padding:100px 0;

    background:#faf8f4;

    position:relative;

    overflow:hidden;
    
    font-family:'Playfair Display',serif;

}

.indiaDownloadsSection::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(123,30,30,.05);

    top:-170px;

    left:-140px;

}

.indiaDownloadsSection::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(214,164,67,.08);

    bottom:-120px;

    right:-120px;

}



/*==========================================
HEADER
==========================================*/

.indiaDownloadsHeader{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

    position:relative;

    z-index:2;
    
    font-family:'Playfair Display',serif;

}

.indiaDownloadsHeader span{

    display:inline-block;

    color:#D6A443;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:14px;

}

.indiaDownloadsHeader h2{

    font-size:52px;

    font-weight:800;

    color:#222;

    margin-bottom:18px;

}

.indiaDownloadsHeader strong{

    color:#7B1E1E;

}

.indiaDownloadsHeader p{

    color:#666;

    font-size:18px;

    line-height:32px;

}



/*==========================================
DOWNLOAD CARD
==========================================*/

.indiaDownloadCard{

    background:#fff;

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

    height:100%;

    display:flex;

    flex-direction:column;

}

.indiaDownloadCard::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        #7B1E1E,

        #D6A443

    );

}

.indiaDownloadCard:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}



/*==========================================
ICON
==========================================*/

.indiaDownloadIcon{

    width:78px;

    height:78px;

    margin:0 auto 22px;

    border-radius:20px;

    background:linear-gradient(

        135deg,

        #7B1E1E,

        #9d2626

    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    transition:.35s;

}

.indiaDownloadCard:hover .indiaDownloadIcon{

    transform:rotate(-8deg) scale(1.08);

    background:linear-gradient(

        135deg,

        #D6A443,

        #e9b84d

    );

}



/*==========================================
CATEGORY
==========================================*/

.indiaDownloadCategory{

    display:inline-block;

    margin-bottom:15px;

    padding:6px 15px;

    background:#f7f1e7;

    color:#7B1E1E;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}



/*==========================================
TITLE
==========================================*/

.indiaDownloadCard h3{

font-size:21px;

font-weight:700;

line-height:1.4;

margin-bottom:14px;

height:60px;

display:-webkit-box;

-webkit-line-clamp:2;

-webkit-box-orient:vertical;

overflow:hidden;

}



/*==========================================
DESCRIPTION
==========================================*/

.indiaDownloadCard p{

    color:#666;

    line-height:30px;

    margin-bottom:28px;

    flex:1;

}
/*=========================================================
            DOWNLOAD BUTTON
=========================================================*/

.indiaDownloadBtn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

width:100%;

height:54px;

background:#7B1E1E;

color:#fff;

text-decoration:none;

font-weight:700;

border-radius:14px;

transition:.35s;

margin-top:auto;

}

.indiaDownloadBtn:hover{

background:#D6A443;

color:#fff;

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(214,164,67,.30);

}

.indiaDownloadBtn i{

transition:.35s;

}

.indiaDownloadBtn:hover i{

transform:translateY(2px);

}



/*=========================================================
            VIEW ALL
=========================================================*/

.indiaDownloadsFooter{

margin-top:60px;

text-align:center;

}

.indiaDownloadsMoreBtn{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 38px;

background:#fff;

border:2px solid #7B1E1E;

border-radius:60px;

text-decoration:none;

font-weight:700;

color:#7B1E1E;

transition:.35s;

}

.indiaDownloadsMoreBtn:hover{

background:#7B1E1E;

color:#fff;

}

.indiaDownloadsMoreBtn i{

transition:.35s;

}

.indiaDownloadsMoreBtn:hover i{

transform:translateX(6px);

}



/*=========================================================
            HOVER EFFECT
=========================================================*/

.indiaDownloadCard:hover h3{

color:#7B1E1E;

}

.indiaDownloadCard:hover .indiaDownloadCategory{

background:#7B1E1E;

color:#fff;

}



/*=========================================================
            ANIMATION
=========================================================*/

.indiaDownloadCard{

animation:indiaDownloadFade .7s ease both;

}

@keyframes indiaDownloadFade{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/*=========================================================
            RESPONSIVE
=========================================================*/

@media(max-width:1200px){

.indiaDownloadsHeader h2{

font-size:46px;

}

}



@media(max-width:992px){

.indiaDownloadsSection{

padding:80px 0;

}

.indiaDownloadsHeader{

margin-bottom:50px;

}

.indiaDownloadsHeader h2{

font-size:40px;

}

}



@media(max-width:768px){

.indiaDownloadsSection{

padding:70px 0;

}

.indiaDownloadsHeader h2{

font-size:34px;

line-height:1.3;

}

.indiaDownloadsHeader p{

font-size:16px;

line-height:30px;

}

.indiaDownloadCard{

padding:28px 22px;

}


.indiaDownloadsMoreBtn{

width:100%;

justify-content:center;

}

}



@media(max-width:576px){

.indiaDownloadsHeader span{

font-size:12px;

letter-spacing:2px;

}

.indiaDownloadsHeader h2{

font-size:28px;

}

.indiaDownloadIcon{

width:68px;

height:68px;

font-size:26px;

}

.indiaDownloadCard{

padding:24px 18px;

}

.indiaDownloadCard p{

font-size:15px;

line-height:28px;

}

.indiaDownloadBtn{

height:50px;

font-size:15px;

}

}



/*=========================================================
            SMOOTH TRANSITION
=========================================================*/

.indiaDownloadCard *{

transition:.35s;

}