/*======================================================
Wedding Wishes Website
Premium Wedding Invitation Website
======================================================*/

/*================ GOOGLE FONT ================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

.imperial-script-regular {
  font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
}

<link rel="preconnect" href="https://fonts.googleapis.com">


.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 100;
  font-style: normal;
}

/*================ VARIABLES ================*/

:root{

--primary:#C58B72;
--secondary:#F8EFE9;
--accent:#E8D5C8;
--white:#ffffff;
--black:#1d1d1d;
--text:#666666;
--light:#faf7f5;
--border:#eeeeee;
--shadow:0 15px 40px rgba(0,0,0,.08);
--radius:18px;
--transition:.4s;

}

/*================ RESET ================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:var(--light);
color:var(--black);
overflow-x:hidden;

}

img{

width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

section{

padding:90px 0;

}

/*================ TITLE ================*/

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title h2{

font-size:48px;
font-family:'Cormorant Garamond',serif;
margin-bottom:15px;

}

.section-title p{

color:var(--text);
font-size:18px;

}

/*================ BUTTON ================*/

.btn{

display:inline-block;
padding:16px 34px;
background:var(--primary);
color:#fff;
border-radius:50px;
transition:.4s;
font-weight:600;

}

.btn:hover{

background:#b1765f;
transform:translateY(-5px);

}

.btn-outline{

padding:16px 34px;
border:2px solid var(--primary);
border-radius:50px;
color:var(--primary);
margin-left:15px;
transition:.4s;

}

.btn-outline:hover{

background:var(--primary);
color:#fff;

}

/*================ HEADER ================*/

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:22px 0;
transition:.4s;

}

.header.scrolled{

background:#ffffffee;
backdrop-filter:blur(18px);
box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.header .container{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo h2{

font-family:'Cormorant Garamond',serif;
font-size:38px;
color:var(--primary);

}

.logo span{

font-size:13px;
letter-spacing:2px;
color:#999;

}

.nav-links{

display:flex;
gap:35px;

}

.nav-links li a{

font-weight:500;
color:var(--black);
transition:.3s;

}

.nav-links li a:hover{

color:var(--primary);

}

.menu-btn{

display:none;
font-size:28px;
cursor:pointer;

}

/*================ HERO ================*/

.hero{

position:relative;
min-height:100vh;
display:flex;
align-items:center;
background:linear-gradient(180deg,#fff,#FDF6F2);
overflow:hidden;

}

.parallax{

position:absolute;
width:120%;
height:120%;
top:-10%;
left:-10%;
background:url("../assets/images/hero/hero-bg.png") center/cover;
z-index:0;
opacity:0.2 ;
}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
position:relative;
z-index:2;

}

.hero-content h4{

font-size:24px;
color:var(--primary);
margin-bottom:10px;

}

.hero-content h1{

font-size:72px;
line-height:1;
font-family:'Cormorant Garamond',serif;

}

.hero-content h2{

font-size:42px;
margin:15px 0;
font-family: "Imperial Script", cursive;
color:var(--primary);

}

.hero-content p{

font-size:18px;
line-height:32px;
color:var(--text);
margin:30px 0;

}

.hero-buttons{

display:flex;
margin-bottom:40px;

}

.hero-image{

animation:float 5s ease-in-out infinite;

}

.hero-image img{

border-radius:30px;
box-shadow:var(--shadow);

}

.trusted{

display:flex;
align-items:center;
gap:20px;

}

.avatars{

display:flex;

}

.avatars img{

width:55px;
height:55px;
border-radius:50%;
border:3px solid #fff;
margin-left:-15px;

}

.avatars img:first-child{

margin-left:0;

}

/*================ FLOAT ANIMATION ================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}
}

/*=========================================
            STATS SECTION
=========================================*/

.stats{
  
  padding: 52px 0;
    background: url(../assets/images/backgrounds/flower.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
 
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
}

.stat{
    background:#fff;
    border-radius:10px;
    padding:10px 10px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid var(--border);
}

.stat:hover{
    transform:translateY(-10px);
}

.stat i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--primary);
    font-size:28px;
    margin-bottom:10px;
}

.stat h3{
    font-size:13px;
    color:var(--primary);
    margin-bottom:2px;
}

.stat p{
    color:var(--text);
    font-size:12px;
}


/*=========================================
            CATEGORY SECTION
=========================================*/

.categories{
    background:var(--secondary);
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:8px;
}

.cat{
    background:#fff;
    padding:10px 7px;
    text-align:center;
    border-radius:20px;
    transition:.35s;
    box-shadow:var(--shadow);
    cursor:pointer;
}

.cat:hover{
    transform:translateY(-10px);
}

.cat i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#f8ece7;
    color:var(--primary);
    font-size:32px;
    margin:auto;
    margin-bottom:20px;
    transition:.35s;
}

.cat:hover i{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.cat span{
    display:block;
    font-size:12px;
    font-weight:600;
}


/*=========================================
          VIDEO INVITATION
=========================================*/

.video-section{
    background:#fff;
}

.video-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.video-content h4{
    color:var(--primary);
    font-size:24px;
}

.video-content h2{
    font-size:60px;
    margin:10px 0;
}

.video-content h3{
    color:var(--primary);
    font-size:34px;
    margin-bottom:20px;
}

.video-content p{
    line-height:32px;
    color:var(--text);
    margin-bottom:35px;
}

.video-box{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.video-box img{
    transition:.5s;
}

.video-box:hover img{
    transform:scale(1.08);
}

.play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.35s;
}

.play:hover{
    transform:translate(-50%,-50%) scale(1.1);
}

.play i{
    color:var(--primary);
    font-size:34px;
    margin-left:5px;
}

/* Ripple Animation */

.play::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.7);
    animation:ripple 2s infinite;
}

@keyframes ripple{

0%{
transform:scale(1);
opacity:1;
}

100%{
transform:scale(1.7);
opacity:0;
}

}


/*=========================================
         SECTION DECORATION
=========================================*/

.categories,
.video-section{
    position:relative;
    overflow:hidden;
}

.categories::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:#f6e5dc;
    border-radius:50%;
    left:-130px;
    top:-130px;
}

.categories::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#f7ede8;
    right:-90px;
    bottom:-90px;
    border-radius:50%;
}

.categories{

background: url(../assets/images/backgrounds/categ-bg.jpg) center / cover;}
/*=========================================
        FEATURED INVITATIONS
=========================================*/

.featured{
    background:#faf7f5;
}

.card-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:35px;
}

/* Invitation Card */

.invite-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s ease;
}

.invite-card:hover{
    transform:translateY(-12px);
}

/* Image */

.invite-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.invite-card:hover img{
    transform:scale(1.08);
}

/* Overlay */

.invite-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.05)
    );

    opacity:0;
    transition:.4s;
}

.invite-card:hover::before{

    opacity:1;

}

/* Card Content */

.card-content{

    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    padding:10px 25px;

    color:#fff;

    transform:translateY(40px);

    transition:.4s;

       background-color: #ab6141ad;
    text-align: center;

}

.invite-card:hover .card-content{

    transform:translateY(0);

}

.card-content h3{

    font-size:19px;
    margin-bottom:10px;
    font-weight: normal;

}

.card-content span{

    display:inline-block;
    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:15px;

    margin-bottom:18px;

}

.card-content .small-btn{ display: inline-block;
    padding: 8px 17px;
    background: #fff;
    color: var(--primary);
    border-radius: 50px;
    font-weight: normal;
    transition: .35s;
    font-size: 14px;
}

/* Button */

.small-btn{

    display:inline-block;

    padding:12px 24px;

    background:#fff;

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.small-btn:hover{

    background:var(--primary);

    color:#fff;

}

/* Wishlist */

.invite-card .wishlist{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    cursor:pointer;

    transition:.35s;

    z-index:2;

}

.invite-card .wishlist:hover{

    background:var(--primary);

    color:#fff;

}

/* Premium Badge */

.badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#FFD54F;

    color:#222;

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    z-index:2;

}

/* Rating */

.rating{

    display:flex;

    align-items:center;

    gap:4px;

    color:#FFD54F;

    font-size:15px;

    margin-bottom:15px;

}

/* View All Button */

.center-btn{

    margin-top:60px;

    text-align:center;

}

/*=========================================
         CARD HOVER EFFECT
=========================================*/

.invite-card::after{

    content:"";

    position:absolute;

    width:0;

    height:4px;

    left:0;

    bottom:0;

    background:var(--primary);

    transition:.4s;

}

.invite-card:hover::after{

    width:100%;

}

/*=========================================
        PRODUCT SHADOW
=========================================*/

.invite-card{

    border:1px solid rgba(0,0,0,.04);

}

.invite-card:hover{

    box-shadow:

    0 25px 50px rgba(0,0,0,.12);

}

/*=========================================
      IMAGE ZOOM TRANSITION
=========================================*/

.invite-card img{

    transition:transform .7s ease;

}

/*=========================================
      PRICE STYLE
=========================================*/

.price{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

}

.price h4{

    color:#fff;

    font-size:28px;

}

.price del{

    color:#ddd;

}

/*=========================================
      QUICK ACTION ICONS
=========================================*/

.quick-icons{

    position:absolute;

    right:-70px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:12px;

    transition:.4s;

    z-index:5;

}

.invite-card:hover .quick-icons{

    right:15px;

}

.quick-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.quick-icons a:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================================
       FEATURE SECTION BG
=========================================*/

.featured{

    position:relative;

    overflow:hidden;

}

.featured::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:#f3e4dc;

    border-radius:50%;

    top:-130px;

    right:-130px;

}

.featured::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#f8ece6;

    border-radius:50%;

    bottom:-90px;

    left:-90px;

}


/*=========================================
            HOW IT WORKS
=========================================*/

.how-it-works{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    position:relative;
}

/* Connecting Line */

.steps::before{
    content:"";
    position:absolute;
    top:50px;
    left:10%;
    width:80%;
    height:2px;
    background:#ead8cf;
    z-index:0;
}

.step{
    position:relative;
    z-index:2;
    text-align:center;
    padding:20px;
}

.step .icon{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    border:4px solid #f5e7df;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

.step:hover .icon{
    background:var(--primary);
    border-color:var(--primary);
    transform:translateY(-8px) rotate(8deg);
}

.step .icon i{
    font-size:38px;
    color:var(--primary);
    transition:.4s;
}

.step:hover .icon i{
    color:#fff;
}

.step h3{
    font-size:18px;
    margin:18px 0 12px;
}

.step p{
    color:var(--text);
    line-height:22px;
    font-size:13px;
}

/* Step Number 

.step::after{
    content:attr(data-step);
    position:absolute;
    top:-5px;
    right:28%;
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
    font-weight:600;
}*/

/* Decorative Background */

.how-it-works::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#f9ede8;
    left:-160px;
    top:-160px;
}

.how-it-works::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:#f7e9e2;
    right:-110px;
    bottom:-110px;
}


/*=========================================
            WHY CHOOSE US
=========================================*/

.why-us{
    background:#faf7f5;
    position:relative;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.why-box{
    background:#fff;
    border-radius:22px;
    padding:45px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.why-box:hover{
    transform:translateY(-12px);
}

/* Top Border Animation */

.why-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:var(--primary);
    transition:.4s;
}

.why-box:hover::before{
    width:100%;
}

/* Icon */

.why-box i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:#f7ebe5;
    color:var(--primary);
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;
}

.why-box:hover i{
    background:var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}

.why-box h3{
    font-size:30px;
    margin-bottom:15px;
}

.why-box p{
    color:var(--text);
    line-height:30px;
}

/* Floating Background Circle */

.why-box::after{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    border-radius:50%;
    background:rgba(210,140,114,.06);
    right:-75px;
    top:-75px;
    transition:.4s;
}

.why-box:hover::after{
    transform:scale(1.2);
}

/*=========================================
         ICON FLOAT ANIMATION
=========================================*/

@keyframes iconFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}

.step .icon,
.why-box i{
    animation:iconFloat 4s ease-in-out infinite;
}

/*=========================================
         SECTION SPACING
=========================================*/

.how-it-works,
.why-us{
    padding:100px 0;
}


/*=========================================
            TESTIMONIALS
=========================================*/

.testimonials{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.testimonial{
    position:relative;
    background:#fff;
    padding:40px 35px;
    border-radius:22px;
    box-shadow:var(--shadow);
    transition:.4s;
    border:1px solid rgba(0,0,0,.05);
}

.testimonial:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/* Quote Icon */

.testimonial::before{

    content:"❝";

    position:absolute;

    top:20px;

    right:30px;

    font-size:70px;

    color:rgba(210,140,114,.15);

    font-family:serif;

}

/* Review */

.testimonial p{

    color:var(--text);

    font-size:16px;

    line-height:32px;

    margin-bottom:30px;

}

/* User */

.user{

    display:flex;

    align-items:center;

    gap:18px;

}

.user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #f3e5dc;

}

.user h4{

    font-size:26px;

    margin-bottom:6px;

}

.user span{

    color:#FFD54F;

    letter-spacing:2px;

}

/* Decorative Border */

.testimonial::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:5px;

    background:var(--primary);

    transition:.4s;

}

.testimonial:hover::after{

    width:100%;

}


/*=========================================
           NEWSLETTER
=========================================*/

.newsletter{

    background:linear-gradient(135deg,#f7ebe5,#fdf7f3);

    padding:90px 0;

}

.newsletter-box{

    background:#fff;

    border-radius:30px;

    padding:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    box-shadow:var(--shadow);

}

.newsletter-box h2{

    font-size:52px;

    margin-bottom:15px;

}

.newsletter-box p{

    color:var(--text);

    line-height:30px;

    max-width:550px;

}

/* Form */

.newsletter form{

    display:flex;

    align-items:center;

    gap:15px;

}

.newsletter input{

    width:360px;

    height:60px;

    border:none;

    outline:none;

    border-radius:50px;

    padding:0 25px;

    font-size:16px;

    background:#fafafa;

    border:1px solid var(--border);

}

.newsletter input:focus{

    border-color:var(--primary);

}

.newsletter button{

    border:none;

    cursor:pointer;

}

/* Decorative Circles */

.newsletter{

    position:relative;

    overflow:hidden;

}

.newsletter::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(210,140,114,.08);

    left:-120px;

    bottom:-120px;

}

.newsletter::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(210,140,114,.08);

    right:-90px;

    top:-90px;

}

/*=========================================
          STAR RATING
=========================================*/

.stars{

    display:flex;

    gap:4px;

    color:#FFD54F;

    margin-top:5px;

    font-size:14px;

}

/*=========================================
      TESTIMONIAL ANIMATION
=========================================*/

.testimonial{

    animation:testimonialFloat 5s ease-in-out infinite;

}

.testimonial:nth-child(2){

    animation-delay:.4s;

}

.testimonial:nth-child(3){

    animation-delay:.8s;

}

@keyframes testimonialFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-6px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
      NEWSLETTER BUTTON
=========================================*/

.newsletter .btn{

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0 32px;

}

/*=========================================
          SECTION SPACING
=========================================*/

.testimonials,
.newsletter{

    padding:100px 0;

}

/*=========================================
                FOOTER
=========================================*/

footer{
    background:#1f1f1f;
    color:#ffffff;
    padding:90px 0 30px;
    position:relative;
    overflow:hidden;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    margin-bottom:60px;
}

footer h3{
    font-size:40px;
    margin-bottom:20px;
    color:#fff;
}

footer h4{
    font-size:24px;
    margin-bottom:25px;
    color:#fff;
}

footer p{
    color:#cfcfcf;
    line-height:30px;
}

footer ul li{
    margin-bottom:15px;
}

footer ul li a{
    color:#d9d9d9;
    transition:.35s;
}

footer ul li a:hover{
    color:var(--primary);
    padding-left:8px;
}

footer ul li i{
    color:var(--primary);
    margin-right:10px;
}

/* Social Icons */

.social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#2c2c2c;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.35s;
}

.social a:hover{
    background:var(--primary);
    transform:translateY(-5px);
}

/* Copyright */

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding-top:25px;
    color:#bbbbbb;
    font-size:15px;
}

/* Decorative Circles */

footer::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    top:-150px;
    left:-150px;
}

footer::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

/*=========================================
            BACK TO TOP BUTTON
=========================================*/

.back-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

.back-top.active{
    opacity:1;
    visibility:visible;
}

.back-top:hover{
    transform:translateY(-6px);
}

/*=========================================
            SCROLL BAR
=========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f4f4f4;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/*=========================================
            SELECTION
=========================================*/

::selection{
    background:var(--primary);
    color:#fff;
}

/*=========================================
           IMAGE HOVER EFFECT
=========================================*/

img{
    transition:.45s ease;
}

img:hover{
    filter:brightness(1.02);
}

/*=========================================
            FADE ANIMATION
=========================================*/

.fade-up{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-70px);
    transition:all .8s ease;
}

.fade-left.show{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(70px);
    transition:all .8s ease;
}

.fade-right.show{
    opacity:1;
    transform:translateX(0);
}

.zoom-in{
    opacity:0;
    transform:scale(.8);
    transition:.8s;
}

.zoom-in.show{
    opacity:1;
    transform:scale(1);
}

/*=========================================
           FLOAT ANIMATION
=========================================*/

.float{
    animation:floating 4s ease-in-out infinite;
}

@keyframes floating{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}

/*=========================================
        BUTTON RIPPLE EFFECT
=========================================*/

.btn{
    position:relative;
    overflow:hidden;
}

.btn::before{
    content:"";
    position:absolute;
    width:0;
    height:0;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:rgba(255,255,255,.2);
    transition:.6s;
}

.btn:hover::before{
    width:300px;
    height:300px;
}

/*=========================================
           SECTION SPACING
=========================================*/

.hero,
.stats,
.categories,
.video-section,
.featured,
.how-it-works,
.why-us,
.testimonials,
.newsletter,
footer{
    position:relative;
}

/*=========================================
            UTILITY CLASSES
=========================================*/

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.shadow{
    box-shadow:var(--shadow);
}

.radius{
    border-radius:var(--radius);
}

.d-flex{
    display:flex;
}

.align-center{
    align-items:center;
}

.justify-center{
    justify-content:center;
}

.hidden{
    display:none;
}

/*=========================================
            TRANSITIONS
=========================================*/

*,
*::before,
*::after{
    transition:
        color .3s,
        background-color .3s,
        border-color .3s,
        transform .3s,
        opacity .3s;
}

/*=========================================
            END OF STYLE.CSS
=========================================*/

.progress-bar{

position:fixed;

left:0;

top:0;

width:0;

height:4px;

background:var(--primary);

z-index:99999;

}