/* =========================================
GLOBAL CSS
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#0b1f3a;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    max-width:1240px;
}

/* =========================================
TOP BAR
========================================= */

.top-bar{
    background:linear-gradient(90deg,#02142f,#0b2c61);
    padding:6px 0;
    position:relative;
    z-index:99;
}

.top-bar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.top-left a{
    color:#d8e6ff;
    font-size:13px;
    font-weight:500;
    transition:0.3s;
}

.top-left a:hover{
    color:#ffffff;
}

.top-left i{
    margin-right:7px;
    color:#0A66FF;
}

.top-right{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-right a{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
    font-size:13px;
}

.top-right a:hover{
    background:#0A66FF;
    transform:translateY(-3px);
}

/* =========================================
HEADER
========================================= */

.main-navbar{
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);
    padding:8px 0;
    box-shadow:0 4px 18px rgba(0,0,0,0.04);
    border-bottom:1px solid rgba(0,0,0,0.04);
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:109px;
    height:auto;
    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.02);
}

/* NAVIGATION */

.navbar-nav{
    gap:5px;
}

.navbar-nav .nav-link{
    color:#0b1f3a;
    font-weight:700;
    font-size:14px;
    padding:10px 14px !important;
    border-radius:8px;
    transition:0.3s;
    position:relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0A66FF;
    background:#edf4ff;
}

/* DROPDOWN */

.dropdown-menu{
    border:none;
    border-radius:14px;
    padding:12px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.dropdown-item{
    padding:11px 15px;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    font-size:14px;
}

.dropdown-item:hover{
    background:#edf4ff;
    color:#0A66FF;
}

/* HEADER BUTTON */

.quote-btn{
    background:linear-gradient(135deg,#0A66FF,#001B5E);
    color:#ffffff;
    padding:10px 20px;
    border-radius:10px;
    font-size:14px;
    font-weight:700;
    border:none;
    transition:0.4s;
    box-shadow:0 8px 20px rgba(10,102,255,0.20);
}

.quote-btn:hover{
    transform:translateY(-2px);
    color:#ffffff;
    box-shadow:0 12px 28px rgba(10,102,255,0.30);
}

.quote-btn i{
    margin-left:6px;
}

/* =========================================
CUSTOM TOGGLER
========================================= */

.custom-toggler{
    border:none;
    padding:0;
    width:40px;
    height:40px;
    position:relative;
    background:#edf4ff;
    border-radius:10px;
    box-shadow:none !important;
}

.custom-toggler:focus{
    box-shadow:none;
}

.custom-toggler span{
    width:22px;
    height:2px;
    background:#0A66FF;
    display:block;
    margin:5px auto;
    transition:0.3s;
    border-radius:10px;
}

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

.footer{
    background:linear-gradient(135deg,#02142f 0%,#041c44 45%,#072c61 100%);
    padding:85px 0 22px;
    position:relative;
    overflow:hidden;
    margin-top:80px;
}

/* SHAPES */

.footer-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
}

.footer-shape-1{
    width:320px;
    height:320px;
    background:rgba(10,102,255,0.12);
    top:-120px;
    left:-100px;
}

.footer-shape-2{
    width:260px;
    height:260px;
    background:rgba(255,119,0,0.10);
    bottom:-100px;
    right:-80px;
}

.footer .container{
    position:relative;
    z-index:2;
}

/* FOOTER LOGO */

.footer-logo{
    display:inline-block;
    margin-bottom:22px;
}

.footer-logo img{
    width:200px;
    filter:drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* FOOTER TEXT */

.footer-text{
    color:#d0def6;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}

/* FOOTER TITLES */

.footer h5{
    color:#ffffff;
    font-size:21px;
    margin-bottom:26px;
    font-weight:800;
    position:relative;
}

.footer h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(90deg,#0A66FF,#ff7b00);
}

/* FOOTER LINKS */

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links li a{
    color:#d0def6;
    transition:0.3s;
    font-weight:500;
    font-size:15px;
}

.footer-links li a:hover{
    color:#0A66FF;
    padding-left:6px;
}

/* CONTACT */

.footer-contact{
    list-style:none;
    padding:0;
}

.footer-contact li{
    display:flex;
    gap:14px;
    margin-bottom:18px;
    color:#d0def6;
    line-height:1.7;
    font-size:15px;
}

.footer-contact li span{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0A66FF;
    font-size:15px;
}

/* SOCIAL LINKS */

.social-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
    font-size:15px;
}

.social-links a:hover{
    background:linear-gradient(135deg,#0A66FF,#ff7b00);
    transform:translateY(-5px) rotate(5deg);
}

/* DIVIDER */

.footer-divider{
    height:1px;
    background:rgba(255,255,255,0.08);
    margin:50px 0 22px;
}

/* COPYRIGHT */

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#aab8d3;
    font-size:14px;
    letter-spacing:0.4px;
}

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

@media(max-width:991px){

.top-bar-wrapper{
    flex-direction:column;
    gap:12px;
    text-align:center;
}

.top-left{
    justify-content:center;
}

.main-navbar{
    padding:10px 0;
}

.logo img{
    width:150px;
}

.navbar-collapse{
    background:#ffffff;
    margin-top:15px;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.navbar-nav{
    gap:4px;
}

.header-btn{
    margin-top:15px;
}

.quote-btn{
    width:100%;
    text-align:center;
}

.footer{
    padding:70px 0 20px;
}

}

@media(max-width:576px){

.top-bar{
    display:none;
}

.logo img{
    width:70px;
}

.main-navbar{
    padding:8px 0;
}

.navbar-nav .nav-link{
    font-size:14px;
    padding:10px 12px !important;
}

.footer{
    text-align:center;
}

.footer-logo img{
    margin:auto;
}

.footer h5::after{
    left:50%;
    transform:translateX(-50%);
}

.social-links{
    justify-content:center;
}

.footer-contact li{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-contact li span{
    margin:auto;
}

}


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

.hero-tech{
    position:relative;
    overflow:hidden;
    padding:17px 0;
    background: linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%
    );
}

/* GLOW EFFECT */

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:0.18;
}

.hero-glow-1{
    width:350px;
    height:350px;
    background:#0D6EFD;
    top:-100px;
    left:-100px;
}

.hero-glow-2{
    width:300px;
    height:300px;
    background:#FF7A00;
    right:-100px;
    bottom:-100px;
}

/* FLOATING ICONS */

.floating-icon{
    position:absolute;
    color:rgba(255,255,255,0.08);
    font-size:40px;
    animation:floatIcon 5s infinite ease-in-out;
}

.icon-react{
    top:15%;
    left:10%;
}

.icon-python{
    bottom:10%;
    left:15%;
}

.icon-cloud{
    top:20%;
    right:10%;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;
}



.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:50px;
    color:#fff;
    font-size:14px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:20px;
    font-family: auto !important;
}

.hero-content h1 span{
    color:#FF7A00;
}

.hero-content p{
    color:#cfd8ea;
    font-size:18px;
    line-height:1.8;
    font-family: cursive;
}

/* TYPING EFFECT */

.typing-wrapper{
    margin-top:20px;
    min-height:40px;
}

#typing-text{
    font-size:24px;
    font-weight:700;
    color:#fff;
    border-right:2px solid #FF7A00;
    padding-right:5px;
}

/* BUTTONS */

.hero-btns{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    background:#FF7A00;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    font-weight:700;
    transition:0.3s;
}

.hero-btn-primary:hover{
    background:#ff9d3d;
    color:#fff;
    transform:translateY(-3px);
}

.hero-btn-secondary{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    font-weight:700;
    backdrop-filter:blur(10px);
}

.hero-btn-secondary:hover{
    background:#fff;
    color:#001B5E;
}

/* STATS */

.hero-stats{
    display:flex;
    gap:25px;
    margin-top:50px;
    flex-wrap:wrap;
}

.hero-stat-box{
    background:rgba(255,255,255,0.08);
    padding:20px 25px;
    border-radius:16px;
    backdrop-filter:blur(10px);
}

.hero-stat-box h3{
    color:#fff;
    font-size:32px;
    font-weight:800;
}

.hero-stat-box p{
    margin:0;
    color:#cbd5e1;
}

/* LAPTOP */

.hero-laptop-wrap{
    position:relative;
    z-index:2;
}

.device-laptop{
    width:100%;
    max-width:600px;
    margin:auto;
    background:#0a0f1d;
    border-radius:24px;
    padding:18px;
    box-shadow:0 25px 60px rgba(0,0,0,0.45);
    animation:floatLaptop 5s infinite ease-in-out;
}

.laptop-topbar{
    height:45px;
    background:#001B5E;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:0 15px;
    margin-bottom:15px;
}

.laptop-topbar span{
    width:10px;
    height:10px;
    background:#fff;
    border-radius:50%;
}

.laptop-screen{
    border-radius:18px;
    overflow:hidden;
}

.laptop-screen img{
    width:100%;
    display:block;
    border-radius:18px;
}

/* ANIMATION */

@keyframes floatLaptop{

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

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

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

}

@keyframes floatIcon{

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

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

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

}

/* RESPONSIVE */

@media(max-width:991px){

.hero-content h1{
    font-size:42px;
}

.hero-tech{
    padding:80px 0;
}

.hero-logo{
    width:180px;
}

}
/* =========================================
COMMON SECTION
========================================= */
.section-space{
    /* padding:100px 0; */
    position: relative;
    overflow: hidden;
    background:#f8fbff;
}

/* BACKGROUND GLOW EFFECTS */
.section-space::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,140,0,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(80px);
}

.section-space::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(10,102,255,0.08);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(80px);
}

/* =========================================
SECTION TITLE
========================================= */
.section-title{
    position: relative;
    z-index: 2;
    margin-bottom:60px;
}

.section-title span{
    color:#ff7a00;
    font-weight:800;
    text-transform:uppercase;
    font-size:15px;
    letter-spacing:2px;
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:12px;
}

/* SMALL DESIGN LINES */
.section-title span::before,
.section-title span::after{
    content:"";
    width:45px;
    height:2px;
    background:linear-gradient(to right,#ff7a00,#0A66FF);
    display:block;
}

.section-title h2{
    font-size:48px;
    font-weight:900;
    margin:18px 0 15px;
    color:#08142e;
    line-height:1.2;
}

.section-title p{
    color:#6B7280;
    font-size:17px;
}

/* =========================================
SERVICES
========================================= */
.service-card{
    position:relative;
    background: linear-gradient(135deg, #001B5E 0%, #182f64 45%, #0c2446 100%);
    border:1px solid rgba(255,255,255,0.08);
    padding:40px 30px;
    border-radius:22px;
    transition:0.45s ease;
    height:100%;
    overflow:hidden;
    z-index:1;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* TOP BORDER ANIMATION */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(to right,#ff7a00,#0A66FF);
    transition:0.6s;
}

.service-card:hover::before{
    left:0;
}

/* GLOW EFFECT */
.service-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,122,0,0.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
    filter:blur(40px);
    transition:0.5s;
}

.service-card:hover::after{
    transform:scale(1.2);
}

/* HOVER */
.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.18);
    border-color:rgba(255,255,255,0.15);
}

/* ICON */
.service-card i{
    width:78px;
    height:78px;
    background:#fff;
    color:#0a0350;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:28px;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(10,102,255,0.25);
}

.service-card:hover i{
    transform:rotate(-8deg) scale(1.08);
}

/* TITLE */
.service-card h4{
    font-size:24px;
    font-weight:800;
    margin-bottom:15px;
    color:#ffffff;
    transition:0.3s;
}

.service-card:hover h4{
    color:#ffb366;
}

/* DESCRIPTION */
.service-card p{
    color:#d6d9e2;
    line-height:1.9;
    font-size:15px;
}

/* BUTTON STYLE FOR FUTURE MULTIPLE PAGES */
.service-card .service-btn{
    margin-top:20px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.service-card .service-btn:hover{
    color:#ff7a00;
    transform:translateX(6px);
}

/* =========================================
ANIMATION
========================================= */
@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}

.service-card:nth-child(2){
    animation:floatCard 4s ease-in-out infinite;
}

.service-card:nth-child(3){
    animation:floatCard 5s ease-in-out infinite;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px){

    .section-title h2{
        font-size:38px;
    }

    .service-card{
        padding:32px 24px;
    }

}

@media(max-width:576px){

    .section-space{
        padding:70px 0;
    }

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

    .section-title span::before,
    .section-title span::after{
        width:25px;
    }

}


/* =========================================
WHY CHOOSE US SECTION
========================================= */

.why-section{
    padding:100px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */
.why-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(10,102,255,0.06);
    border-radius:50%;
    top:-100px;
    right:-100px;
    filter:blur(80px);
}

.why-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,122,0,0.08);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
    filter:blur(80px);
}

/* IMAGE */
.why-img{
    width:100%;
    max-width:1050px;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
    transition:0.5s ease;
    animation:floatImage 5s ease-in-out infinite;
}

.why-img:hover{
    transform:scale(1.02);
}

/* SMALL TITLE */
.mini-title{
    color:#ff7a00;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:15px;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.mini-title::before{
    content:"";
    width:40px;
    height:2px;
    background:linear-gradient(to right,#ff7a00,#0A66FF);
}

/* HEADING */
.why-section h2{
    font-size:52px;
    font-weight:900;
    line-height:1.2;
    color:#08142e;
    margin:20px 0;
}

/* PARAGRAPH */
.why-section p{
    color:#6B7280;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

/* LIST */
.why-list{
    list-style:none;
    padding:0;
    margin:0;
}

.why-list li{
    margin-bottom:18px;
    font-weight:700;
    color:#08142e;
    font-size:18px;
    display:flex;
    align-items:center;
    gap:14px;
    transition:0.3s;
}

.why-list li:hover{
    transform:translateX(8px);
    color:#0A66FF;
}

.why-list i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:linear-gradient(135deg,#0A66FF,#ff7a00);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    box-shadow:0 8px 18px rgba(10,102,255,0.25);
}

/* FLOAT ANIMATION */
@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */
@media(max-width:991px){

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

    .mini-title{
        justify-content:center;
    }

    .why-section h2{
        font-size:38px;
    }

    .why-list li{
        justify-content:center;
    }

}

@media(max-width:576px){

    .why-section{
        padding:70px 0;
    }

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

    .why-section p{
        font-size:15px;
    }

}
/* PORTFOLIO */
.portfolio-card{
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.portfolio-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.portfolio-content{
    padding:22px;
}

.portfolio-content h5{
    font-weight:700;
}

/* =========================================
PROCESS SECTION - WELLZONETECH
========================================= */

.process-section{
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, #001B5E 0%, #182f64 45%, #0c2446 100%);
    overflow: hidden;
    z-index: 1;
}

/* Background Glow */
.process-section::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 136, 0, 0.12);
    border-radius: 50%;
    top: -180px;
    left: -120px;
    filter: blur(90px);
    z-index: -1;
}

.process-section::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    bottom: -120px;
    right: -100px;
    filter: blur(80px);
    z-index: -1;
}

/* SECTION TITLE */
.process-section .section-title{
    margin-bottom: 70px;
}

.process-section .section-title span{
    display:inline-block;
    color:#ff8c1a;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
    position: relative;
}

.process-section .section-title span::before,
.process-section .section-title span::after{
    content:"";
    position:absolute;
    top:50%;
    width:45px;
    height:2px;
    background:#ff8c1a;
}

.process-section .section-title span::before{
    left:-60px;
}

.process-section .section-title span::after{
    right:-60px;
}

.process-section .section-title h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.process-section .section-title p{
    color:#d1d9e6;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* STEP BOX */
.step-box{
    position: relative;
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding:45px 30px;
    border-radius:24px;
    text-align:center;
    overflow:hidden;
    transition:0.4s ease;
    height:100%;
    z-index:1;
}

/* Hover Border Animation */
.step-box::before{
    content:"";
    position:absolute;
    inset:0;
    padding:1px;
    border-radius:24px;
    background: linear-gradient(135deg,#0A66FF,#ff8c1a);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity:0;
    transition:0.4s;
}

.step-box:hover::before{
    opacity:1;
}

.step-box:hover{
    transform: translateY(-12px);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* STEP NUMBER */
.step-box h3{
    font-size:58px;
    font-weight:900;
    margin-bottom:18px;
    background: linear-gradient(135deg,#0A66FF,#ff8c1a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    line-height:1;
}

/* ICON CIRCLE */
.step-icon{
    width:78px;
    height:78px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    background: rgba(10,102,255,0.12);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    transition:0.4s;
}

.step-box:hover .step-icon{
    transform: rotateY(180deg);
    background: linear-gradient(135deg,#0A66FF,#ff8c1a);
}

/* TITLE */
.step-box h5{
    font-size:24px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

/* DESC */
.step-box p{
    color:#d7ddea;
    line-height:1.8;
    margin-bottom:0;
}

/* CONNECTOR LINE */
.process-line{
    position:absolute;
    top:50%;
    left:100%;
    width:100%;
    height:2px;
    background: linear-gradient(to right,#0A66FF,#ff8c1a);
    z-index:-1;
}

.col-md-3:last-child .process-line{
    display:none;
}

/* FLOATING DOTS */
.process-dots{
    position:absolute;
    width:12px;
    height:12px;
    background:#ff8c1a;
    border-radius:50%;
    animation: floatDots 5s infinite ease-in-out;
}

.dot1{
    top:18%;
    left:8%;
}

.dot2{
    top:70%;
    right:12%;
    background:#0A66FF;
}

@keyframes floatDots{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-18px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* RESPONSIVE */
@media(max-width:991px){

    .process-section{
        padding:80px 0;
    }

    .process-section .section-title h2{
        font-size:38px;
    }

    .process-line{
        display:none;
    }
}

@media(max-width:576px){

    .process-section .section-title h2{
        font-size:32px;
    }

    .step-box{
        padding:35px 22px;
    }

    .step-box h3{
        font-size:46px;
    }
}


/* =========================================
TESTIMONIAL SECTION - WELLZONETECH
========================================= */

.testimonial-section{
    position: relative;
    padding: 110px 0;
    background: #f8fbff;
    overflow: hidden;
    z-index: 1;
}

/* Background Glow */
.testimonial-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:-1;
}

.glow-left{
    width:300px;
    height:300px;
    background:rgba(10,102,255,0.12);
    top:-100px;
    left:-100px;
}

.glow-right{
    width:280px;
    height:280px;
    background:rgba(255,140,26,0.12);
    bottom:-100px;
    right:-80px;
}

/* SECTION TITLE */
.testimonial-section .section-title{
    margin-bottom:70px;
}

.testimonial-section .section-title span{
    display:inline-block;
    color:#ff8c1a;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
    position:relative;
}

.testimonial-section .section-title span::before,
.testimonial-section .section-title span::after{
    content:"";
    position:absolute;
    top:50%;
    width:45px;
    height:2px;
    background:#ff8c1a;
}

.testimonial-section .section-title span::before{
    left:-60px;
}

.testimonial-section .section-title span::after{
    right:-60px;
}

.testimonial-section .section-title h2{
    font-size:48px;
    font-weight:800;
    color:#081c3c;
    margin-bottom:18px;
}

.testimonial-section .section-title p{
    max-width:650px;
    margin:auto;
    color:#6B7280;
    line-height:1.8;
}

/* REVIEW CARD */
.review-card{
    position:relative;
    background:#ffffff;
    padding:40px 32px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.4s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* Border Animation */
.review-card::before{
    content:"";
    position:absolute;
    inset:0;
    padding:1px;
    border-radius:24px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    opacity:0;
    transition:0.4s;
}

.review-card:hover::before{
    opacity:1;
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* Active Card */
.active-review{
    background:linear-gradient(135deg,#001B5E 0%, #182f64 45%, #0c2446 100%);
}

.active-review p,
.active-review h6,
.active-review small{
    color:#fff !important;
}

.active-review .review-avatar{
    background:#fff;
    color:#001B5E;
}

/* QUOTE ICON */
.quote-icon{
    position:absolute;
    top:20px;
    right:22px;
    font-size:48px;
    color:rgba(10,102,255,0.08);
}

/* STARS */
.review-stars{
    margin-bottom:20px;
}

.review-stars i{
    color:#ffb400;
    margin-right:4px;
}

/* TEXT */
.review-card p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:28px;
    font-size:16px;
}

/* USER */
.review-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.review-avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.review-user h6{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
    color:#081c3c;
}

.review-user small{
    color:#6B7280;
}

/* RESPONSIVE */
@media(max-width:991px){

    .testimonial-section{
        padding:80px 0;
    }

    .testimonial-section .section-title h2{
        font-size:38px;
    }
}

@media(max-width:576px){

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

    .review-card{
        padding:35px 24px;
    }
}

/* BLOG */
.blog-section{
    padding:90px 0;
    background:#f8fbff;
}

.blog-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-body{
    padding:25px;
}

.blog-body h5{
    font-weight:700;
    margin-bottom:15px;
}

.blog-body p{
    color:#6B7280;
}

.blog-body a{
    color:#0A66FF;
    font-weight:700;
}

/* =========================================
CTA SECTION - WELLZONETECH
========================================= */

.cta-section{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:
        linear-gradient(135deg,
        #001B5E 0%,
        #182f64 45%,
        #0c2446 100%);
    z-index:1;
}

/* BACKGROUND GLOW */
.cta-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:-1;
}

.shape-one{
    width:350px;
    height:350px;
    background:rgba(10,102,255,0.18);
    top:-120px;
    left:-120px;
}

.shape-two{
    width:280px;
    height:280px;
    background:rgba(255,140,26,0.15);
    bottom:-80px;
    right:-80px;
}

.shape-three{
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.06);
    top:40%;
    left:45%;
}

/* WRAPPER */
.cta-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT CONTENT */
.cta-content{
    flex:1;
    min-width:300px;
}

.cta-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.cta-badge i{
    color:#ff8c1a;
}

.cta-content h2{
    font-size:56px;
    line-height:1.2;
    font-weight:800;
    color:#fff;
    margin-bottom:24px;
    font-family: auto;
}

.cta-content h2 span{
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.cta-content p{
    color:#d9e1f1;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

/* BUTTONS */
.cta-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.cta-primary{
    background:linear-gradient(135deg,#0A66FF,#0050d8);
    color:#fff;
    padding:16px 34px;
    border-radius:12px;
    font-weight:700;
    border:none;
    transition:0.4s ease;
    box-shadow:0 12px 30px rgba(10,102,255,0.3);
}

.cta-primary:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 20px 40px rgba(10,102,255,0.4);
}

.cta-secondary{
    border:2px solid rgba(255,255,255,0.18);
    color:#fff;
    padding:16px 34px;
    border-radius:12px;
    font-weight:700;
    transition:0.4s ease;
    backdrop-filter:blur(10px);
}

.cta-secondary:hover{
    background:#ff8c1a;
    border-color:#ff8c1a;
    color:#fff;
    transform:translateY(-5px);
}

/* RIGHT VISUAL */
.cta-visual{
    position:relative;
    flex:1;
    min-width:320px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* MAIN CARD */
.main-card{
    width:360px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    padding:45px 35px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    animation:floatCard 5s ease-in-out infinite;
}

.cta-icon{
    width:95px;
    height:95px;
    border-radius:24px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    margin:auto;
    margin-bottom:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#fff;
}

.main-card h5{
    font-size:28px;
    color:#fff;
    font-weight:800;
    margin-bottom:15px;
}

.main-card p{
    color:#d9e1f1;
    margin-bottom:0;
}

/* FLOATING MINI CARDS */
.mini-card{
    position:absolute;
    background:#fff;
    padding:14px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    color:#081c3c;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
    display:flex;
    align-items:center;
    gap:10px;
    animation:floatMini 4s infinite ease-in-out;
}

.mini-card i{
    color:#0A66FF;
}

.card-one{
    top:5%;
    left:0;
}

.card-two{
    top:50%;
    right:-20px;
    animation-delay:1s;
}

.card-three{
    bottom:5%;
    left:20px;
    animation-delay:2s;
}

/* ANIMATION */
@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes floatMini{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */
@media(max-width:991px){

    .cta-section{
        padding:80px 0;
    }

    .cta-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-btns{
        justify-content:center;
    }

    .main-card{
        width:100%;
        max-width:360px;
    }
}

@media(max-width:576px){

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:16px;
    }

    .cta-btns{
        flex-direction:column;
    }

    .cta-primary,
    .cta-secondary{
        width:100%;
    }

    .mini-card{
        font-size:12px;
        padding:10px 14px;
    }
}


.section-title{
    margin-bottom: 60px;
}

.section-title span{
    display:inline-block;
    color:#ff8c1a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
    position:relative;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#081c3c;
    line-height:1.2;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    line-height:1.8;
    margin-top:18px;
}
.section-title span{
    color:#ff8c1a;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:52px;
    font-weight:900;
    margin-top:14px;
    color:#081c3c;
}

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

.about-hero{
    position:relative;
    padding:130px 0 110px;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    overflow:hidden;
}

.hero-content{
    position:relative;
    z-index:5;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.hero-shape-1{
    width:380px;
    height:380px;
    background:rgba(255,140,26,0.18);
    top:-120px;
    right:-120px;
}

.hero-shape-2{
    width:320px;
    height:320px;
    background:rgba(10,102,255,0.18);
    bottom:-100px;
    left:-100px;
}

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:28px;
    backdrop-filter:blur(12px);
}

.about-hero h1{
    font-size:68px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    max-width:950px;
    margin:auto;
}

.about-hero h1 span{
    color:#ff8c1a;
}

.about-hero p{
    color:#dbe5f5;
    max-width:760px;
    margin:25px auto 0;
    line-height:1.9;
    font-size:18px;
}

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

.about-section{
    padding:110px 0;
}

.about-image-wrapper{
    overflow:hidden;
    border-radius:30px;
}

.about-image-wrapper img{
    width:100%;
    border-radius:30px;
    transition:0.5s;
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.about-image-wrapper:hover img{
    transform:scale(1.03);
}

.mini-title{
    display:inline-block;
    color:#ff8c1a;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:14px;
}

.about-section h2{
    font-size:52px;
    font-weight:900;
    line-height:1.2;
    color:#081c3c;
    margin-bottom:20px;
}

.about-section p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:18px;
}

.about-points{
    margin-top:28px;
}

.about-points div{
    margin-bottom:14px;
    font-weight:600;
    color:#081c3c;
}

.about-points i{
    color:#0A66FF;
    margin-right:10px;
}

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

.counter-section{
    padding:100px 0;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
}

.counter-box{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:45px 25px;
    border-radius:28px;
    color:#fff;
    transition:0.4s;
    backdrop-filter:blur(14px);
}

.counter-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}

.counter-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:30px;
}

.counter-box h3{
    font-size:52px;
    font-weight:900;
    color:#fff;
}

.counter-box p{
    margin:0;
    color:#dbe5f5;
}

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

.mission-section{
    padding:110px 0;
    background:#f8fbff;
}

.mission-card{
    background:#fff;
    padding:50px 40px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    transition:0.4s;
    height:100%;
}

.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(10,102,255,0.12),
    0 10px 25px rgba(255,140,26,0.08);
}

.mission-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
    margin-bottom:28px;
}

.mission-card h3{
    font-weight:800;
    margin-bottom:18px;
}

.mission-card p{
    color:#6B7280;
    line-height:1.9;
}

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

.why-about{
    padding:110px 0;
}

.choose-card{
    background:#fff;
    border:1px solid #eef1f5;
    padding:45px 30px;
    border-radius:28px;
    text-align:center;
    transition:0.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(10,102,255,0.12),
    0 10px 25px rgba(255,140,26,0.08);
}

.choose-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:32px;
}

.choose-card h4{
    margin:24px 0 14px;
    font-weight:800;
}

.choose-card p{
    color:#6B7280;
    line-height:1.8;
}

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

.team-section{
    padding:110px 0;
    background:#f8fbff;
}

.team-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(10,102,255,0.12),
    0 10px 25px rgba(255,140,26,0.08);
}

.team-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.team-info{
    padding:28px 22px;
    text-align:center;
}

.team-info h5{
    font-weight:800;
    margin-bottom:8px;
}

.team-info p{
    color:#6B7280;
}

.team-socials{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:18px;
}

.team-socials a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#f3f7ff;
    color:#0A66FF;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.team-socials a:hover{
    background:#0A66FF;
    color:#fff;
    transform:translateY(-4px);
}

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

.about-cta{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    color:#fff;
}

.cta-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.cta-shape-1{
    width:320px;
    height:320px;
    background:rgba(255,140,26,0.14);
    top:-120px;
    right:-100px;
}

.cta-shape-2{
    width:280px;
    height:280px;
    background:rgba(10,102,255,0.14);
    bottom:-100px;
    left:-100px;
}

.about-cta h2{
    font-size:56px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.about-cta p{
    max-width:700px;
    margin:22px auto 34px;
    color:#dbe5f5;
    line-height:1.8;
    position:relative;
    z-index:2;
}

/* =========================================
BUTTON
========================================= */

.hero-primary{
    background:linear-gradient(135deg,#0A66FF,#0050d8);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    border:none;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(10,102,255,0.25);
}

.hero-primary:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 18px 40px rgba(10,102,255,0.35);
}

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

@media(max-width:991px){

    .about-hero{
        padding:100px 0 90px;
    }

    .about-hero h1{
        font-size:46px;
    }

    .section-title h2,
    .about-section h2,
    .about-cta h2{
        font-size:38px;
    }

    .about-section,
    .mission-section,
    .why-about,
    .team-section{
        padding:80px 0;
    }

    .counter-section{
        padding:80px 0;
    }
}

@media(max-width:576px){

    .about-hero{
        padding:90px 0 70px;
    }

    .about-hero h1{
        font-size:34px;
    }

    .about-hero p{
        font-size:15px;
    }

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

    .mission-card,
    .choose-card,
    .counter-box{
        padding:35px 24px;
    }

    .about-section,
    .mission-section,
    .why-about,
    .team-section,
    .about-cta{
        padding:65px 0;
    }

    .team-card img{
        height:240px;
    }

    .hero-primary{
        width:100%;
    }
}

/* career page css */

.section-title span{
    color:#ff8c1a;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:52px;
    font-weight:900;
    color:#081c3c;
    margin-top:14px;
}

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

.career-hero{
    position:relative;
    overflow:hidden;
    padding:130px 0 110px;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
}

.career-hero::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,140,26,0.14);
    top:-140px;
    right:-100px;
    filter:blur(80px);
}

.career-hero::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(10,102,255,0.15);
    bottom:-120px;
    left:-80px;
    filter:blur(80px);
}

.career-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:26px;
    backdrop-filter:blur(14px);
}

.career-hero h1{
    font-size:68px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    max-width:900px;
    margin:auto;
    font-family: auto;
}

.career-hero p{
    max-width:760px;
    margin:24px auto 0;
    color:#dbe5f5;
    font-size:18px;
    line-height:1.9;
}

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

.career-benefits,
.job-section,
.life-section,
.apply-section{
    padding:110px 0;
}

/* =========================================
BENEFITS
========================================= */

.benefit-card{
    background:#fff;
    border-radius:28px;
    padding:45px 28px;
    text-align:center;
    height:100%;
    border:1px solid #eef1f5;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.04);
}

.benefit-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    left:0;
    top:0;
    background:linear-gradient(90deg,#0A66FF,#ff8c1a);
}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(10,102,255,0.12),
    0 12px 25px rgba(255,140,26,0.08);
}

.benefit-card i{
    width:82px;
    height:82px;
    border-radius:24px;
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:32px;
    box-shadow:0 15px 30px rgba(10,102,255,0.25);
}

.benefit-card h5{
    font-size:24px;
    font-weight:800;
    margin:26px 0 14px;
}

.benefit-card p{
    color:#6B7280;
    line-height:1.8;
}

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

.job-section{
    background:#f8fbff;
}

.job-list{
    margin-top:30px;
}

.job-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    margin-bottom:25px;
    transition:0.4s;
    border:1px solid #eef1f5;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.job-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 18px 40px rgba(10,102,255,0.10),
    0 10px 22px rgba(255,140,26,0.06);
}

.job-left h4{
    font-size:28px;
    font-weight:800;
    color:#081c3c;
    margin-bottom:10px;
}

.job-left p{
    margin:0;
    color:#6B7280;
    font-size:16px;
}

.apply-btn{
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-weight:700;
    border:none;
    transition:0.4s;
    white-space:nowrap;
}

.apply-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 15px 30px rgba(10,102,255,0.25);
}

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

.life-section{
    background:#ffffff;
}

.life-section img{
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,0.10);
}

.mini-title{
    display:inline-block;
    color:#ff8c1a;
    font-weight:700;
    margin-bottom:14px;
    letter-spacing:1px;
}

.life-section h2{
    font-size:52px;
    font-weight:900;
    color:#081c3c;
    line-height:1.2;
    margin-bottom:22px;
}

.life-section p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:10px;
}

.career-points{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.career-points li{
    margin-bottom:16px;
    font-weight:600;
    color:#081c3c;
}

.career-points i{
    color:#0A66FF;
    margin-right:10px;
}

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

.apply-section{
    background:#f8fbff;
}

.career-form-wrap{
    max-width:950px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    border:1px solid #eef1f5;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe3ec;
    padding:12px 18px;
    font-size:15px;
    transition:0.3s;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#0A66FF;
}

textarea.form-control{
    height:auto;
    resize:none;
    padding-top:18px;
}

.submit-btn{
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    color:#fff;
    padding:15px 38px;
    border:none;
    border-radius:14px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(10,102,255,0.22);
}

.submit-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 18px 40px rgba(10,102,255,0.30);
}

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

.career-cta{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    color:#fff;
}

.career-cta::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,140,26,0.12);
    border-radius:50%;
    top:-120px;
    right:-100px;
    filter:blur(80px);
}

.career-cta::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(10,102,255,0.14);
    border-radius:50%;
    bottom:-120px;
    left:-100px;
    filter:blur(80px);
}

.career-cta h2{
    position:relative;
    z-index:2;
    font-size:56px;
    font-weight:900;
}

.career-cta p{
    position:relative;
    z-index:2;
    color:#dbe5f5;
    font-size:18px;
    margin:22px 0 32px;
}

.hero-primary{
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    border:none;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(10,102,255,0.25);
}

.hero-primary:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 18px 40px rgba(10,102,255,0.30);
}

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

@media(max-width:991px){

    .career-hero{
        padding:100px 0 90px;
    }

    .career-hero h1{
        font-size:46px;
    }

    .section-title h2,
    .life-section h2,
    .career-cta h2{
        font-size:38px;
    }

    .career-benefits,
    .job-section,
    .life-section,
    .apply-section,
    .career-cta{
        padding:80px 0;
    }

    .job-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .career-form-wrap{
        padding:35px;
    }
}

@media(max-width:576px){

    .career-hero{
        padding:90px 0 70px;
    }

    .career-hero h1{
        font-size:34px;
    }

    .career-hero p{
        font-size:15px;
    }

    .section-title h2,
    .life-section h2,
    .career-cta h2{
        font-size:30px;
    }

    .career-benefits,
    .job-section,
    .life-section,
    .apply-section,
    .career-cta{
        padding:65px 0;
    }

    .benefit-card,
    .career-form-wrap{
        padding:28px 22px;
    }

    .job-card{
        padding:24px;
    }

    .job-left h4{
        font-size:22px;
    }

    .apply-btn,
    .submit-btn,
    .hero-primary{
        width:100%;
        text-align:center;
    }

    .career-form-wrap{
        border-radius:24px;
    }
}

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

.contact-hero{
    position:relative;
    overflow:hidden;
    padding:130px 0 110px;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.hero-shape-1{
    width:420px;
    height:420px;
    background:rgba(255,140,26,0.14);
    top:-120px;
    right:-100px;
}

.hero-shape-2{
    width:320px;
    height:320px;
    background:rgba(10,102,255,0.15);
    bottom:-100px;
    left:-80px;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:12px 24px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:28px;
    backdrop-filter:blur(12px);
}

.contact-hero h1{
    font-size:68px;
    font-weight:900;
    line-height:1.15;
    color:#fff;
}

.contact-hero p{
    max-width:760px;
    margin:24px auto 0;
    color:#dbe5f5;
    line-height:1.9;
    font-size:18px;
}

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

.contact-section{
    padding:110px 0;
    background:#ffffff;
}

.contact-info-box{
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    padding:50px 40px;
    border-radius:30px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;
}

.contact-info-box::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(255,140,26,0.12);
    border-radius:50%;
    top:-100px;
    right:-80px;
    filter:blur(60px);
}

.mini-title{
    color:#ff8c1a;
    font-weight:700;
    letter-spacing:1px;
}

.contact-info-box h2{
    font-size:42px;
    font-weight:900;
    margin:18px 0;
    line-height:1.2;
}

.contact-info-box p{
    color:#dbe5f5;
    line-height:1.9;
}

.info-item{
    display:flex;
    gap:18px;
    margin-top:35px;
    align-items:flex-start;
}

.info-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:20px;
}

.info-item h6{
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

/* =========================================
FORM
========================================= */

.contact-form-wrap{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 45px rgba(0,0,0,0.05);
    border:1px solid #eef1f5;
}

.contact-form-wrap h3{
    font-size:42px;
    font-weight:900;
    margin:16px 0 35px;
    color:#081c3c;
}

.form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe3ec;
    padding:12px 18px;
    font-size:15px;
    transition:0.3s;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#0A66FF;
}

textarea.form-control{
    height:auto;
    resize:none;
    padding-top:18px;
}

.send-btn{
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    color:#fff;
    padding:15px 36px;
    border-radius:14px;
    font-weight:700;
    border:none;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(10,102,255,0.22);
}

.send-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 18px 40px rgba(10,102,255,0.30);
}

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

.contact-cta{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    color:#fff;
}

.cta-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.cta-shape-1{
    width:320px;
    height:320px;
    background:rgba(255,140,26,0.14);
    top:-120px;
    right:-100px;
}

.cta-shape-2{
    width:280px;
    height:280px;
    background:rgba(10,102,255,0.15);
    bottom:-100px;
    left:-80px;
}

.contact-cta h2{
    font-size:56px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.contact-cta p{
    color:#dbe5f5;
    font-size:18px;
    margin:22px auto 34px;
    max-width:720px;
    line-height:1.9;
    position:relative;
    z-index:2;
}

.hero-primary{
    background:
    linear-gradient(
    135deg,
    #0A66FF,
    #0050d8);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(10,102,255,0.25);
}

.hero-primary:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 18px 40px rgba(10,102,255,0.35);
}

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

@media(max-width:991px){

    .contact-hero{
        padding:100px 0 90px;
    }

    .contact-hero h1{
        font-size:46px;
    }

    .contact-form-wrap,
    .contact-info-box{
        padding:35px;
    }

    .contact-form-wrap h3,
    .contact-info-box h2,
    .contact-cta h2{
        font-size:36px;
    }

    .contact-section,
    .contact-cta{
        padding:80px 0;
    }
}

@media(max-width:576px){

    .contact-hero{
        padding:90px 0 70px;
    }

    .contact-hero h1{
        font-size:34px;
    }

    .contact-hero p{
        font-size:15px;
    }

    .contact-form-wrap,
    .contact-info-box{
        padding:28px 22px;
        border-radius:24px;
    }

    .contact-form-wrap h3,
    .contact-info-box h2,
    .contact-cta h2{
        font-size:30px;
    }

    .contact-section,
    .contact-cta{
        padding:65px 0;
    }

    .send-btn,
    .hero-primary{
        width:100%;
        text-align:center;
    }

    .info-item{
        gap:14px;
    }

    .info-icon{
        width:50px;
        height:50px;
        border-radius:14px;
        font-size:18px;
    }
}


/* =========================================
web=development page css
========================================= */

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

.web-hero{
    position:relative;
    padding:130px 0 110px;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    overflow:hidden;
}

.web-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.web-shape-1{
    width:380px;
    height:380px;
    background:rgba(255,140,26,0.18);
    top:-120px;
    right:-120px;
}

.web-shape-2{
    width:320px;
    height:320px;
    background:rgba(10,102,255,0.18);
    bottom:-100px;
    left:-100px;
}

.web-hero-content{
    position:relative;
    z-index:5;
}

.web-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:28px;
    backdrop-filter:blur(12px);
}

.web-hero h1{
    font-size:68px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    margin-bottom:25px;
}

.web-hero h1 span{
    color:#ff8c1a;
}

.web-hero p{
    color:#dbe5f5;
    line-height:1.9;
    font-size:18px;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.hero-outline{
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
}

.hero-outline:hover{
    background:#fff;
    color:#081c3c;
}

.hero-tech-list{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-tech-list span{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    padding:10px 18px;
    border-radius:30px;
    color:#fff;
    font-size:14px;
}

.web-hero-image img{
    width:100%;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

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

.web-services{
    padding:110px 0;
}

.section-title span{
    color:#ff8c1a;
    font-weight:700;
    letter-spacing:1px;
}

.section-title h2{
    font-size:52px;
    font-weight:900;
    color:#081c3c;
    margin-top:15px;
}

.service-card{
    background:#081c3c;
    border-radius:28px;
    padding:45px 35px;
    height:100%;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(10,102,255,0.12),
    0 10px 25px rgba(255,140,26,0.08);
}

.service-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:24px;
}

.service-card h4{
    font-weight:800;
    margin-bottom:16px;
}

.service-card p{
    color:#6B7280;
    line-height:1.8;
}

/* =========================================
TECH STACK
========================================= */

.tech-stack-section{
    padding:110px 0;
    background:#f8fbff;
}

.stack-box{
    background:#fff;
    padding:45px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    height:100%;
}

.stack-box h3{
    font-weight:800;
    margin-bottom:30px;
}

.stack-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.stack-item{
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 100%);
    color:#fff;
    padding:18px;
    border-radius:16px;
    text-align:center;
    font-weight:600;
    transition:0.4s;
}

.stack-item:hover{
    transform:translateY(-5px);
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
}

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

.development-process{
    padding:110px 0;
}

.process-card{
    background:#fff;
    padding:45px 30px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    transition:0.4s;
    height:100%;
}

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

.process-card span{
    font-size:60px;
    font-weight:900;
    color:#0A66FF;
}

.process-card h4{
    margin:18px 0 14px;
    font-weight:800;
}

.process-card p{
    color:#6B7280;
}

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

.why-web-section{
    padding:110px 0;
    background:#f8fbff;
}

.why-web-image img{
    border-radius:28px;
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.mini-title{
    display:inline-block;
    color:#ff8c1a;
    font-weight:700;
    margin-bottom:14px;
}

.why-web-section h2{
    font-size:52px;
    font-weight:900;
    color:#081c3c;
    line-height:1.2;
    margin-bottom:22px;
}

.why-web-section p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:25px;
}

.about-points div{
    margin-bottom:14px;
    font-weight:600;
    color:#081c3c;
}

.about-points i{
    color:#0A66FF;
    margin-right:10px;
}

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

.web-cta{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    color:#fff;
}

.cta-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.cta-shape-1{
    width:320px;
    height:320px;
    background:rgba(255,140,26,0.14);
    top:-120px;
    right:-100px;
}

.cta-shape-2{
    width:280px;
    height:280px;
    background:rgba(10,102,255,0.14);
    bottom:-100px;
    left:-100px;
}

.web-cta h2{
    font-size:56px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.web-cta p{
    max-width:700px;
    margin:22px auto 34px;
    color:#dbe5f5;
    line-height:1.8;
}

.hero-primary{
    background:linear-gradient(135deg,#0A66FF,#0050d8);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    border:none;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(10,102,255,0.25);
}

.hero-primary:hover{
    transform:translateY(-5px);
    color:#fff;
}

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

@media(max-width:991px){

    .web-hero{
        padding:100px 0 90px;
    }

    .web-hero h1,
    .section-title h2,
    .why-web-section h2,
    .web-cta h2{
        font-size:42px;
    }

    .web-services,
    .tech-stack-section,
    .development-process,
    .why-web-section{
        padding:80px 0;
    }
}

@media(max-width:576px){

    .web-hero h1,
    .section-title h2,
    .why-web-section h2,
    .web-cta h2{
        font-size:32px;
    }

    .web-hero p{
        font-size:15px;
    }

    .service-card,
    .stack-box,
    .process-card{
        padding:35px 24px;
    }

    .stack-grid{
        grid-template-columns:1fr;
    }

    .hero-primary,
    .hero-outline{
        width:100%;
    }
}


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

.erp-hero{
    position:relative;
    padding:130px 0 110px;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    overflow:hidden;
}

.erp-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.erp-shape-1{
    width:380px;
    height:380px;
    background:rgba(255,140,26,0.18);
    top:-120px;
    right:-120px;
}

.erp-shape-2{
    width:320px;
    height:320px;
    background:rgba(10,102,255,0.18);
    bottom:-100px;
    left:-100px;
}

.erp-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:28px;
    backdrop-filter:blur(12px);
}

.erp-hero h1{
    font-size:68px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    margin-bottom:25px;
}

.erp-hero h1 span{
    color:#ff8c1a;
}

.erp-hero p{
    color:#dbe5f5;
    line-height:1.9;
    font-size:18px;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.hero-outline{
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
}

.hero-outline:hover{
    background:#fff;
    color:#081c3c;
}

.hero-tech-list{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-tech-list span{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    padding:10px 18px;
    border-radius:30px;
    color:#fff;
    font-size:14px;
}

/* =========================================
SECTIONS
========================================= */

.erp-modules,
.erp-tech-stack,
.erp-process,
.why-erp-section{
    padding:110px 0;
}

.erp-tech-stack{
    background:#f8fbff;
}

.section-title span{
    color:#ff8c1a;
    font-weight:700;
}

.section-title h2{
    font-size:52px;
    font-weight:900;
    color:#081c3c;
    margin-top:15px;
}

/* =========================================
ERP CARD
========================================= */

.erp-card{
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    height:100%;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.erp-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(10,102,255,0.12),
    0 10px 25px rgba(255,140,26,0.08);
}

.erp-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:24px;
}

.erp-card h4{
    font-weight:800;
    margin-bottom:16px;
}

.erp-card p{
    color:#6B7280;
    line-height:1.8;
}

/* =========================================
STACK
========================================= */

.stack-box{
    background:#fff;
    padding:45px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    height:100%;
}

.stack-box h3{
    font-weight:800;
    margin-bottom:30px;
}

.stack-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.stack-item{
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 100%);
    color:#fff;
    padding:18px;
    border-radius:16px;
    text-align:center;
    font-weight:600;
    transition:0.4s;
}

.stack-item:hover{
    background:linear-gradient(135deg,#0A66FF,#ff8c1a);
    transform:translateY(-5px);
}

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

.process-card{
    background:#fff;
    padding:45px 30px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    transition:0.4s;
    height:100%;
}

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

.process-card span{
    font-size:60px;
    font-weight:900;
    color:#0A66FF;
}

.process-card h4{
    margin:18px 0 14px;
    font-weight:800;
}

.process-card p{
    color:#6B7280;
}

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

.why-erp-image img{
    border-radius:28px;
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.mini-title{
    display:inline-block;
    color:#ff8c1a;
    font-weight:700;
    margin-bottom:14px;
}

.why-erp-section h2{
    font-size:52px;
    font-weight:900;
    color:#081c3c;
    line-height:1.2;
    margin-bottom:22px;
}

.why-erp-section p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:25px;
}

.about-points div{
    margin-bottom:14px;
    font-weight:600;
    color:#081c3c;
}

.about-points i{
    color:#0A66FF;
    margin-right:10px;
}

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

.erp-cta{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #001B5E 0%,
    #182f64 45%,
    #0c2446 100%);
    color:#fff;
}

.cta-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.cta-shape-1{
    width:320px;
    height:320px;
    background:rgba(255,140,26,0.14);
    top:-120px;
    right:-100px;
}

.cta-shape-2{
    width:280px;
    height:280px;
    background:rgba(10,102,255,0.14);
    bottom:-100px;
    left:-100px;
}

.erp-cta h2{
    font-size:56px;
    font-weight:900;
}

.erp-cta p{
    max-width:700px;
    margin:22px auto 34px;
    color:#dbe5f5;
    line-height:1.8;
}

.hero-primary{
    background:linear-gradient(135deg,#0A66FF,#0050d8);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    border:none;
    transition:0.4s;
}

.hero-primary:hover{
    transform:translateY(-5px);
    color:#fff;
}

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

@media(max-width:991px){

    .erp-hero h1,
    .section-title h2,
    .why-erp-section h2,
    .erp-cta h2{
        font-size:42px;
    }

    .erp-modules,
    .erp-tech-stack,
    .erp-process,
    .why-erp-section{
        padding:80px 0;
    }
}

@media(max-width:576px){

    .erp-hero h1,
    .section-title h2,
    .why-erp-section h2,
    .erp-cta h2{
        font-size:32px;
    }

    .erp-hero p{
        font-size:15px;
    }

    .erp-card,
    .stack-box,
    .process-card{
        padding:35px 24px;
    }

    .stack-grid{
        grid-template-columns:1fr;
    }

    .hero-primary,
    .hero-outline{
        width:100%;
    }
}


/* ============================================
   DIGITAL MARKETING PAGE STYLES
   ============================================ */

/* ----- HERO SECTION ----- */
.dm-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0b1120 0%, #1a2639 100%);
    overflow: hidden;
}

.dm-hero .dm-shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dm-hero .dm-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.dm-hero-content {
    position: relative;
    z-index: 2;
}

.dm-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(52, 152, 219, 0.15);
    color: #5dade2;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(52, 152, 219, 0.20);
}

.dm-badge i {
    margin-right: 8px;
}

.dm-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.dm-hero-content h1 span {
    display: block;
    color: #5dade2;
}

.dm-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-btns .btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-primary {
    background: linear-gradient(135deg, #3498db, #2e86de);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.35);
}

.hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.45);
    color: #fff;
}

.hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #5dade2;
    color: #fff;
    transform: translateY(-3px);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.hero-metrics i {
    color: #f1c40f;
    margin-right: 6px;
}

.dm-hero-image {
    position: relative;
    z-index: 2;
    animation: floatAnimation 6s ease-in-out infinite;
}

.dm-hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.40);
    max-width: 100%;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ----- SERVICES SECTION (shared styles, enhanced) ----- */
.dm-services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3498db;
    margin-bottom: 6px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1120;
}

.service-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(52, 152, 219, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.10), rgba(46, 204, 113, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 10px;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ----- GROWTH STRATEGY SECTION ----- */
.growth-strategy {
    padding: 80px 0;
    background: #ffffff;
}

.strategy-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid transparent;
}

.strategy-card:hover {
    background: #ffffff;
    border-color: rgba(52, 152, 219, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.strategy-icon {
    font-size: 2.4rem;
    color: #3498db;
    margin-bottom: 16px;
}

.strategy-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 8px;
}

.strategy-card p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ----- TOOLS SECTION ----- */
.dm-tools {
    padding: 80px 0;
    background: #f0f4f8;
}

.tools-box {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.tools-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.10);
    padding-bottom: 14px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-item {
    padding: 8px 18px;
    border-radius: 50px;
    background: #f0f4f8;
    color: #1a2639;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.tool-item:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ----- WHY CHOOSE (Digital) ----- */
.why-dm-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-dm-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

.mini-title {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3498db;
    margin-bottom: 8px;
}

.why-dm-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 16px;
}

.why-dm-section p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #1a2639;
    font-weight: 500;
}

.about-points i {
    color: #2ecc71;
    font-size: 1.2rem;
}

/* ----- TESTIMONIALS ----- */
.dm-testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.quote-icon {
    color: #3498db;
    font-size: 1.6rem;
    opacity: 0.30;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-author {
    border-top: 1px solid #edf2f7;
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: #0b1120;
    font-style: normal;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #718096;
    font-style: normal;
}

/* ----- CTA SECTION (Digital) ----- */
.dm-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0b1120 0%, #1a2639 100%);
    overflow: hidden;
    text-align: center;
}

.dm-cta .dm-cta-shape-1 {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.dm-cta .dm-cta-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.dm-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.dm-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.dm-cta .btn {
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* ----- RESPONSIVE ADJUSTMENTS ----- */
@media (max-width: 991px) {
    .dm-hero {
        padding: 60px 0;
    }
    .dm-hero-content h1 {
        font-size: 2.6rem;
    }
    .dm-hero-content p {
        font-size: 1rem;
    }
    .dm-hero-image {
        margin-top: 30px;
    }
    .dm-hero-image img {
        max-width: 80%;
        display: block;
        margin: 0 auto;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .why-dm-section h2 {
        font-size: 2rem;
    }
    .dm-cta h2 {
        font-size: 2.2rem;
    }
    .about-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dm-hero-content h1 {
        font-size: 2rem;
    }
    .dm-hero-content h1 span {
        font-size: 1.8rem;
    }
    .hero-btns .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .hero-metrics {
        gap: 12px;
        font-size: 0.85rem;
    }
    .dm-hero-image img {
        max-width: 100%;
    }
    .section-title h2 {
        font-size: 1.7rem;
    }
    .service-card {
        padding: 24px 18px;
    }
    .tools-grid {
        gap: 8px;
    }
    .tool-item {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    .dm-cta h2 {
        font-size: 1.8rem;
    }
    .dm-cta p {
        font-size: 1rem;
    }
    .dm-cta .btn {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
    .why-dm-section {
        text-align: center;
    }
    .about-points {
        justify-items: center;
    }
}

@media (max-width: 576px) {
    .dm-hero {
        padding: 40px 0;
    }
    .dm-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    .dm-hero-content h1 {
        font-size: 1.7rem;
    }
    .dm-hero-content h1 span {
        font-size: 1.5rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btns .btn {
        text-align: center;
    }
    .dm-hero-image img {
        max-width: 100%;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .strategy-card {
        padding: 20px 16px;
    }
    .tools-box {
        padding: 24px 18px;
    }
    .testimonial-card {
        padding: 20px 18px;
    }
    .dm-cta {
        padding: 60px 0;
    }
    .dm-cta h2 {
        font-size: 1.5rem;
    }
}