/*=========================================
  DINFLOW WEBSITE
=========================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#0D1117;
    color:#fff;
    line-height:1.6;
}

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

header{

    /* position:sticky;
    top:0; 
    z-index:999; */
    background:#121720;
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}

.navbar{

    width:90%;
    max-width:1400px;

    margin:auto;

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

    padding:18px 0;
}

.logo{

    font-size:36px;
    font-weight:800;
}

.din{

    color:#ffffff;
}
.fl-bottom{

    color:#ff7b00;
}
.fl{

    color:#ff7b00;
    margin-left:-8px;
}
.ow{

    color:#00ff00;
    margin-left:-8px;
}

.navbar ul{

    list-style:none;

    display:flex;
    gap:35px;
}

.navbar a{

    text-decoration:none;
    color:#ddd;
    transition:.3s;
}


a {
	text-decoration:none;
}

.navbar a:hover{

    color:#7CFF00;
}

.btn-nav{

    background:#ff7b00;

    padding:12px 28px;

    border-radius:40px;

    color:#fff !important;

    font-weight:600;

    transition:.3s;
}

.btn-nav:hover{

    transform:translateY(-3px);

    background:#ff922d;
}

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

.hero{

    width:90%;
    max-width:1400px;

    margin:80px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;
}

.hero h1{

    font-size:70px;

    line-height:1.05;

    margin-bottom:30px;
}

.hero h1 span{

    color:#ff7b00;
}

.hero p{

    color:#B9B9B9;

    font-size:20px;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;
}

.btn-primary{

    background:#ff7b00;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(255,123,0,.35);
}

.btn-secondary{

    text-decoration:none;

    border:2px solid #2f3743;

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    transition:.35s;
}

.btn-secondary:hover{

    border-color:#7CFF00;

    color:#7CFF00;
}

.hero-image img{

    width:100%;

    border-radius:15px;

    box-shadow:0 30px 60px rgba(0,0,0,.5);
}

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

section{

    padding:100px 0;
}

section h2{

    text-align:center;

    font-size:46px;

    margin-bottom:15px;
}

section>p{

    text-align:center;

    color:#aaa;

    margin-bottom:60px;
}

/*=========================================
 FEATURES
=========================================*/

.feature-grid{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:grid;

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

    gap:30px;
}

.card{

    background:#171C24;

    border-radius:22px;

    padding:40px;

    transition:.35s;

    border:1px solid #242A35;
}

.card:hover{

    transform:translateY(-8px);

    border-color:#ff7b00;

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

.card i{

    font-size:45px;

    color:#7CFF00;

    margin-bottom:25px;
}

.card h3{

    margin-bottom:15px;

    font-size:26px;
}

.card p{

    color:#b5b5b5;
}

/*=========================================
 ROLES
=========================================*/

.role-grid{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:grid;

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

    gap:25px;
}

.role-card{

    background:#171C24;

    text-align:center;

    border-radius:20px;

    padding:35px 20px;

    transition:.3s;
}

.role-card:hover{

    transform:translateY(-8px);

    background:#1D2430;
}

.role-card i{

    font-size:55px;

    color:#ff7b00;

    margin-bottom:20px;
}

.role-card h3{

    margin-bottom:15px;
}

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

.pricing-grid{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:grid;

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

    gap:35px;
}

.price-card{

    background:#171C24;

    border-radius:25px;

    padding:45px;

    position:relative;

    border:1px solid #2b3440;

    transition:.35s;
}

.price-card:hover{

    transform:translateY(-10px);
}

.price-card h3{

    font-size:30px;
}

.price-card h1{

    font-size:54px;

    margin:20px 0;

    color:#7CFF00;
}

.price-card ul{

    list-style:none;

    margin-bottom:35px;
}

.price-card li{

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.06);
}

.price-card button{

    width:100%;

    padding:16px;

    background:#ff7b00;

    color:#fff;

    border:none;

    border-radius:50px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;
}

.price-card button:hover{

    background:#ff9433;
}

.featured{

    border:2px solid #7CFF00;

    transform:scale(1.05);
}

.popular{

    position:absolute;

    top:-14px;

    right:25px;

    background:#7CFF00;

    color:#000;

    font-weight:700;

    padding:8px 18px;

    border-radius:40px;
}

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

.cta{

    background:linear-gradient(135deg,#ff7b00,#ff9f43);

    text-align:center;

    padding:90px 20px;
}

.cta h2{

    font-size:52px;

    margin-bottom:20px;
}

.cta p{

    font-size:20px;

    margin-bottom:40px;

    color:#fff;
}

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

footer{

    background:#121720;

    text-align:center;

    padding:60px 20px;
}

footer h2{

    font-size:42px;

    margin-bottom:15px;
}

footer span{

    color:#ff7b00;
}

footer p{

    color:#9e9e9e;

    margin:8px 0;
}

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

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

text-align:center;
}

.hero-buttons{

justify-content:center;
}

.feature-grid{

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

.role-grid{

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

.pricing-grid{

grid-template-columns:1fr;
}

.navbar{

flex-direction:column;

gap:20px;
}

.navbar ul{

flex-wrap:wrap;

justify-content:center;
}

}

@media(max-width:700px){

.hero h1{

font-size:46px;
}

.hero p{

font-size:17px;
}

.feature-grid{

grid-template-columns:1fr;
}

.role-grid{

grid-template-columns:1fr;
}

section h2{

font-size:34px;
}

.price-card h1{

font-size:42px;
}

.cta h2{

font-size:36px;
}

}



/* =========================================================
   OTHER FEATURES
========================================================= */

.other-features {
    padding: 100px 20px;
    background: #f8f8f8;
    overflow: hidden;
}


/* HEADING */

.features-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.features-heading span {
    display: inline-block;
    color: #ff6500;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.features-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #111;
}

.features-heading p {
    margin: 0 auto;
    max-width: 650px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* SLIDER */

.features-slider {
    position: relative;
    max-width: 1150px;
    margin: auto;
    padding: 0 55px;
}

.features-track {
    display: flex;
    transition: transform 0.7s ease;
}


/* SLIDE */

.feature-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}


/* IMAGE */

.feature-image {
    height: 480px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.7s ease;
}

.feature-slide:hover .feature-image img {
    transform: scale(1.03);
}


/* CONTENT */

.feature-content {
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-label {
    color: #ff6500;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.feature-content h3 {
    margin: 0 0 20px;
    color: #111;
    font-size: 32px;
    line-height: 1.15;
}

.feature-content p {
    margin: 0 0 30px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


/* BUTTON */

.feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;

    padding: 14px 22px;

    border-radius: 50px;

    background: #ff6500;
    color: #fff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-btn span {
    font-size: 20px;
    line-height: 0;
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,101,0,0.25);
}


/* ARROWS */

.slider-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0,0,0,0.12);

    z-index: 5;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.slider-arrow:hover {
    background: #ff6500;
    color: #fff;

    transform:
        translateY(-50%)
        scale(1.05);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}


/* DOTS */

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 28px;
}

.slider-dot {
    width: 9px;
    height: 9px;

    border: none;
    padding: 0;

    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.slider-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #ff6500;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .other-features {
        padding: 70px 15px;
    }

    .features-heading {
        margin-bottom: 35px;
    }

    .features-slider {
        padding: 0;
    }

    .feature-slide {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 300px;
    }

    .feature-content {
        padding: 35px 28px 40px;
    }

    .feature-content h3 {
        font-size: 27px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

}


.workflow{
    text-align:center;
    width:90%;
    max-width:1400px;
    margin:auto;
}

.workflow-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:60px;
}

.step{
    width:180px;
}

.circle{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#171C24;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border:2px solid #ff7b00;
}

.circle i{
    font-size:40px;
    color:#7CFF00;
}

.arrow{
    font-size:35px;
    color:#ff7b00;
}

.stats{
    display:flex;
    gap:30px;
    width:90%;
    max-width:1200px;
    margin:auto;
    overflow-x:auto;
    padding-bottom:10px;
}

.stat-card{
    background:#171C24;
    border-radius:20px;
    padding:40px;
    text-align:center;

    min-width:250px;
    flex-shrink:0;
}

.stat-card h1{
    color:#7CFF00;
    font-size:50px;
}

.dashboard-grid{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.dashboard-card{
    background:#171C24;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.dashboard-card:hover{
    transform:translateY(-8px);
}

.dashboard-card img{
    width:100%;
    display:block;
}

.dashboard-card h3{
    padding:20px;
    text-align:center;
}

.testimonial-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial{
    background:#171C24;
    padding:35px;
    border-radius:20px;
    border-left:5px solid #ff7b00;
}

.testimonial p{
    color:#bbb;
    margin-bottom:20px;
}

.faq{
    width:90%;
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#171C24;
    margin:20px 0;
    border-radius:15px;
    overflow:hidden;
}

.faq-btn{
    width:100%;
    background:none;
    color:#fff;
    border:none;
    padding:25px;
    font-size:18px;
    cursor:pointer;
    text-align:left;
}

.faq-content{
    display:none;
    padding:0 25px 25px;
    color:#bbb;
}

/* Subscription  modal */
.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.7);

align-items:center;
justify-content:center;
z-index: 1000;
}

/*
.modal-content{

background:#171C24;
color:white;

padding:30px;
border-radius:20px;

width:400px;

}

*/
.modal input,
.modal textarea,
.modal select{

width:100%;
padding:12px;
margin:10px 0;

border-radius:8px;

}

/* Close Button */
.close-btn{

    position:absolute;

    top:15px;
    right:20px;

    width:35px;
    height:35px;

    border:none;

    border-radius:50%;

    background:#ff4d4d;

    color:white;

    font-size:24px;

    font-weight:bold;

    cursor:pointer;

    display:flex;

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

    transition:.3s;

}


.close-btn:hover{

    background:#ff1a1a;

    transform:rotate(90deg);

}


/* Make modal content position relative */
.modal-content{

    position:relative;

    background:#171C24;

    color:white;

    padding:40px;

    border-radius:20px;

    width:400px;

}

.request-modal-content{

    position:relative;

    background:#171C24;

    color:white;

    padding:40px;

    border-radius:20px;

    width:400px;

}


/* Submit Button */

.submit-btn{

    width:100%;

    padding:14px;

    margin-top:20px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f7d774
    );

    color:#111;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}


.submit-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 8px 20px rgba(212,175,55,.35);

}