/*====================================================

PROJECTS.CSS
PART - 1

AMROS PROJECTS LLP

Sections

1. Hero Banner
2. Project Stats
3. Counter Cards
4. Portfolio Heading
5. Filter
6. Grid
7. Project Cards

======================================================*/



/*=========================================
PROJECT STATS
=========================================*/

.project-stats{

padding:60px 0;

background:#F8FBFD;

position:relative;

overflow:hidden;

}

.project-stats::before{

content:"";

position:absolute;

width:450px;

height:450px;

right:-220px;

top:-180px;

border-radius:50%;

background:#EEF7FF;

}

/* .project-stats::after{

content:"";

position:absolute;

width:320px;

height:320px;

left:-120px;

bottom:-120px;

border-radius:50%;

background:#F3F9FF;

} */



/*=========================================
COUNTER BOX
=========================================*/

.counter-box{

background:#fff;

padding:45px 30px;

border-radius:28px;

text-align:center;

box-shadow:0 18px 55px rgba(0,0,0,.06);

transition:.35s;

position:relative;

overflow:hidden;

height:100%;

}

.counter-box::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#005BAA,#0A84FF);

}

.counter-box:hover{

transform:translateY(-10px);

}

.counter-box h2{

font-size:40px;

font-weight:800;

margin-bottom:12px;

color:#005BAA;

}

.counter-box span{

font-size:17px;

font-weight:600;

color:#667085;

}



/*=========================================
PROJECT PAGE
=========================================*/

.projects-page{

padding:60px 0;

background:#fff;

}

.projects-page .section-heading{

margin-bottom:60px;

}



/*=========================================
FILTER
=========================================*/

.filter-bar{

display:flex;

justify-content:center;

margin-bottom:55px;

}

.filter-buttons{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.filter-btn{

padding:8px 24px;

background:#F5F9FC;

border:none;

border-radius:50px;

font-size:15px;

font-weight:700;

color:#344054;

cursor:pointer;

transition:.35s;

}

.filter-btn:hover,

.filter-btn.active{

background:linear-gradient(135deg,#005BAA,#0A84FF);

color:#fff;

}



/*=========================================
PROJECT GRID
=========================================*/

.project-grid{

position:relative;

}

.project-grid .row{

row-gap:28px;

}



/*=========================================
PROJECT CARD
=========================================*/

.project-card{

position:relative;

height: 100%;

border-radius:30px;

overflow:hidden;

background:#fff;

box-shadow:0 22px 60px rgba(0,0,0,.08);

transition:.45s;

height:100%;

}

.project-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 80px rgba(0,0,0,.12);

}



/*=========================================
PROJECT IMAGE
=========================================*/

.project-image{

position:relative;

overflow:hidden;

height:100%;

}

.project-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.project-card:hover img{

transform:scale(1.12);

}



/*=========================================
CATEGORY BADGE
=========================================*/

.project-category{

position:absolute;

top:22px;

left:22px;

padding:10px 22px;

border-radius:50px;

background:#005BAA;

color:#fff;

font-size:13px;

font-weight:700;

letter-spacing:.5px;

z-index:5;

}



/*=========================================
OVERLAY
=========================================*/

.project-overlay{

position:absolute;

left:0;

right:0;

top:0;

bottom:0;

display:flex;

align-items:flex-end;

padding:35px;

background:linear-gradient(to top,
rgba(0,0,0,.88),
rgba(0,0,0,.20),
transparent);

opacity:0;

transition:.45s;

}

.project-card:hover .project-overlay{

opacity:1;

}



/*=========================================
CONTENT
=========================================*/

.project-content{

color:#fff;

width:100%;

}

.project-content span{

display:inline-block;

margin-bottom:10px;

font-size:14px;

font-weight:600;

color:#A7D8FF;

}

.project-content h3{

font-size:22px;

margin-bottom:15px;

color:#fff;

}

.project-content p{

font-size:16px;

line-height:1.8;

color:#E8EEF5;

margin-bottom:25px;

}



/*=========================================
BUTTON
=========================================*/

.project-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:15px 28px;

border-radius:50px;

background:#fff;

color:#005BAA;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.project-btn:hover{

background:#005BAA;

color:#fff;

}

/*====================================================

PROJECTS.CSS
PART - 2

Sections

1. Large Cards
2. Featured Card
3. Load More
4. Client Section
5. CTA
6. Footer Fixes

======================================================*/


/*=========================================
LARGE CARD
=========================================*/

.large-card .project-image{

height:560px;

}

.large-card .project-content{

max-width:600px;

}

.large-card .project-content h3{

font-size:22px;

margin-bottom:20px;

}

.large-card .project-content p{

font-size:17px;

line-height:1.9;

}



/*=========================================
FEATURED CARD
=========================================*/

.featured-card{

border-radius:36px;

overflow:hidden;

position:relative;

}

.featured-card .project-image{

height:650px;

}

.featured-card .project-overlay{

padding:70px;

align-items:flex-end;

background:linear-gradient(to top,

rgba(0,0,0,.92),

rgba(0,0,0,.45),

transparent);

}

.featured-card .project-category{

background:#ffffff;

color:#005BAA;

}

.featured-card .project-content{

max-width:780px;

}

.featured-card .project-content span{

font-size:18px;

color:#8FD2FF;

margin-bottom:18px;

}

.featured-card .project-content h2{

font-size:40px;

line-height:1.15;

margin-bottom:25px;

color:#fff;

font-weight:800;

}

.featured-card .project-content p{

font-size:18px;

line-height:1.9;

margin-bottom:35px;

color:#EEF5FC;

}



/*=========================================
LOAD MORE
=========================================*/

.load-more-btn{

padding:14px 40px;

font-size:16px;

display:inline-flex;

align-items:center;

gap:12px;

transition:.35s;

}

.load-more-btn:hover{

transform:translateY(-5px);

}

.load-more-btn i{

font-size:18px;

}



/*=========================================
CLIENT SECTION
=========================================*/

.clients-section{

padding:60px 0;

background:#F8FBFD;

position:relative;

overflow:hidden;

}

.clients-section::before{

content:"";

position:absolute;

width:420px;

height:420px;

left:-180px;

top:-180px;

background:#EEF7FF;

border-radius:50%;

}

.clients-section .section-heading{

margin-bottom:60px;

}



/*=========================================
CLIENT LOGO
=========================================*/

.client-logo{

background:#fff;

border-radius:24px;

padding:35px;

display:flex;

align-items:center;

justify-content:center;

height:130px;

box-shadow:0 18px 50px rgba(0,0,0,.06);

transition:.35s;

}

.client-logo img{

max-width:100%;

max-height:70px;

filter:grayscale(100%);

opacity:.75;

transition:.35s;

}

.client-logo:hover{

transform:translateY(-8px);

}

.client-logo:hover img{

filter:grayscale(0);

opacity:1;

}



/*=========================================
PROJECT CTA
=========================================*/

.project-cta{

padding:60px 0;

background:#fff;

}

.project-cta-box{

background:linear-gradient(135deg,#005BAA,#0A84FF);

padding:75px;

border-radius:35px;

position:relative;

overflow:hidden;

box-shadow:0 30px 80px rgba(0,91,170,.22);

}

.project-cta-box::before{

content:"";

position:absolute;

right:-120px;

top:-120px;

width:320px;

height:320px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.project-cta-box>*{

position:relative;

z-index:2;

}

.project-cta-box h2{

font-size:28px;

color:#fff;

margin-bottom:20px;

}

.project-cta-box p{

font-size:16px;

line-height:1.8;

color:#EAF4FF;

margin:0;

}

.project-cta-box .btn-primary-custom{

background:#fff;

color:#005BAA;

box-shadow:none;

}

.project-cta-box .btn-primary-custom:hover{

background:#EEF7FF;

}



/*=========================================
FOOTER
=========================================*/

.footer ul{

list-style:none;

padding:0;

margin:0;

}

.footer ul li{

margin-bottom:16px;

display:flex;

align-items:flex-start;

gap:12px;

color:#CBD5E1;

}

.footer ul li i{

color:#58B8FF;

margin-top:4px;

font-size:16px;

}

.footer-logo{

margin-bottom:25px;

max-width:170px;

}



/*=========================================
HOVER EFFECTS
=========================================*/

.project-card,

.client-logo,

.counter-box{

will-change:transform;

transition:all .35s ease;

}

.project-card:hover{

box-shadow:0 35px 90px rgba(0,0,0,.16);

}

.project-btn i{

transition:.35s;

}

.project-btn:hover i{

transform:translateX(6px);

}

/*====================================================

PROJECTS.CSS
PART - 3 (FINAL)

Sections

1. Responsive
2. Masonry Improvements
3. Filter Animation
4. Back To Top
5. WhatsApp
6. Utility Classes
7. Performance

======================================================*/


/*=========================================
PROJECT GRID ANIMATION
=========================================*/

.project-card{

opacity:1;

transform:translateY(0);

transition:

transform .45s ease,

opacity .45s ease,

box-shadow .35s ease;

}

.project-card.hidden{

opacity:0;

transform:translateY(40px);

pointer-events:none;

}

.project-card.show{

opacity:1;

transform:translateY(0);

}



/*=========================================
FILTER ACTIVE
=========================================*/

.filter-btn{

position:relative;

overflow:hidden;

}

.filter-btn::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:0;

height:3px;

/* background:#fff; */

transition:.35s;

}

.filter-btn.active::before,

.filter-btn:hover::before{

width:100%;

}



/*=========================================
LOAD MORE
=========================================*/

.load-more-btn{

min-width:240px;

justify-content:center;

}

.load-more-btn.loading{

pointer-events:none;

opacity:.7;

}

.load-more-btn.loading i{

animation:spin .8s linear infinite;

}



/*=========================================
CLIENT HOVER
=========================================*/

.client-logo{

cursor:pointer;

}

.client-logo:hover{

box-shadow:0 30px 70px rgba(0,0,0,.10);

}



/*=========================================
BACK TO TOP
=========================================*/

.back-top{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#005BAA;

color:#fff;

font-size:20px;

cursor:pointer;

box-shadow:0 15px 40px rgba(0,91,170,.28);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

}

.back-top.show{

opacity:1;

visibility:visible;

}

.back-top:hover{

transform:translateY(-6px);

background:#003E73;

}



/*=========================================
WHATSAPP
=========================================*/

.whatsapp-btn{

position:fixed;

left:30px;

bottom:30px;

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#25D366;

color:#fff;

font-size:28px;

text-decoration:none;

box-shadow:0 15px 40px rgba(37,211,102,.35);

transition:.35s;

z-index:999;

}

.whatsapp-btn:hover{

color:#fff;

transform:scale(1.08);

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1199px){

.featured-card .project-content h2{

font-size:48px;

}

.large-card .project-image{

height:480px;

}

}



@media(max-width:991px){

.projects-page,

.project-stats,

.clients-section,

.project-cta{

padding:90px 0;

}

.counter-box{

padding:35px 25px;

}

.counter-box h2{

font-size:44px;

}

.large-card .project-image,

.featured-card .project-image{

height:420px;

}

.project-overlay{

padding:25px;

}

.project-content h3{

font-size:26px;

}

.featured-card .project-content h2{

font-size:40px;

}

.project-cta-box{

padding:50px 35px;

text-align:center;

}

.project-cta-box h2{

font-size:38px;

}

.project-cta-box .btn-primary-custom{

margin-top:30px;

}

}



@media(max-width:768px){

.project-image{

height:320px;

}

.large-card .project-image,

.featured-card .project-image{

height:340px;

}

.project-content h3{

font-size:22px;

}

.project-content p{

font-size:15px;

}

.featured-card .project-content h2{

font-size:22px;

}

.filter-buttons{

gap:10px;

}

.filter-btn{

padding:12px 22px;

font-size:14px;

}

.client-logo{

height:110px;

padding:25px;

}

.project-cta-box{

padding:40px 25px;

}

.project-cta-box h2{

font-size:22px;

}

.project-cta-box p{

font-size:16px;

}

.back-top{

right:18px;

bottom:18px;

width:48px;

height:48px;

}

.whatsapp-btn{

left:18px;

bottom:18px;

width:52px;

height:52px;

font-size:24px;

}

}



@media(max-width:576px){

.projects-page,

.project-stats,

.clients-section,

.project-cta{

padding:70px 0;

}

.counter-box{

padding:28px 18px;

}

.counter-box h2{

font-size:34px;

}

.counter-box span{

font-size:15px;

}

.project-image{

height:260px;

}

.large-card .project-image,

.featured-card .project-image{

height:280px;

}

.project-overlay{

padding:20px;

}

.project-content span{

font-size:12px;

}

.project-content h3{

font-size:20px;

}

.featured-card .project-content h2{

font-size:24px;

}

.project-btn{

width:100%;

justify-content:center;

}

.load-more-btn{

width:100%;

}

.project-cta-box{

padding:35px 20px;

}

.project-cta-box h2{

font-size:26px;

}

.project-cta-box .btn-primary-custom{

width:100%;

}

.filter-buttons{

justify-content:flex-start;

overflow-x:auto;

padding-bottom:10px;

scrollbar-width:none;

}

.filter-buttons::-webkit-scrollbar{

display:none;

}

}



/*=========================================
UTILITY
=========================================*/

.fade-up{

animation:fadeUp .6s ease forwards;

}

.shadow-hover:hover{

box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.radius-xl{

border-radius:32px;

}



/*=========================================
KEYFRAMES
=========================================*/

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/*=========================================
PERFORMANCE
=========================================*/

.project-card,

.client-logo,

.counter-box,

.filter-btn,

.project-btn{

will-change:transform;

-webkit-font-smoothing:antialiased;

-moz-osx-font-smoothing:grayscale;

}



/*====================================================

END PROJECTS.CSS

======================================================*/