/*======================================
 DURION TECHNOLOGIES
 Software Development Page CSS
======================================*/

:root{
    --primary:#0d6efd;
    --secondary:#0b5ed7;
    --dark:#1f2937;
    --light:#f8fbff;
    --white:#ffffff;
    --text:#6c757d;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:18px;
}

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

.software-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
    padding:100px 0;
}

.software-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(13,110,253,.08);
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.software-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,.05);
    border-radius:50%;
    bottom:-150px;
    left:-120px;
}

.software-hero h1{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.2;
    color:var(--dark);
}

.software-hero p{
    font-size:1.1rem;
    color:var(--text);
}

.hero-img{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

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

100%{
transform:translateY(0);
}

}

/*======================================
 BUTTONS
======================================*/

.btn-primary{

background:var(--primary);
border:none;
padding:14px 34px;
border-radius:50px;
font-weight:600;
transition:.35s;

}

.btn-primary:hover{

transform:translateY(-4px);
box-shadow:0 15px 35px rgba(13,110,253,.35);

}

.btn-outline-primary{

border-radius:50px;
padding:14px 34px;
transition:.35s;

}

.btn-outline-primary:hover{

transform:translateY(-4px);

}

/*======================================
 LOGO SLIDER
======================================*/

.logo-slider{

overflow:hidden;
position:relative;

}

.logo-track{

display:flex;
gap:70px;
align-items:center;
animation:logos 18s linear infinite;

}

.logo-track img{

height:55px;
filter:grayscale(100%);
opacity:.7;
transition:.4s;

}

.logo-track img:hover{

filter:none;
opacity:1;
transform:scale(1.15);

}

@keyframes logos{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

/*======================================
 FEATURE CARDS
======================================*/

.feature-card{

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

}

.feature-card:hover{

transform:translateY(-12px);
border-top:5px solid var(--primary);

}

.feature-card .icon{

width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:#eef5ff;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:var(--primary);
margin-bottom:20px;
transition:.35s;

}

.feature-card:hover .icon{

background:var(--primary);
color:#fff;
transform:rotate(360deg);

}

.feature-card h4{

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

}

/*======================================
 SERVICE CARD
======================================*/

.service-card{

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

}

.service-card::before{

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

}

.service-card:hover::before{

left:0;

}

.service-card:hover{

transform:translateY(-10px);

}

.service-card i{

font-size:55px;
color:var(--primary);
margin-bottom:20px;

}

.service-card h4{

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

}

.service-card p{

color:#6c757d;

}

.service-card a{

text-decoration:none;
font-weight:600;

}

/*======================================
 PROCESS CARD
======================================*/

.process-card{

background:#fff;
padding:30px;
border-radius:18px;
box-shadow:var(--shadow);
transition:.35s;
height:100%;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-icon{

width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:#eef5ff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:var(--primary);
margin-bottom:18px;

}

/*======================================
 TECHNOLOGY CARD
======================================*/

.tech-card{

background:#fff;
padding:30px;
border-radius:18px;
box-shadow:var(--shadow);
transition:.3s;
height:100%;

}

.tech-card:hover{

transform:translateY(-8px);

}

.tech-card h4{

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

}

.tech-card .badge{

margin:4px;
padding:10px 14px;
font-size:14px;
border-radius:30px;

}
/* ======================================
   INDUSTRY CARDS
====================================== */

.industry-card{
    background:#fff;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.industry-card:hover{
    transform:translateY(-12px);
    background:#0d6efd;
    color:#fff;
}

.industry-card i{
    font-size:55px;
    color:#0d6efd;
    margin-bottom:20px;
    transition:.4s;
}

.industry-card:hover i{
    color:#fff;
    transform:scale(1.2);
}

/* ======================================
   PROJECT CARD
====================================== */

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-content{
    padding:25px;
}

.project-content h4{
    font-weight:700;
    margin-bottom:10px;
}

.project-content p{
    color:#6c757d;
}

/* ======================================
   COUNTER SECTION
====================================== */

.counter-section{
    background:linear-gradient(135deg,#0d6efd,#004ecb);
    color:#fff;
}

.counter-section h1{
    font-size:3rem;
    font-weight:800;
}

.counter-section p{
    font-size:18px;
}

/* ======================================
   PRICING
====================================== */

.pricing-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.pricing-card:hover{
    transform:translateY(-12px);
}

.pricing-card h1{
    color:#0d6efd;
    font-weight:800;
    margin:20px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card li{
    margin:15px 0;
}

.featured{
    background:#0d6efd;
    color:#fff;
    transform:scale(1.05);
}

.featured h1{
    color:#fff;
}

.featured .btn{
    background:#fff;
    color:#0d6efd;
    border:none;
}

.popular{
    position:absolute;
    top:15px;
    right:-45px;
    background:#ff9800;
    color:#fff;
    padding:8px 45px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:bold;
}

/* ======================================
   TESTIMONIAL
====================================== */

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    max-width:750px;
    margin:auto;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card img{
    border:5px solid #0d6efd;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#555;
    font-style:italic;
}

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

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px!important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

/* ======================================
   CTA
====================================== */

.cta-section{
    background:linear-gradient(135deg,#0d6efd,#004ecb);
    color:#fff;
    padding:80px 0;
}

.cta-section h2{
    font-size:42px;
    font-weight:800;
}

.cta-section p{
    font-size:18px;
}

.cta-section .btn{
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
}

/* ======================================
   SCROLL ANIMATION
====================================== */

.feature-card,
.service-card,
.tech-card,
.industry-card,
.project-card,
.pricing-card,
.process-card{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.show{
    opacity:1!important;
    transform:translateY(0)!important;
}

/* ======================================
   CURSOR GLOW
====================================== */

.cursor-glow{
    width:25px;
    height:25px;
    position:absolute;
    border-radius:50%;
    background:rgba(13,110,253,.25);
    pointer-events:none;
    transform:translate(-50%,-50%);
    transition:.08s;
    z-index:9999;
}

/* ======================================
   RIPPLE EFFECT
====================================== */

.btn{
    overflow:hidden;
    position:relative;
}

.ripple{
    position:absolute;
    border-radius:50%;
    transform:scale(0);
    animation:ripple .6s linear;
    background:rgba(255,255,255,.7);
    width:20px;
    height:20px;
}

@keyframes ripple{

to{

transform:scale(18);
opacity:0;

}

}

/* ======================================
   CUSTOM SCROLLBAR
====================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#004ecb;
}

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

@media(max-width:991px){

.software-hero{
    text-align:center;
    padding:70px 0;
}

.software-hero h1{
    font-size:2.5rem;
}

.hero-img{
    margin-top:40px;
}

.cta-section{
    text-align:center;
}

}

@media(max-width:768px){

.software-hero h1{
    font-size:2rem;
}

.counter-section h1{
    font-size:2.2rem;
}

.cta-section h2{
    font-size:30px;
}

.logo-track{
    gap:35px;
}

.logo-track img{
    height:40px;
}

}

@media(max-width:576px){

.feature-card,
.service-card,
.process-card,
.tech-card,
.industry-card,
.project-card,
.pricing-card{
    padding:25px;
}

.btn-primary,
.btn-outline-primary{
    width:100%;
    margin-bottom:10px;
}

.counter-section .col-md-3{
    margin-bottom:30px;
}

}