.blog-banner{
    position:relative;
    min-height:500px;

    background:url('assets/images/blog-banner-bg.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;
    overflow:hidden;
}

.blog-banner .banner-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,15,30,.88) 0%,
        rgba(8,15,30,.75) 40%,
        rgba(8,15,30,.45) 70%,
        rgba(8,15,30,.20) 100%
    );
}

.blog-banner .container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.blog-banner .banner-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* LEFT CONTENT */

.blog-banner .banner-content{
    flex:1;
    max-width:650px;
}

.blog-banner .breadcrumb{
    display:inline-block;
    color:#d4af37;
    font-size:15px;
    font-weight:500;
    margin-bottom:18px;
}

.blog-banner .banner-content h1{
    font-size:58px;
    color:#fff;
    line-height:1.15;
    margin-bottom:22px;
    font-weight:700;
}

.blog-banner .banner-content p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
}

/* RIGHT IMAGE */

.blog-banner .banner-image{
    flex:0 0 450px;

    padding:30px 0; /* TOP BOTTOM 30PX */
}

.blog-banner .banner-image img{
    width:100%;
    display:block;

    border-radius:24px;

    border:6px solid rgba(255,255,255,.12);

    box-shadow:
    0 20px 50px rgba(0,0,0,.30);

    transition:.4s ease;
}

.blog-banner .banner-image img:hover{
    transform:translateY(-8px);
}

/* TABLET */

@media(max-width:992px){

    .blog-banner{
        min-height:auto;
        padding:80px 0;
    }

    .blog-banner .banner-wrapper{
        gap:40px;
    }

    .blog-banner .banner-image{
        flex:0 0 320px;
    }

    .blog-banner .banner-content h1{
        font-size:42px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .blog-banner .banner-wrapper{
        flex-direction:column-reverse;
        text-align:center;
    }

    .blog-banner .banner-content{
        max-width:100%;
    }

    .blog-banner .banner-image{
        flex:none;
        width:100%;
        max-width:300px;
        padding:0;
    }

    .blog-banner .banner-content h1{
        font-size:34px;
    }

    .blog-banner .banner-content p{
        font-size:15px;
        line-height:1.8;
    }

}

@media(max-width:480px){

    .blog-banner .banner-content h1{
        font-size:28px;
    }

    .blog-banner .banner-image{
        max-width:240px;
    }

}




/*Blog box css*/
.blog-section{
    padding:100px 20px;
    background:#f7f9fc;
    font-family:'Poppins',sans-serif;
}

.blog-section .container{
    max-width:1300px;
    margin:auto;
}

/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.section-heading p{
    color:#64748b;
    line-height:1.9;
    font-size:16px;
}

/* BLOG GRID */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* BLOG CARD */

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

    display:flex;
    flex-direction:column;

    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);
}

/* IMAGE */

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;

    transition:.6s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/* CONTENT */

.blog-content{
    padding:25px;

    display:flex;
    flex-direction:column;

    flex:1;
}

.blog-content h3{
    font-size:22px;
    line-height:1.5;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:600;
}

.blog-content p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;

    margin-bottom:25px;

    flex-grow:1; /* IMPORTANT */
}

/* BUTTON */

.blog-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    align-self:flex-start;
    padding:13px 28px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
    margin-top:auto;
}

.blog-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* TABLET */

@media(max-width:992px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:36px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .blog-section{
        padding:80px 15px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:30px;
    }

    .blog-content h3{
        font-size:20px;
    }

    .blog-image img{
        height:240px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .section-heading h2{
        font-size:28px;
    }

    .blog-content{
        padding:20px;
    }

    .blog-image img{
        height:220px;
    }

}

/*End*/



/*Gallery*/

.gallery-banner{
    position:relative;
    min-height:500px;

    background:url('assets/images/gallery-banner-bg.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;
    overflow:hidden;
}

.gallery-banner .banner-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,15,30,.88) 0%,
        rgba(8,15,30,.75) 40%,
        rgba(8,15,30,.45) 70%,
        rgba(8,15,30,.20) 100%
    );
}

.gallery-banner .container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.gallery-banner .banner-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* LEFT */

.gallery-banner .banner-content{
    flex:1;
    max-width:650px;
}

.gallery-banner .breadcrumb{
    display:inline-block;
    color:#d4af37;
    font-size:15px;
    font-weight:500;
    margin-bottom:18px;
}

.gallery-banner .banner-content h1{
    font-size:58px;
    color:#fff;
    line-height:1.15;
    margin-bottom:22px;
    font-weight:700;
}

.gallery-banner .banner-content p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
}

/* RIGHT IMAGE */

.gallery-banner .banner-image{
    flex:0 0 430px;
    padding:30px 0;
}

.gallery-banner .banner-image img{
    width:100%;
    display:block;

    border-radius:24px;

    border:6px solid rgba(255,255,255,.12);

    box-shadow:
    0 20px 50px rgba(0,0,0,.30);

    transition:.4s ease;
}

.gallery-banner .banner-image img:hover{
    transform:translateY(-8px);
}

/* TABLET */

@media(max-width:992px){

    .gallery-banner{
        min-height:auto;
        padding:80px 0;
    }

    .gallery-banner .banner-wrapper{
        gap:40px;
    }

    .gallery-banner .banner-image{
        flex:0 0 320px;
    }

    .gallery-banner .banner-content h1{
        font-size:42px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .gallery-banner .banner-wrapper{
        flex-direction:column-reverse;
        text-align:center;
    }

    .gallery-banner .banner-content{
        max-width:100%;
    }

    .gallery-banner .banner-image{
        flex:none;
        width:100%;
        max-width:300px;
        padding:0;
    }

    .gallery-banner .banner-content h1{
        font-size:34px;
    }

    .gallery-banner .banner-content p{
        font-size:15px;
        line-height:1.8;
    }

}

@media(max-width:480px){

    .gallery-banner .banner-content h1{
        font-size:28px;
    }

    .gallery-banner .banner-image{
        max-width:240px;
    }

}

/*End*/




/*Gallery Section Css*/
.gallery-section{
    padding:100px 20px;
    background:#f8fafc;
    font-family:'Poppins',sans-serif;
}

.gallery-section .container{
    max-width:1300px;
    margin:auto;
}

/* HEADING */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.section-heading p{
    color:#64748b;
    line-height:1.9;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;

    transition:.6s ease;
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.80),
        rgba(0,0,0,.15)
    );

    display:flex;
    align-items:flex-end;

    padding:25px;

    opacity:0;

    transition:.4s ease;
}

.gallery-overlay h4{
    color:#fff;
    font-size:20px;
    font-weight:600;
    transform:translateY(20px);
    transition:.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay h4{
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }

    .gallery-item img{
        height:300px;
    }

}
/*End*/


/*Contact Us page css*/

.contact-banner{
    position:relative;
    min-height:500px;

    background:url('assets/images/contact-banner-bg.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;
    overflow:hidden;
}

.contact-banner .banner-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,15,30,.90) 0%,
        rgba(8,15,30,.75) 40%,
        rgba(8,15,30,.45) 70%,
        rgba(8,15,30,.20) 100%
    );
}

.contact-banner .container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.contact-banner .banner-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* CONTENT */

.contact-banner .banner-content{
    flex:1;
    max-width:650px;
}

.contact-banner .breadcrumb{
    display:inline-block;
    color:#d4af37;
    font-size:15px;
    font-weight:500;
    margin-bottom:18px;
}

.contact-banner .banner-content h1{
    font-size:58px;
    color:#fff;
    line-height:1.15;
    margin-bottom:22px;
    font-weight:700;
}

.contact-banner .banner-content p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

/* BUTTONS */

.banner-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 30px;

    background:#2563eb;
    color:#fff;

    text-decoration:none;
    border-radius:50px;

    font-weight:600;

    transition:.35s ease;
}

.banner-btn:hover{
    transform:translateY(-3px);
    background:#1d4ed8;
}

.secondary-btn{
    background:transparent;
    border:2px solid rgba(255,255,255,.25);
}

.secondary-btn:hover{
    background:#fff;
    color:#0f172a;
}

/* IMAGE */

.contact-banner .banner-image{
    flex:0 0 450px;
    padding:30px 0;
}

.contact-banner .banner-image img{
    width:100%;
    display:block;

    border-radius:24px;

    border:6px solid rgba(255,255,255,.12);

    box-shadow:
    0 20px 50px rgba(0,0,0,.30);

    transition:.4s ease;
}

.contact-banner .banner-image img:hover{
    transform:translateY(-8px);
}

/* TABLET */

@media(max-width:992px){

    .contact-banner{
        min-height:auto;
        padding:80px 0;
    }

    .contact-banner .banner-wrapper{
        gap:40px;
    }

    .contact-banner .banner-image{
        flex:0 0 320px;
    }

    .contact-banner .banner-content h1{
        font-size:42px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .contact-banner .banner-wrapper{
        flex-direction:column-reverse;
        text-align:center;
    }

    .contact-banner .banner-content{
        max-width:100%;
    }

    .contact-banner .banner-image{
        flex:none;
        width:100%;
        max-width:300px;
        padding:0;
    }

    .contact-banner .banner-content h1{
        font-size:34px;
    }

    .contact-banner .banner-content p{
        font-size:15px;
    }

    .banner-buttons{
        justify-content:center;
    }

}

@media(max-width:480px){

    .contact-banner .banner-content h1{
        font-size:28px;
    }

    .contact-banner .banner-image{
        max-width:240px;
    }

}

/*End*/

/*Contact Address css */
.contact-info-section{
    padding:90px 20px;
    background:#f8fafc;
    font-family:'Poppins',sans-serif;
}

.contact-info-section .container{
    max-width:1300px;
    margin:auto;
}

/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.section-heading p{
    color:#4b5563;
    line-height:1.9;
    font-size:16px;
}

/* GRID */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    align-items:stretch;
}

/* CARD */

.contact-card{
    position:relative;

    background:#fff;

    padding:28px 25px;

    border-radius:20px;

    border:1px solid #e5e7eb;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.35s ease;

    height:100%;
    overflow:hidden;
}

.contact-card::before{
    content:'';
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #3b82f6
    );
}

.contact-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(37,99,235,.10);

    border-color:#dbeafe;
}

/* ICON */

.contact-icon{
    width:60px;
    height:60px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:22px;

    margin-bottom:18px;
}

/* TITLE */

.contact-card h3{
    font-size:22px;
    font-weight:700;

    color:#111827;

    margin-bottom:14px;
}

/* ADDRESS */

.contact-card p{
    color:#374151;
    font-size:15px;
    line-height:1.8;
}

.contact-card strong{
    color:#111827;
    font-weight:600;
}

/* CONTACT LIST */

.contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.contact-list li{
    display:flex;
    align-items:center;

    gap:10px;

    padding:8px 0;

    border-bottom:1px solid #f1f5f9;
}

.contact-list li:last-child{
    border-bottom:none;
}

/* SMALL ICONS */

.contact-list i{
    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#f3f4f6;

    color:#2563eb;

    font-size:14px;

    flex-shrink:0;
}

/* LINKS */

.contact-list a{
    text-decoration:none;

    color:#1f2937;

    font-size:15px;
    font-weight:500;

    transition:.3s;
}

.contact-list a:hover{
    color:#2563eb;
}

/* WHATSAPP */

.whatsapp-icon{
    background:#dcfce7 !important;
    color:#22c55e !important;
}

/* TABLET */

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:36px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .contact-info-section{
        padding:70px 15px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:15px;
    }

    .contact-card{
        padding:24px 20px;
    }

    .contact-card h3{
        font-size:20px;
    }

    .contact-icon{
        width:55px;
        height:55px;
        font-size:20px;
    }

}



/*End*/








