/*======================================
    DPS NEXTGEN IT SOLUTIONS
=======================================*/

/* Google Fonts */

/*==================================
    CSS VARIABLES
====================================*/

:root {
    /* Brand Colors */
    --primary: #0B63CE;
    --primary-dark: #084FA5;
    --secondary: #F44336;
    --secondary-dark: #D32F2F;

    /* Neutral Colors */
    --dark: #0F172A;
    --dark-light: #1E293B;

    --white: #FFFFFF;
    --light: #F8FAFC;

    --gray: #64748B;
    --gray-light: #94A3B8;

    --border: #E2E8F0;

    /* Status Colors */
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Shadows */
    --shadow-sm: 0 5px 20px rgba(0,0,0,.05);
    --shadow: 0 10px 40px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);

    /* Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;

    /* Transition */
    --transition: .35s ease;

    /* Header */
    --header-height: 90px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/*==================================
    BODY
====================================*/

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.7;
    color:var(--gray);
    background:var(--white);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{

    text-decoration:none;

    transition:var(--transition);

}


ul,
ol{

    list-style:none;
    margin:0;
    padding:0;

}

section{
    position: relative;
    padding: 50px 0;
}

.container{
    max-width:1320px;
}

::selection{
    background:var(--primary);
    color:#fff;
}

/*==================================
    HEADINGS
====================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Outfit',sans-serif;
    font-weight:600;
    color:var(--dark);
    line-height:1.2;
    margin-bottom:15px;

}

h1{
    font-size:64px;
}

h2{
    font-size:48px;
}

h3{
    font-size:36px;
}

h4{
    font-size:28px;
}

h5{
    font-size:22px;
}

h6{
    font-size:18px;
}

/*==================================
    PARAGRAPH
====================================*/

p{

    margin-bottom:20px;
    color:var(--gray);
    font-size:16px;
    line-height:1.8;

}

.btn-main{

    background:var(--primary);

    color:#fff;

    padding:14px 34px;

    border-radius:50px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    transition:var(--transition);

}

.btn-main:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-4px);

}

.btn-outline-main{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:14px 34px;

    border-radius:50px;

    transition:var(--transition);

}

.btn-outline-main:hover{

    background:var(--primary);

    color:#fff;

}

.text-primary{

    color:var(--primary)!important;

}

.text-gray{

    color:var(--gray);

}

.bg-light{

    background:var(--light);

}

.bg-dark{

    background:var(--dark);

}

.radius{

    border-radius:var(--radius);

}

.shadow-custom{

    box-shadow:var(--shadow);

}

.section-title{
    margin-bottom:18px;
}

.section-subtitle{

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

.py-120{

    padding:120px 0;

}

.card-box{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border:1px solid var(--border);

}

.card-box:hover{

    transform:translateY(-8px);

}

input:focus,
textarea:focus,
button:focus{
    outline:none;
    box-shadow:none;
}

/*==================================
    BACKGROUND UTILITIES
====================================*/

.bg-primary{
    background: var(--primary);
}

.bg-secondary{
    background: var(--secondary);
}

.bg-dark{
    background: var(--dark);
}

.bg-light{
    background: var(--light);
}

.bg-white{
    background: var(--white);
}

/*==================================
    TEXT UTILITIES
====================================*/

.text-primary{
    color: var(--primary) !important;
}

.text-secondary{
    color: var(--secondary) !important;
}

.text-dark{
    color: var(--dark) !important;
}

.text-gray{
    color: var(--gray) !important;
}

.text-white{
    color: var(--white) !important;
}

/*==================================
    BORDER RADIUS
====================================*/

.radius-sm{
    border-radius: var(--radius-sm);
}

.radius{
    border-radius: var(--radius);
}

.radius-lg{
    border-radius: var(--radius-lg);
}

.radius-pill{
    border-radius: var(--radius-full);
}

/*==================================
    SHADOWS
====================================*/

.shadow-sm{
    box-shadow: var(--shadow-sm);
}

.shadow{
    box-shadow: var(--shadow);
}

.shadow-lg{
    box-shadow: var(--shadow-lg);
}

/*==================================
    TRANSITIONS
====================================*/

.transition{
    transition: var(--transition);
}

/*==================================
    SECTION TITLE
====================================*/

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-title{
    font-size:38px;
    margin-bottom:18px;
}

.section-description{

    max-width:700px;

    margin:auto;

    color:var(--gray);

}

/*==================================
    CARD
====================================*/

.card-box{

    background:#fff;

    border-radius:20px;

    padding:35px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card-box:hover{

    transform:translateY(-8px);

}

/*==================================
    BADGE
====================================*/

.custom-badge{

    display:inline-flex;

    align-items:center;

    padding:8px 18px;

    background:rgba(11,99,206,.1);

    color:var(--primary);

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

/*==================================
    IMAGE
====================================*/

.img-cover{

    width:100%;

    height:100%;

    object-fit:cover;

}

.img-contain{

    object-fit:contain;

}

/*==================================
    OVERFLOW
====================================*/

.overflow-hidden{
    overflow:hidden;
}

.position-relative{
    position:relative;
}

/*==================================
    FLEX
====================================*/

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.btn-group-custom{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}


/*==================================
        TOP BAR
===================================*/

.top-bar{

    background:var(--dark);

    color:#fff;

    padding:6px 0;

    font-size:14px;

}

.top-contact{

    display:flex;

    gap:30px;

}

.top-contact a{

    color:#fff;

}

.top-contact i{

    color:var(--secondary);

    margin-right:8px;

}

.top-social{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:15px;

}

.top-social span{

    color:#fff;

}

.top-social a{

    color:#fff;

}

.top-social a:hover{

    color:var(--secondary);

}

/*=========================================
            NAVBAR
==========================================*/

.main-navbar{
    position:absolute;
    top:0px;
    left:0;
    width:100%;
    z-index:999;
    padding:6px 0;
    transition:.4s ease;
    background: #ffffff;
}

.logo{
    height:62px;
    transition:.4s;
}

.navbar-nav{
    gap:10px;
}

.nav-link{
    color:#000000;
    font-size:16px;
    font-weight:500;
    padding:12px 18px !important;
    transition:.3s;
}


.nav-link:hover{
    color:var(--secondary);
}

.navbar-toggler{
    border:none;
    /*color:#fff;*/
}

.navbar-toggler:focus{
    box-shadow:none;
}

.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:15px;
    min-width:260px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.dropdown-item{
    border-radius:10px;
    padding:12px 18px;
    transition:.3s;
}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}

/*=========================================
        STICKY NAVBAR
==========================================*/

.main-navbar.sticky{

    position:fixed;

    top:0;

    left:0;

    background:#fff;

    padding:12px 0;

    box-shadow:0 10px 40px rgba(0,0,0,.08);

    animation:slideDown .4s ease;

}

.main-navbar.sticky .logo{

    height:52px;

}

.main-navbar.sticky .nav-link{

    color:var(--dark);

}

.main-navbar.sticky .navbar-toggler{

    color:var(--dark);

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}

.hero{

    min-height:100vh;

    background:linear-gradient(135deg,#0F172A,#0B63CE);

    display:flex;

    align-items:center;

}

.hero h1{

    color:#fff;

}

.hero p{

    color:#dbeafe;

    margin:25px 0 35px;

    max-width:600px;

}

/*==================================
        HERO SECTION
===================================*/

.hero{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#081420,#0B63CE);

    padding-top:180px;

    padding-bottom:120px;

}

.hero-title{

    font-size:62px;

    color:#fff;

    margin:25px 0;

    line-height:1.15;

}

.hero-title span{

    color:#4FD1FF;

}

.hero-text{

    color:#D6E8FF;

    font-size:18px;

    margin-bottom:35px;

    max-width:600px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    backdrop-filter:blur(15px);

}

.hero-badge i{

    color:#4FD1FF;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.hero-features div{

    color:#fff;

    font-weight:500;

}

.hero-features i{

    color:#4FD1FF;

    margin-right:10px;

}

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:550px;

    margin:auto;

}

.floating-card{

    position:absolute;

    background:#fff;

    padding:18px 22px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.floating-card i{

    color:var(--primary);

    font-size:24px;

    margin-right:10px;

}

.card-one{

    top:50px;

    left:-20px;

}

.card-two{

    right:-10px;

    top:170px;

}

.card-three{

    bottom:30px;

    left:50px;

    text-align:center;

}

.card-three h3{

    color:var(--primary);

    margin-bottom:5px;

}

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

}

.hero-shape-1{

    width:350px;

    height:350px;

    background:#00C2FF;

    top:-100px;

    left:-120px;

}

.hero-shape-2{

    width:420px;

    height:420px;

    background:#F44336;

    right:-180px;

    bottom:-150px;

}

/*==================================
    TRUSTED TECHNOLOGIES
===================================*/

.trusted-tech{
    background: linear-gradient(135deg, #071A3D, #0B63CE);
}

.techSlider, .techSliderTwo{

    padding:20px 0;

}

.techSlider .swiper-slide, .techSliderTwo .swiper-slide{

    height:120px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    transition:var(--transition);

}

.techSlider .swiper-slide:hover, .techSliderTwo .swiper-slide:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.techSlider img, .techSliderTwo img{

    max-width:70px;

    max-height:55px;

    /*filter:grayscale(100%);*/

    transition:.4s;

}

.techSlider .swiper-slide:hover img, .techSliderTwo .swiper-slide:hover img{

    filter:none;

}

/*==================================
        ABOUT SECTION
===================================*/

.about-section{

    background:var(--light);

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:24px;

}

.experience-card{

    position:absolute;

    bottom:30px;

    right:-20px;

    background:var(--primary);

    color:#fff;

    padding:25px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.experience-card h2{

    color:#fff;

    margin-bottom:5px;

}

.about-feature{

    margin-top:35px;

}

.feature-item{

    display:flex;

    gap:18px;

    margin-bottom:25px;

}

.feature-item i{

    width:55px;

    height:55px;

    background:rgba(11,99,206,.1);

    color:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.feature-item h5{

    margin-bottom:8px;

}

.counter-box{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:25px 15px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.counter-box:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}

.counter-box h3{

    color:var(--primary);

    margin-bottom:6px;

}

.counter-box span{

    color:var(--gray);

    font-size:15px;

}

/*==================================
        SERVICES SECTION
===================================*/

.services-section{

    background:#fff;

}

.service-card{

    position:relative;

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px 30px;

    transition:all .4s ease;

    overflow:hidden;

    height:100%;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:var(--primary);

    transition:.4s;

}

.service-card:hover::before{

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(11,99,206,.08);

    color:var(--primary);

    font-size:32px;

    margin-bottom:25px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-10deg);

}

.service-card h4{

    margin-bottom:15px;

}

.service-card p{

    margin-bottom:20px;

    min-height:80px;

}

.service-card a{

    color:var(--primary);

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:8px;

}

.service-card:hover a{

    gap:14px;

}

/*==================================
        WHY CHOOSE US
===================================*/

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    border-radius:25px;

}

.why-card{

    position:absolute;

    left:-25px;

    bottom:35px;

    background:#fff;

    padding:28px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.why-card h2{

    color:var(--primary);

    margin-bottom:5px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.why-item{

    display:flex;

    gap:18px;

}

.why-item i{

    width:65px;

    height:65px;

    flex-shrink:0;

    border-radius:18px;

    background:rgba(11,99,206,.08);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    transition:.35s;

}

.why-item:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(-10deg);

}

.why-item h5{

    margin-bottom:8px;

}

/*==================================
        PROCESS SECTION
===================================*/

.process-section{
    background: var(--light);
}


.process-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    position:relative;

}


.process-item{

    position:relative;

    padding:40px 30px;

    background:#fff;

    border-radius:25px;

    border:1px solid var(--border);

    text-align:center;

    transition:.4s;

}


.process-item:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}



.process-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:45px;

    font-weight:800;

    color:rgba(11,99,206,.08);

}



.process-icon{

    width:80px;

    height:80px;

    background:rgba(11,99,206,.1);

    color:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin:0 auto 25px;

    transition:.4s;

}


.process-item:hover .process-icon{

    background:var(--primary);

    color:#fff;

    transform:rotateY(180deg);

}


.process-item h4{

    margin-bottom:15px;

}


.process-item p{

    color:var(--gray);

}

/*==================================
        INDUSTRIES
===================================*/

.industries-section{

    background:#f8fbff;

}

.industry-card{

    position:relative;

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    overflow:hidden;

    transition:.4s;

    height:100%;

}

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,var(--primary),#4FD1FF);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.industry-card:hover::before{

    transform:scaleX(1);

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.industry-card i{

    width:85px;

    height:85px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-size:34px;

    color:var(--primary);

    background:rgba(11,99,206,.08);

    transition:.4s;

}

.industry-card:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(-10deg);

}

.industry-card h5{

    margin-bottom:15px;

}

.industry-card p{

    margin-bottom:0;

    color:var(--gray);

}

/*==============================
        HERO SLIDER
===============================*/

.hero-slider{
    position: relative;
    overflow: hidden;
    padding: 87px 0px 0px;
}

.heroSwiper{

    width:100%;

}

.heroSwiper .swiper-slide{

    overflow:hidden;

}

.heroSwiper .swiper-slide a{

    display:block;

}

.heroSwiper .swiper-slide img{

    width:100%;

    display:block;

    object-fit:cover;

    transition:.6s ease;

}

.heroSwiper .swiper-slide:hover img{

    transform:scale(1.03);

}

/* Navigation */

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    color:#fff;

    transition:.3s;

}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{

    background:var(--primary);

}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

/* Pagination */

.heroSwiper .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.5;

}

.heroSwiper .swiper-pagination-bullet-active{

    width:30px;

    border-radius:20px;

    opacity:1;

    background:var(--primary);

}

/*==================================
        PORTFOLIO
===================================*/

.portfolio-section{

    background:#fff;

}

.portfolio-card{

    border-radius:25px;

    overflow:hidden;

    background:#fff;

    box-shadow:var(--shadow);

    transition:.4s;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.portfolio-image{

    position:relative;

    overflow:hidden;

}

.portfolio-image img{

    width:100%;

    transition:.6s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.project-category{

    position:absolute;

    left:20px;

    top:20px;

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

}

.portfolio-content{

    padding:30px;

}

.tech-stack{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:20px 0;

}

.tech-stack span{

    padding:7px 15px;

    background:#eef5ff;

    border-radius:30px;

    color:var(--primary);

    font-size:13px;

}

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

}

.project-btn:hover{

    gap:15px;

}

/*==================================
        TESTIMONIALS
===================================*/

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    border: 1px solid #f2f2f2;
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#ffc107;
    margin-bottom:10px;
    font-size:18px;
}

.testimonial-card p{
    font-size: 15px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
    min-height: 216px;
}

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

}

.client-info img{

    width: 60px;

    height: 60px;

    border-radius:50%;

    object-fit:cover;

}

.client-info h5{

    margin-bottom:5px;

}

.client-info span{

    color:#777;

}

/*==================================
        FAQ
===================================*/

.faq-section{

    background: var(--light);

}

.custom-accordion .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:var(--shadow);

}

.custom-accordion .accordion-button{

    background:#fff;

    padding:22px 25px;

    font-weight:600;

    color:var(--dark);

    box-shadow:none;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.custom-accordion .accordion-body{

    padding:22px 25px;

    line-height:1.8;

    color:#666;

}

/*==================================
        BLOG SECTION
===================================*/
.blog-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.4s;

    box-shadow:var(--shadow);

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.blog-image{

    position:relative;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    transition:.6s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-category{

    position:absolute;

    left:20px;

    top:20px;

    background:var(--primary);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

}

.blog-content{

    padding:30px;

}

.blog-meta{

    display:flex;

    gap:20px;

    font-size:14px;

    color:#777;

    margin-bottom:15px;

}

.blog-content h4{
    margin-bottom:15px;
    line-height:1.4;
    font-size: 22px;
}

.blog-content p{

    color:#666;

    margin-bottom:20px;

}

.blog-content a{

    color:var(--primary);

    font-weight:600;

}

/*==================================
            CTA
===================================*/

.cta-section{

    padding:50px 0;

    background:#fff;

}

.cta-wrapper{

    background:linear-gradient(135deg,#0B63CE,#0A3E91);

    border-radius:35px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.cta-title{

    font-size:48px;

    color:#fff;

    margin:20px 0;

}

.cta-text{

    color:rgba(255,255,255,.85);

    line-height:1.8;

    max-width:650px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.btn-light-custom{

    background:#fff;

    color:var(--primary);

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-light-custom:hover{

    transform:translateY(-5px);

}

.btn-outline-light-custom{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    transition:.3s;

}

.btn-outline-light-custom:hover{

    background:#fff;

    color:var(--primary);

}

.contact-mini-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:25px;

    text-align:center;

    transition:.3s;

}

.contact-mini-card:hover{

    background:rgba(255,255,255,.2);

}

.contact-mini-card i{

    font-size:32px;

    margin-bottom:15px;

}

.contact-mini-card h6{

    color:#fff;

    margin-bottom:8px;

}

.contact-mini-card span{

    color:rgba(255,255,255,.85);

}

.cta-image{

    max-width:100%;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

/*==================================
            FOOTER
===================================*/

.footer{

    background:#07111f;

    color:#c9d4e5;

    padding:70px 0 30px;

}

.footer-logo{
    width: 120px;
    margin-bottom: 15px;
}

.footer-about{

    line-height:1.9;

    margin-bottom:30px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

    font-size:20px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer a{

    color:#c9d4e5;

    transition:.3s;

}

.footer a:hover{

    color:var(--primary);

    padding-left:5px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

}

.footer-social a:hover{

    background:var(--primary);

    color:#fff;

}

.footer-contact li{

    display:flex;

    gap:15px;

}

.newsletter{

    display:flex;

    margin-top:20px;

}

.newsletter input{

    flex:1;

    border:none;

    padding:15px;

    border-radius:50px 0 0 50px;

}

.newsletter button{

    border:none;

    background:var(--primary);

    color:#fff;

    padding:15px 25px;

    border-radius:0 50px 50px 0;

}

.footer hr{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom div{

    display:flex;

    gap:30px;

}

/*==================================
    FLOATING BUTTONS
===================================*/

.floating-whatsapp,
.scroll-top{

    position:fixed;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    cursor:pointer;

    z-index:999;

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

}

/* WhatsApp */

.floating-whatsapp{

    right:25px;

    bottom:25px;

    background:#25D366;

    color:#fff;

    animation:whatsappPulse 2s infinite;

}

.floating-whatsapp:hover{

    transform:translateY(-6px) scale(1.08);

    color:#fff;

}

/* Scroll Top */

.scroll-top{

    right:25px;

    bottom:95px;

    background:var(--primary);

    color:#fff;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

}

/* Show Button */

.scroll-top.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.scroll-top:hover{

    background:var(--secondary);

    transform:translateY(-6px);

}

/* Icons */

.floating-whatsapp i,
.scroll-top i{

    line-height:1;

}

/* Pulse Animation */

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

/*==================================
        PAGE BREADCRUMB
===================================*/

.page-breadcrumb{

    position:relative;

    overflow:hidden;

    padding:150px 0 110px;

    text-align:center;

    background:linear-gradient(135deg,#0B63CE,#1B84F4,#4AA8FF);

    color:#fff;

}

/* Background Pattern */

.page-breadcrumb::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(rgba(255,255,255,.12) 2px, transparent 2px);

    background-size:40px 40px;

    opacity:.5;

}

/* Content */

.breadcrumb-content{

    position:relative;

    z-index:2;

}

.page-breadcrumb h1{
    font-size:42px;
    font-weight:600;
    margin-bottom:18px;
    color:#fff;
}

.page-breadcrumb .breadcrumb{

    margin:0;

    background:none;

}

.page-breadcrumb .breadcrumb-item{

    font-size:17px;

}

.page-breadcrumb .breadcrumb-item a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.page-breadcrumb .breadcrumb-item a:hover{

    color:#FFD54A;

}

.page-breadcrumb .breadcrumb-item.active{

    color:#FFE082;

}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before{

    color:#fff;

}

/* Bottom Wave */

.breadcrumb-wave{

    position:absolute;

    left:0;

    bottom:-2px;

    width:100%;

    line-height:0;

}

.breadcrumb-wave svg{

    width:100%;

    height:80px;

    display:block;

}

/*==================================
        COMPANY STORY
===================================*/

.company-story{

    background:#fff;

}

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow-lg);

}

.experience-badge{

    position:absolute;

    bottom:30px;

    right:-20px;

    background:linear-gradient(135deg,#0B63CE,#0056b3);

    color:#fff;

    padding:25px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(11,99,206,.35);

}

.experience-badge h3{

    font-size:42px;

    margin:0;

    color:#fff;

}

.experience-badge span{

    display:block;

    margin-top:5px;

    font-size:15px;

}

.story-content p{

    margin-bottom:22px;

    color:#666;

    line-height:1.9;

}

.story-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-top:35px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.feature-item i{

    color:#0B63CE;

    font-size:20px;

}

/*==================================
        MISSION & VISION
===================================*/

.mission-vision{

    background:#f8fbff;

}

.purpose-card{

    background:#fff;

    border-radius:25px;

    padding:45px;

    height:100%;

    transition:.35s ease;

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

}

.purpose-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:var(--primary);

}

.purpose-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.purpose-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:linear-gradient(135deg,#0B63CE,#38B6FF);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.purpose-card h3{

    margin-bottom:20px;

}

.purpose-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.purpose-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.purpose-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

    font-weight:600;

}

.purpose-card ul li i{

    color:var(--primary);

}

.mission-card{

    border-top:5px solid #0B63CE;

}

.vision-card{

    border-top:5px solid #00B8D9;

}

/*==================================
        COMPANY STATS
===================================*/

.company-stats{

    background:linear-gradient(135deg,#071A3D,#0B63CE);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.company-stats::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.08),
    transparent 40%);

}

.stat-card{

    position:relative;

    z-index:2;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.14);

}

.stat-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.stat-card h2{

    font-size:52px;

    font-weight:800;

    color:#fff;

    margin-bottom:8px;

}

.stat-card h2::after{

    content:"+";

}

.stat-card span{

    color:rgba(255,255,255,.85);

    font-size:17px;

}

/*==================================
        LEADERSHIP
===================================*/

.leadership-section{

    background:#fff;

}

.team-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.4s;

    height:100%;

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.team-image{

    position:relative;

    overflow:hidden;

}

.team-image img{

    width:100%;

    transition:.5s;

}

.team-card:hover img{

    transform:scale(1.08);

}

.team-social{

    position:absolute;

    left:50%;

    bottom:-60px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    transition:.4s;

}

.team-card:hover .team-social{

    bottom:25px;

}

.team-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.team-social a:hover{

    background:var(--primary);

    color:#fff;

}

.team-content{

    padding:30px;

    text-align:center;

}

.team-content h4{

    margin-bottom:8px;

}

.team-content span{

    color:var(--primary);

    font-weight:600;

    display:block;

    margin-bottom:18px;

}

.team-content p{

    color:#666;

    line-height:1.8;

}

/*==================================
        NAVBAR DROPDOWN
===================================*/

.main-navbar .dropdown{

    position:relative;

}

.main-navbar .dropdown-menu{

    display:block;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    min-width:280px;

    border:none;

    border-radius:15px;

    padding:12px 0;

    margin-top:0;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    background:#fff;

}

/* Hover */

.main-navbar .dropdown:hover>.dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Items */

.main-navbar .dropdown-item{

    padding:12px 25px;

    font-size:15px;

    font-weight:500;

    color:#1f2937;

    transition:.3s;

}

.main-navbar .dropdown-item:hover{

    background:#f4f8ff;

    color:var(--primary);

    padding-left:32px;

}

/* Arrow Animation */

.main-navbar .dropdown-toggle::after{

    transition:.3s;

}

.main-navbar .dropdown:hover>.dropdown-toggle::after{

    transform:rotate(180deg);

}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--secondary);
}

@media screen and (max-width: 500px){
    .footer-bottom div{
        display:flex;
        gap:15px;
        flex-wrap: wrap;
    }
}