/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');
html{
    scroll-behavior:smooth;
}
section{
    scroll-margin-top:90px;
}
/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    color:#1f1f1f;
    overflow-x:hidden;
    padding-top:80px;
    margin:0;
    background:#ffffff;
}
body{
    font-family:'Poppins',sans-serif;
    color:#1f1f1f;
    overflow-x:hidden;
    padding-top:80px;

    background:linear-gradient(
        180deg,
        #FFF8EE 0%,
        #FFF3DD 15%,
        #FFE8C4 35%,
        #FFD9A0 60%,
        #FFC978 85%,
        #F6B65B 100%
    );
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.05);
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.navbar{
    height:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:50px;
    width:auto;
    transition:.35s;
}

.logo:hover img{
    transform:scale(1.05);
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    font-family:'Manrope',sans-serif;
    font-weight:600;
    position:relative;
    font-size:16px;
    color:#333;
    transition:.3s;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
    color:#D4AF37;
}

.download-btn{
      font-family:'Manrope',sans-serif;

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#B8860B,#D4AF37,#FFD700);

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    letter-spacing:.3px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(212,175,55,.35);

    transition:all .35s ease;

    animation:floatButton 2.5s ease-in-out infinite;

}
.download-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.75),

        transparent

    );

    transform:skewX(-25deg);

    animation:shineButton 3s linear infinite;

}

.download-btn:hover{

    transform:translateY(-5px) scale(1.05);

    box-shadow:0 18px 40px rgba(212,175,55,.55);

}
@keyframes floatButton{

    0%{

        transform:translateY(0);

        box-shadow:0 10px 25px rgba(212,175,55,.35);

    }

    50%{

        transform:translateY(-4px);

        box-shadow:0 18px 35px rgba(255,215,0,.55);

    }

    100%{

        transform:translateY(0);

        box-shadow:0 10px 25px rgba(212,175,55,.35);

    }

}
@keyframes shineButton{

    0%{

        left:-120%;

    }

    100%{

        left:180%;

    }

}
button,
.download-btn{
    cursor:pointer;
}
/* ================= HERO ================= */


#hero{

    background:linear-gradient(135deg,#FFB347,#FF9933,#F57C00);

    min-height:100vh;

    display:flex;

    align-items:center;

}


.hero-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:100vh;

}
.hero-content{
    flex:1;
}

.hero-tag{
     font-family:'Manrope',sans-serif;
    display:inline-block;
    background:#F8E7A1;
    color:#8B6B00;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;

line-height:1.1;

    margin-bottom:20px;
}

.hero-content h1 span{
    color:#D4AF37;
}

.hero-content p{
    font-size:18px;
    color:#555;
    max-width:550px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.primary-btn{
    font-family:'Manrope',sans-serif;
    background:#D4AF37;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:#B88915;
    transform:translateY(-3px);
}

.secondary-btn{
      font-family:'Manrope',sans-serif;
    border:2px solid #D4AF37;
    color:#D4AF37;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.secondary-btn:hover{
    background:#D4AF37;
    color:#fff;
}

.hero-image{

    flex:1;

    height:100vh;

    overflow:hidden;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}
/*================ FEATURES ================*/

#features{

padding:120px 0;

}

.feature-layout{

display:grid;

grid-template-columns:2fr 1fr;

gap:35px;

align-items:stretch;

}

.feature-large{

position:relative;

overflow:hidden;

border-radius:35px;

height:500px;

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.feature-large img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.feature-large:hover img{

transform:scale(1.08);

}

.feature-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:45px;

background:linear-gradient(transparent,rgba(0,0,0,.75));

color:white;

}

.feature-overlay span{

color:#d06a20;

font-weight:700;

letter-spacing:2px;

}

.feature-overlay h3{

font-size:46px;

margin:15px 0;

}

.feature-overlay p{

 font-size:22px;

    color:#141413;

    line-height:1.8;

    max-width:700px;

    margin:0 auto;


}

.feature-small-grid{

    display:grid;

    grid-template-columns:1fr;

    grid-template-rows:repeat(4,1fr);

    gap:15px;

    height:500px;

}

.small-card{

    background:white;

    border-radius:25px;

    padding:18px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.small-card:hover{

transform:translateY(-10px);

background:#FFF7E5;

}

.small-card h4{

    font-size:32px;

    color:#D4AF37;

    margin-bottom:6px;

}

.small-card p{

    font-size:16px;

    color:#555;

}
/* ================= HOW IT WORKS ================= */

/*================ HOW IT WORKS ================*/

#how-it-works{

    padding:120px 0;

}

.process{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;

    margin-top:70px;

}

.process-line{

    position:absolute;

    top:45px;

    left:10%;

    width:80%;

    height:4px;

    background:linear-gradient(90deg,#D4AF37,#FFD700,#D4AF37);

    z-index:0;

    border-radius:20px;

}

.process-step{

    position:relative;

    flex:1;

    min-height:300px;   /* Same height for all */

    background:white;

    padding:35px 25px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:all .35s ease;

    z-index:1;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

}

.process-step:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(212,175,55,.25);

}

.step-circle{

    width:90px;

    height:90px;

    margin:auto;

    margin-top:-80px;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#D4AF37,#FFD700);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    color:white;

    box-shadow:0 10px 25px rgba(212,175,55,.4);

}

.process-step h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:15px;

    min-height:45px;

}

.process-step p{

    font-size:18px;

    line-height:1.8;

    color:#666;

    flex:1;

}
.process-step.active{

    border:2px solid #D4AF37;

    box-shadow:0 20px 50px rgba(212,175,55,.35);

    animation:cardPulse 1.5s infinite;

}

@keyframes cardPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.04);

    }

    100%{

        transform:scale(1);

    }

}

.process-step.active .step-circle{

    animation:pulseStep 1.5s infinite;

}

@keyframes pulseStep{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

        box-shadow:0 0 30px rgba(255,215,0,.8);

    }

    100%{

        transform:scale(1);

    }

}
/* ================= SECURITY ================= */

#security{
    padding:120px 0;
   
}

.security-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.security-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.security-image img{

    width:100%;

    max-width:650px;      /* Increased from 520px */

    transition:all .5s ease;

    filter:drop-shadow(0 20px 35px rgba(212,175,55,.25));

    animation:securityFloat 4s ease-in-out infinite;

}
.security-image img:hover{

    transform:scale(1.08) rotate(-2deg);

    filter:
        drop-shadow(0 30px 50px rgba(212,175,55,.45));

}
@keyframes securityFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.security-content{
    flex:1;
}

.security-tag{

    letter-spacing:1px;
text-transform:none;
display:inline-block;

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #B8860B,
        #FFD700,
        #FFF8C6,
        #FFD700,
        #B8860B
    );

    background-size:300%;

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;

    animation:securityShine 3s linear infinite,
              securityGlow 2s ease-in-out infinite;

}
@keyframes securityShine{

    0%{

        background-position:-300%;

    }

    100%{

        background-position:300%;

    }

}

@keyframes securityGlow{

    0%,100%{

        filter:
            drop-shadow(0 0 5px rgba(255,215,0,.35));

    }

    50%{

        filter:
            drop-shadow(0 0 15px rgba(255,215,0,.9))
            drop-shadow(0 0 30px rgba(255,215,0,.6));

    }

}
@media (max-width:768px){

    .security-tag{

        font-size:52px;

    }

}

@media (max-width:576px){

    .security-tag{

        font-size:38px;

    }

}

.security-content h2{
    font-size:46px;
    margin-bottom:20px;
}

.security-content p{
 font-size:24px;

    font-family:'Manrope',sans-serif;

    font-weight:500;

    text-align:center;

    margin-bottom:20px;
}

.security-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.security-item{

    background:white;

    padding:18px 24px;

    border-radius:18px;

    margin-bottom:18px;

    font-size:22px;

    font-weight:600;

    color:#1f1f1f;

    cursor:pointer;

    transition:all .35s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}
.security-item span{

    display:inline-block;

    margin-right:10px;

    transition:all .35s ease;

}
.security-item:hover{

    color:#D4AF37;

    background:#FFF8E5;

    transform:translateX(12px) scale(1.03);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

    text-shadow:
        0 0 8px rgba(212,175,55,.5),
        0 0 18px rgba(255,215,0,.4);

}
.security-item:hover span{

    transform:rotate(20deg) scale(1.4);

    filter:drop-shadow(0 0 12px gold);

}
/*================ DOWNLOAD ================*/

#download{
    padding:120px 0;
    color:rgb(10, 9, 9);
}

.download-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.download-content{

    width:100%;

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.download-tag{

    display:inline-block;

    background:linear-gradient(135deg,#D4AF37,#FFD700);

    color:#1a1a1a;

    padding:10px 24px;

    border-radius:30px;

    margin-bottom:20px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 8px 25px rgba(212,175,55,.45);

    animation:downloadGlow 2s ease-in-out infinite;

}
.download-tag{

    position:relative;

    overflow:hidden;


}

.download-tag::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );

    transform:skewX(-25deg);

    animation:shineDownload 3s linear infinite;

}

@keyframes shineDownload{

    0%{

        left:-120%;

    }

    100%{

        left:180%;

    }

}

.download-content h2{
    font-size:48px;
    margin-bottom:20px;
    text-align:center;
}

.download-content p{
 font-size:24px;

    font-family:'Manrope',sans-serif;

    font-weight:500;

    text-align:center;

    margin-bottom:20px;
}
.store-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

}

.store-buttons a{

    width:220px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.google-badge{
 transform:scale(0.45);

    transform-origin:center;

}
.apple-badge{

    transform:scale(0.95);

    transform-origin:center;

}

.store-buttons img{

    transition:.3s;

}




/*================ FAQ ================*/

#faq{

padding:120px 0;

background:#171B23;

color:white;

}

.faq-heading{

text-align:center;

margin-bottom:70px;

}

.faq-heading span{

color:#D4AF37;

font-weight:700;

letter-spacing:2px;

}

.faq-heading h2{

font-size:54px;

margin:15px 0;

}

.faq-heading p{

font-size:20px;

color:#AEB5C2;

}

.faq-container{

max-width:1100px;

margin:auto;

}

.faq-item{

margin-bottom:22px;

border:1px solid rgba(255,255,255,.12);

border-radius:18px;

overflow:hidden;

background:#1F242E;

transition:.35s;

}

.faq-item:hover{

border-color:#D4AF37;

}

.faq-question{

width:100%;

padding:28px 35px;

display:flex;

justify-content:space-between;

align-items:center;

background:none;

border:none;

color:white;

font-size:22px;

font-weight:600;

cursor:pointer;

}

.faq-question .icon{

font-size:30px;

color:#D4AF37;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .4s ease;

}

.faq-answer p{

padding:0 35px 30px;

color:#C6CBD4;

font-size:18px;

line-height:1.8;

}

.faq-item.active .faq-answer{

max-height:220px;

}

.faq-item.active{

border-color:#D4AF37;

box-shadow:0 0 25px rgba(212,175,55,.18);

}
footer{
background:#171B23;
color:#D4AF37;
padding:80px 0 20px;
}

.footer-container{
display:flex;
justify-content:space-between;
margin-bottom:50px;
}

.footer-container h4{
margin-bottom:20px;
}

.footer-container p{
    font-size:20px;
margin-bottom:10px;
color:#ffffff;
}
.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    text-decoration:none;

    color:#f2eeee;

    transition:.3s;

    font-size:17px;

}

.footer-links a:hover{

    color:#D4AF37;

    transform:translateX(8px);

}
.footer-contact a{

    display:block;

    color:#ece7e7;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-contact a:hover{

    color:#D4AF37;

    transform:translateX(8px);

}

.copyright{
text-align:center;
color:#888;
border-top:1px solid #333;
padding-top:20px;
}
#journey{
    padding:120px 0;
   
}

.journey-wrapper{
    display:flex;
    justify-content:space-between;
    gap:40px;
}
.journey-wrapper{
    position:relative;
}

.journey-wrapper::before{

    content:"";

    position:absolute;

    top:58%;

    left:16%;

    width:68%;

    height:4px;

    background:#e5e5e5;

    z-index:-1;

}
.journey-card{

    flex:1;

    min-height:500px;

    background:#D4AF37;

    border-radius:25px;

    padding:25px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.journey-card img{

    width:85%;

    height:220px;

    object-fit:contain;

    margin:auto;

    transition:.4s;

}

.circle{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#ddd;
    color:#555;
    margin:35px auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    transition:.4s;
}

.journey-card h3{

    font-size:30px;

    color:#000;

    margin-bottom:15px;

    min-height:40px;

    transition:.4s;

}

.journey-card p{

    color:#000;

    font-size:17px;

    line-height:1.7;

    flex:1;

}

.journey-card.active img{
    transform:scale(1.05);
}

.journey-card.active .circle{
    background:#D4AF37;
    color:white;
    box-shadow:0 0 25px rgba(212,175,55,.6);
}

.journey-card.active h3{

    color:#D4AF37;

}
.journey-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(212,175,55,.20);

}
/*=========================*/

#plans{

padding:120px 0;

transition:.5s;

}

.plans-heading{

text-align:center;

font-size:56px;

margin-bottom:50px;

}

.plan-tabs{

display:flex;

justify-content:center;

gap:18px;

margin-bottom:60px;

flex-wrap:wrap;

}

.plan-tab{

padding:16px 28px;

border:none;

border-radius:50px;

font-size:17px;

font-weight:600;

cursor:pointer;

background:white;

transition:.4s;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.plan-tab.active{

background:linear-gradient(135deg,#D4AF37,#FFD95A);

color:white;

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(212,175,55,.45);

}

.plan-card{

max-width:1100px;

margin:auto;

border-radius:35px;

padding:60px;

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

box-shadow:0 30px 60px rgba(0,0,0,.08);
transition:all .5s ease;
animation: fadeIn .5s ease;
}
@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.plan-card img{


    border-radius:30px;
    filter:drop-shadow(0 20px 40px rgba(212,175,55,.35));
width:360px;

transition:all .5s ease;

}

.plan-text{

flex:1;

}

.plan-text span{

display:inline-block;

letter-spacing:3px;

font-weight:700;

color:#D4AF37;

margin-bottom:18px;

}

.plan-text h2{

font-size:52px;

margin-bottom:20px;

}

.plan-text p{

font-size:20px;

line-height:1.8;

color:#555;

}
.feature-card:hover,
.step-card:hover{

transform:translateY(-10px);

}
@media(max-width:992px){

.hero-container,
.security-container,
.plan-card,
.download-container{

flex-direction:column;

text-align:center;

}

.features-grid,
.steps
{

grid-template-columns:1fr;

}

.plan-card img{

width:280px;

}

.hero-content h1{

font-size:42px;

}

}
#hero,
#features,
#how-it-works,
#security,
#plans,
#testimonials{

background:transparent;

}
.hero-tag{

    font-size:22px;
    font-weight:700;

    background:linear-gradient(
        90deg,
        #B8860B,
        #FFD700,
        #FFF8C6,
        #FFD700,
        #B8860B
    );

    background-size:300%;

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;

    animation:goldShine 3s linear infinite,
              goldPulse 2s ease-in-out infinite;

}

@keyframes goldShine{

    0%{
        background-position:-300%;
    }

    100%{
        background-position:300%;
    }

}

@keyframes goldPulse{

    0%,100%{

        filter:drop-shadow(0 0 5px rgba(255,215,0,.4));

    }

    50%{

        filter:drop-shadow(0 0 15px rgba(255,215,0,.9));

    }

}
.hero-content h1,
.plans-heading,
.security-content h2,
.download-content h2,
.faq-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    letter-spacing:.5px;

}
.section-title h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:700;

    color:#1f1f1f;

    margin:0;

}

.section-title p{

    font-size:24px;

    font-family:'Manrope',sans-serif;

    font-weight:500;

    text-align:center;

    margin-bottom:20px;

}
/*================ TESTIMONIALS ================*/

#testimonials{

    padding:120px 0;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:stretch;

}

.testimonial-card{

    flex:1;

    min-width:280px;

    max-width:350px;

    background:white;

    border-radius:30px;

    padding:40px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-grid{

    display:flex ;

    flex-direction:row;

    justify-content:center;

    align-items:stretch;

    gap:30px;

    flex-wrap:nowrap;

    width:100%;

}
.testimonial-card{

    flex:1;

    min-width:280px;

    max-width:350px;

}

.testimonial-card{

    flex:1;

    max-width:360px;

    background:white;

    border-radius:30px;

    padding:40px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card.side{

    transform:scale(.9);

    opacity:.75;

}

.testimonial-card.active{

    transform:scale(1.05);

    background:linear-gradient(135deg,#FFF8E8,#FFE7A5);

    border:2px solid #D4AF37;

    box-shadow:0 25px 60px rgba(212,175,55,.30);

}

.quote{

    font-size:70px;

    color:#D4AF37;

    line-height:1;

    margin-bottom:15px;

}

.testimonial-card p{

    font-size:18px;

    line-height:1.8;

    color:#444;

    margin-bottom:25px;

}

.stars{

    font-size:22px;

    color:#D4AF37;

    letter-spacing:3px;

    margin-bottom:18px;

}

.testimonial-card h4{

    font-size:24px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:6px;

}

.testimonial-card span{

    color:#777;

    font-size:15px;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}
.footer-brand p{

    margin:18px 0;

    color:#555;

    font-size:17px;

}

.social-icons{

    display:flex;

    gap:18px;

    margin-top:20px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#fff;

    color:#D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s ease;

}

.social-icons a:hover{

    background:linear-gradient(135deg,#D4AF37,#FFD700);

    color:#fff;

    transform:translateY(-6px) rotate(8deg);

    box-shadow:0 15px 35px rgba(212,175,55,.45);

}
/* ===============================
   HERO RESPONSIVE
================================ */

@media (max-width:992px){

    .hero-container{

        flex-direction:column-reverse;

        justify-content:center;

        text-align:center;

        height:auto;

        gap:50px;

        padding:60px 0;

    }

    .hero-content{

        width:100%;

    }

    .hero-content p{

        max-width:100%;

        margin:0 auto 35px;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-image{

        width:100%;

        height:auto;

    }

    .hero-image img{

        width:100%;

        max-width:420px;

        height:auto;

        margin:auto;

        object-fit:contain;

    }

}

@media (max-width:768px){

    #hero{

        min-height:auto;

        padding:50px 0;

    }

    .hero-content h1{

        font-size:48px;

        line-height:1.2;

    }

    .hero-content p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

        gap:15px;

    }

    .primary-btn,
    .secondary-btn{

        width:240px;

        text-align:center;

    }

    .hero-image img{

        max-width:320px;

    }

}

@media (max-width:480px){

    .hero-content h1{

        font-size:38px;

    }

    .hero-tag{

        font-size:12px;

    }

    .hero-content p{

        font-size:16px;

    }

    .hero-image img{

        max-width:260px;

    }

}
@media (max-width:768px){

.navbar{

    flex-direction:column;

    gap:20px;

}

.nav-links{

    flex-wrap:wrap;

    justify-content:center;

}

}
@media (max-width:768px){

.feature-layout{

    grid-template-columns:1fr;

}

.feature-large{

    height:350px;

}

}@media (max-width:768px){

.plan-card{

    flex-direction:column;

    text-align:center;

    padding:30px;

}

.plan-card img{

    width:260px;

}

}
@media (max-width:768px){

.security-container{

    flex-direction:column;

    text-align:center;

}

.security-image img{

    width:100%;

    max-width:350px;

}

}@media (max-width:768px){

.download-wrapper{

    flex-direction:column;

    text-align:center;

}

.store-buttons{

    flex-direction:column;

}

}@media (max-width:768px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

}
@media(max-width:768px){

.section-title h2,
.hero-content h1,
.plans-heading,
.faq-heading h2{

    font-size:42px;
    line-height:1.2;

}

}
