/*==================================================
 DSN ACCOUNTING LANDING
 Version 1.0
==================================================*/

:root{

    --primary:#D71920;
    --secondary:#111111;
    --light:#f8f9fa;
    --gray:#6c757d;
    --white:#ffffff;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:100px 0;

}

/*=========================================
 NAVBAR
=========================================*/

.navbar{

    transition:.35s;
    padding:18px 0;
    background:#fff;

}

.navbar-brand img{

    max-height:60px;

}

.nav-link{

    font-weight:500;
    color:#222 !important;
    margin-left:15px;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-danger{

    background:var(--primary);
    border:none;
    border-radius:40px;
    padding:13px 30px;
    font-weight:600;
    transition:.3s;

}

.btn-danger:hover{

    transform:translateY(-3px);

}

/*=========================================
 HERO
=========================================*/

.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:linear-gradient(135deg,#ffffff 60%,#f3f3f3 100%);
    overflow:hidden;

}

.hero::before{

    content:"";
    position:absolute;
    left:-200px;
    top:-120px;
    width:500px;
    height:500px;

    background:var(--primary);

    transform:rotate(35deg);

    opacity:.05;

}

.hero h1{

    font-weight:800;
    color:#111;
    line-height:1.1;

}

.hero p{

    color:#666;

}

.hero-image{

    max-width:520px;
    margin:auto;
    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/*=========================================
 TRUST BAR
=========================================*/

.trust{

    background:var(--primary);
    color:#fff;
    padding:45px 0;

}

.trust h2{

    font-size:42px;
    font-weight:700;

}

.trust p{

    margin-top:10px;

}

/*=========================================
 ABOUT
=========================================*/

#about{

    background:#fff;

}

#about img{

    border-radius:20px;
    box-shadow:var(--shadow);

}

#about h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;

}

#about p{

    color:#666;
    margin-bottom:25px;

}

/*=========================================
 TITLES
=========================================*/

section h2{

    font-size:42px;
    font-weight:700;

}

section > .container > .text-center > h2::after{

    content:"";
    display:block;
    width:80px;
    height:4px;
    background:var(--primary);
    margin:18px auto 0;

}

/*=========================================
 SERVICES
=========================================*/

#services{

    background:#f7f7f7;

}

.service-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:var(--shadow);
    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-icon{

    width:90px;
    height:90px;

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

}

.service-card h4{

    margin-bottom:15px;
    font-weight:600;

}

.service-card p{

    color:#666;

}

/*=========================================
 WHY US
=========================================*/

#why{

    background:#fff;

}

.feature{

    display:flex;
    align-items:flex-start;
    margin-bottom:30px;

}

.feature i{

    font-size:32px;
    color:var(--primary);
    margin-right:20px;

}

/*=========================================
 TESTIMONIALS
=========================================*/

#testimonials{

    background:#f7f7f7;

}

.testimonial{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);

}

/*=========================================
 FAQ
=========================================*/

#faq{

    background:#fff;

}

/*=========================================
 CONTACT
=========================================*/

#contact{

    background:#f5f5f5;

}

#contact form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);

}

.form-control{

    border-radius:12px;
    padding:15px;

}

textarea{

    resize:none;

}

/*=========================================
 FOOTER
=========================================*/

footer{

    background:#111;

}

footer p{

    margin:0;

}

/*=========================================
 RESPONSIVE
=========================================*/

@media(max-width:991px){

.hero{

padding-top:120px;
text-align:center;

}

.hero-image{

margin-top:50px;

}

.navbar{

padding:12px 0;

}

section{

padding:70px 0;

}

}

@media(max-width:768px){

.hero h1{

font-size:42px;

}

section h2{

font-size:34px;

}

.trust h2{

font-size:32px;

}

#about{

text-align:center;

}

}
/*====================================================
 HERO PREMIUM
====================================================*/

.hero{

    display:flex;
    min-height:100vh;
    padding:0;
    overflow:hidden;
    background:#fff;

}

.hero-left{

    width:45%;
    position:relative;
    overflow:hidden;

}

.hero-left img{

    width:100%;
    height:100%;

}

.hero-overlay{

    position:absolute;
    inset:0;
   

}

.hero-right{

    width:55%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:90px;
    position:relative;

}

.hero-right::before{

    content:"";

    position:absolute;

    top:-150px;
    right:-250px;

    width:550px;
    height:550px;

    background:var(--primary);

    transform:rotate(35deg);

    opacity:.08;

}

.hero-logo img{

    width:360px;
    margin-bottom:40px;

}

.hero-small{

    color:var(--primary);
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;

}

.hero h1{

    font-size:70px;
    font-weight:800;
    line-height:1.05;
    margin:20px 0;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:20px;
    color:#666;
    margin-bottom:40px;
    max-width:650px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-bottom:45px;

}

.hero-info{

    display:flex;
    gap:35px;
    flex-wrap:wrap;
    font-weight:600;
    color:#444;

}

.hero-info i{

    color:var(--primary);
    margin-right:8px;

}

/* Diagonal roja inferior */

.hero-left::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:180px;

    background:var(--primary);

    clip-path:polygon(0 100%,100% 0,100% 100%);

}

/* Responsive */

@media(max-width:991px){

.hero{

flex-direction:column;

}

.hero-left{

width:100%;
height:500px;

}

.hero-right{

width:100%;
padding:50px 30px;
text-align:center;

}

.hero-logo img{

width:260px;
margin:auto;
margin-bottom:30px;

}

.hero h1{

font-size:48px;

}

.hero-buttons{

justify-content:center;
flex-wrap:wrap;

}

.hero-info{

justify-content:center;

}

}

/*=========================================
 SERVICES PREMIUM
=========================================*/

.service-card{

    position:relative;
    overflow:hidden;

}

.service-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:var(--primary);
    transition:.4s;

}

.service-card:hover::before{

    width:100%;

}

.service-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.service-icon{

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(360deg);

}

.service-link{

    display:inline-block;
    margin-top:20px;
    color:var(--primary);
    font-weight:600;
    transition:.3s;

}

.service-link:hover{

    letter-spacing:1px;

}

/*=========================================
 WHY CHOOSE US PREMIUM
=========================================*/

#why{

background:#111;
color:#fff;

}

#why h2{

color:#fff;
margin-bottom:25px;

}

#why p{

color:#ccc;

}

.section-subtitle{

display:inline-block;
color:var(--primary);
font-weight:700;
letter-spacing:3px;
margin-bottom:15px;

}

.feature{

display:flex;
align-items:flex-start;
margin-bottom:35px;

}

.feature-icon{

width:65px;
height:65px;
background:var(--primary);
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#fff;
font-size:24px;

margin-right:20px;

flex-shrink:0;

}

.feature h5{

margin-bottom:10px;
font-weight:600;

}

.stats-box{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.stat-item{

background:#1b1b1b;

padding:40px;

border-radius:20px;

text-align:center;

transition:.35s;

border:1px solid rgba(255,255,255,.05);

}

.stat-item:hover{

background:var(--primary);

transform:translateY(-10px);

}

.stat-item h3{

font-size:50px;

font-weight:700;

margin-bottom:10px;

color:#fff;

}

.stat-item span{

font-size:18px;

color:#fff;

}

@media(max-width:991px){

.stats-box{

margin-top:50px;

}

}
/*=========================================
 TEAM
=========================================*/

#team{

    background:#f8f9fa;

}

.team-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.team-card:hover{

    transform:translateY(-12px);

}

.team-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.5s;

}

.team-card:hover img{

    transform:scale(1.08);

}

.team-content{

    padding:30px;

    text-align:center;

}

.team-content h4{

    margin-bottom:8px;

    font-weight:700;

}

.team-content span{

    color:var(--primary);

    font-weight:600;

}

.team-social{

    margin-top:20px;

}

.team-social a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#eee;

    color:#333;

    margin:0 5px;

    transition:.3s;

}

.team-social a:hover{

    background:var(--primary);

    color:#fff;

}
/*=========================================
 CALL TO ACTION
=========================================*/

#cta{

    padding:90px 0;
    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#D71920,#B30012);

    border-radius:30px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-100px;
    top:-100px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-80px;
    bottom:-80px;

}

.cta-box h2{

    color:#fff;

    font-size:46px;

    margin:20px 0;

}

.cta-box p{

    color:#f5f5f5;

    font-size:18px;

    max-width:700px;

}

.btn-light{

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

}

.btn-outline-light{

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

@media(max-width:991px){

.cta-box{

padding:50px 35px;
text-align:center;

}

.cta-box h2{

font-size:36px;

}

}
/*=========================================
 CLIENTS
=========================================*/

#clients{

    background:#ffffff;

    padding:90px 0;

}

.client-logo{

    height:140px;

    background:#fff;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.client-logo:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.client-logo img{

    max-width:140px;

    opacity:.55;

    filter:grayscale(100%);

    transition:.35s;

}

.client-logo:hover img{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}
.section-divider{

    width:120px;

    height:5px;

    background:var(--primary);

    border-radius:20px;

    margin:25px auto 60px;

}
/*=========================================
 COUNTERS
=========================================*/

#counter{

background:#111;

color:#fff;

}

.counter{

font-size:70px;

font-weight:800;

color:var(--primary);

}

#counter p{

font-size:18px;

color:#ddd;

}
/*==================================================
FOOTER PREMIUM
==================================================*/

#footer{

background:#111;

color:#ddd;

padding:90px 0 40px;

}

.footer-logo{

width:260px;

margin-bottom:25px;

}

#footer h4{

color:#fff;

margin-bottom:25px;

font-weight:600;

}

#footer ul{

list-style:none;

padding:0;

}

#footer li{

margin-bottom:12px;

}

#footer a{

color:#bbb;

transition:.3s;

}

#footer a:hover{

color:#fff;

padding-left:8px;

}

.footer-social{

margin-top:30px;

}

.footer-social a{

display:inline-flex;

align-items:center;

justify-content:center;

width:42px;

height:42px;

border-radius:50%;

background:#222;

margin-right:10px;

color:#fff;

transition:.3s;

}

.footer-social a:hover{

background:var(--primary);

transform:translateY(-5px);

}

.newsletter{

display:flex;

margin-top:25px;

}

.newsletter input{

flex:1;

height:50px;

border:none;

padding:0 20px;

border-radius:30px 0 0 30px;

}

.newsletter button{

border:none;

background:var(--primary);

color:#fff;

padding:0 25px;

border-radius:0 30px 30px 0;

}

#footer hr{

margin:50px 0 30px;

border-color:#333;

}
/*==================================================
WHATSAPP
==================================================*/

.whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:70px;

height:70px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

z-index:999;

box-shadow:0 15px 40px rgba(0,0,0,.25);

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.1);

}

100%{

transform:scale(1);

}

}
#topButton{

    position:fixed;

    right:30px;

    bottom:110px;

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}

#topButton:hover{

    transform:translateY(-5px);

}

#topButton i{

    margin:0;
    line-height:1;

}
/*=========================================
FAQ
=========================================*/

#faq{

    background:#f8f9fa;

}

#faq h2{

    margin-bottom:25px;

}

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.accordion-button{

    padding:22px;

    font-weight:600;

    font-size:18px;

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    background:#fff;

    color:#666;

    line-height:1.8;

}

.accordion-button::after{

    filter:brightness(0);

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

}
.testimonialSwiper{
    overflow:hidden;
}

.swiper-slide{
    height:auto;
}
.swiper{
    width:100%;
    padding:20px 5px 60px;
}

.swiper-wrapper{
    display:flex;
}

.swiper-slide{

    display:block;

    height:auto;

}
/*=========================================
TESTIMONIALS
=========================================*/

#testimonials{

    background:#f8f9fa;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

}

.stars{

    color:#FFC107;

    font-size:22px;

    margin-bottom:20px;

}

.client{

    display:flex;

    align-items:center;

    margin-top:25px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    margin-right:15px;

}

.client h5{

    margin:0;

    font-weight:700;

}

.client span{

    color:#777;

}
.cta-buttons{

    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:30px;

}

.cta-buttons .btn{

    min-width:220px;
    border-radius:50px;
}
/*==================================================
CONTACT
==================================================*/

#contact{

    background:#f8f9fa;

}

.contact-info-box{

    background:#111;

    color:#fff;

    padding:45px;

    border-radius:25px;

    height:100%;

}

.contact-info-box h3{

    color:#fff;

    margin-bottom:20px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:30px;

}

.contact-icon{

    width:55px;

    height:55px;

    background:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    margin-right:18px;

    flex-shrink:0;

}

.contact-item p{

    margin:0;

    color:#ddd;

}

.contact-card{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    height:100%;

}

#contact .form-control,
#contact .form-select{

    height:55px;

    border-radius:12px;

}

#contact textarea{

    height:auto;

    min-height:180px;

}

#contact button{

    border-radius:12px;

    padding:15px;

}