body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#ffffff;
    color:#212529;
}

/* ===================================
   Common Hero Section
=================================== */

/* HERO */

.hero{

    position:relative;
    
    min-height:100vh;
    
    display:flex;
    
    align-items:center;
    
    background-position:center;
    
    background-size:cover;
    
    overflow:hidden;
    
    }
    
    .hero-overlay{
    
    position:absolute;
    
    top:0;
    
    left:0;
    
    width:100%;
    
    height:100%;
    
    background:rgba(0,0,0,.60);
    
    }
    
    .hero .container{
    
    position:relative;
    
    z-index:2;
    
    }
    
    .hero-badge{
    
    display:inline-block;
    
    background:#16a34a;
    
    padding:10px 22px;
    
    border-radius:40px;
    
    font-weight:600;
    
    margin-bottom:25px;
    
    }
    
    .hero-title{
    
    font-size:58px;
    
    font-weight:700;
    
    line-height:1.2;
    
    }
    
    .hero-title span{
    
    color:#4ade80;
    
    }
    
    .hero-text{
    
    font-size:20px;
    
    line-height:1.8;
    
    margin-top:25px;
    
    margin-bottom:35px;
    
    max-width:650px;
    
    }
    
    .hero-buttons .btn{
    
    padding:14px 34px;
    
    border-radius:40px;
    
    }
    
    .hero-features{
    
    display:grid;
    
    grid-template-columns:repeat(2,1fr);
    
    gap:15px;
    
    font-size:18px;
    
    }
    
    .hero-features i{
    
    color:#4ade80;
    
    margin-right:10px;
    
    }
    
    .hero-card{
    
    background:rgba(255,255,255,.12);
    
    backdrop-filter:blur(12px);
    
    padding:35px;
    
    border-radius:20px;
    
    box-shadow:0 10px 35px rgba(0,0,0,.30);
    
    }
    
    .hero-card h4{
    
    margin-bottom:20px;
    
    font-weight:bold;
    
    }
    
    .hero-card ul{
    
    list-style:none;
    
    padding:0;
    
    }
    
    .hero-card li{
    
    padding:10px 0;
    
    border-bottom:1px solid rgba(255,255,255,.15);
    
    }


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

.about-section{

    background:#fff;
    
    padding:90px 0;
    
    }
    
    .section-subtitle{
    
    color:#16a34a;
    
    font-weight:700;
    
    letter-spacing:2px;
    
    font-size:14px;
    
    }
    
    .section-title{
    
    font-size:42px;
    
    font-weight:700;
    
    color:#1f2937;
    
    }
    
    .about-text{
    
    color:#6b7280;
    
    font-size:17px;
    
    line-height:1.8;
    
    margin-bottom:18px;
    
    }
    
    .about-image img{
    
    transition:.4s;
    
    }
    
    .about-image img:hover{
    
    transform:scale(1.03);
    
    }
    
    .about-feature{
    
    display:flex;
    
    align-items:center;
    
    gap:15px;
    
    padding:15px;
    
    border-radius:12px;
    
    background:#f8f9fa;
    
    transition:.3s;
    
    }
    
    .about-feature:hover{
    
    background:#16a34a;
    
    color:#fff;
    
    transform:translateY(-5px);
    
    }
    
    .about-feature i{
    
    font-size:28px;
    
    color:#16a34a;
    
    }
    
    .about-feature:hover i{
    
    color:#fff;
    
    }
    
    .about-feature h5{
    
    margin:0;
    
    font-size:18px;
    
    }
    
    .about-feature p{
    
    margin:0;
    
    font-size:14px;
    
    }

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

.services-section{

    background:#f8fafc;
    
    }
    
    .service-card{
    
    background:#fff;
    
    padding:35px;
    
    border-radius:18px;
    
    height:100%;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.35s;
    
    }
    
    .service-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    
    }
    
    .service-icon{
    
    width:70px;
    
    height:70px;
    
    background:#16a34a;
    
    border-radius:50%;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    margin-bottom:20px;
    
    }
    
    .service-icon i{
    
    font-size:28px;
    
    color:#fff;
    
    }
    
    .service-card h4{
    
    font-size:24px;
    
    margin-bottom:18px;
    
    color:#1f2937;
    
    }
    
    .service-card p{
    
    color:#6b7280;
    
    line-height:1.8;
    
    }
    
    .service-link{
    
    text-decoration:none;
    
    font-weight:600;
    
    color:#16a34a;
    
    }
    
    .service-link:hover{
    
    color:#15803d;
    
    }

    /*==========================
 INDUSTRIES
==========================*/

.industries-section{

    background:#ffffff;
    
    }
    
    .industry-card{
    
    background:#fff;
    
    padding:35px;
    
    border-radius:18px;
    
    height:100%;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.35s;
    
    text-align:center;
    
    }
    
    .industry-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    
    }
    
    .industry-icon{
    
    width:80px;
    
    height:80px;
    
    background:#0d6efd;
    
    border-radius:50%;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    margin:0 auto 25px;
    
    }
    
    .industry-icon i{
    
    font-size:34px;
    
    color:#fff;
    
    }
    
    .industry-card h4{
    
    margin-bottom:18px;
    
    font-size:24px;
    
    color:#1f2937;
    
    }
    
    .industry-card p{
    
    color:#6b7280;
    
    line-height:1.8;
    
    }
    
    .industry-link{
    
    text-decoration:none;
    
    font-weight:600;
    
    color:#0d6efd;
    
    }
    
    .industry-link:hover{
    
    color:#084298;
    
    }

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

.process-section{

    background:#f8fafc;
    
    }
    
    .process-card{
    
    background:#fff;
    
    padding:30px 20px;
    
    border-radius:18px;
    
    text-align:center;
    
    height:100%;
    
    position:relative;
    
    transition:.35s;
    
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    
    }
    
    .process-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    
    }
    
    .process-number{
    
    width:42px;
    
    height:42px;
    
    background:#16a34a;
    
    color:#fff;
    
    border-radius:50%;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    font-weight:bold;
    
    position:absolute;
    
    top:-20px;
    
    left:50%;
    
    transform:translateX(-50%);
    
    }
    
    .process-card i{
    
    font-size:42px;
    
    color:#16a34a;
    
    margin:30px 0 20px;
    
    }
    
    .process-card h5{
    
    font-weight:600;
    
    margin-bottom:15px;
    
    color:#1f2937;
    
    }
    
    .process-card p{
    
    font-size:14px;
    
    line-height:1.7;
    
    color:#6b7280;
    
    }

    /*==========================
 STANDARDS
==========================*/

.standards-section{

    background:#ffffff;
    
    }
    
    .standard-card{
    
    background:#fff;
    
    padding:35px;
    
    border-radius:18px;
    
    text-align:center;
    
    height:100%;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.35s;
    
    border-top:4px solid #16a34a;
    
    }
    
    .standard-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    
    }
    
    .standard-card i{
    
    font-size:45px;
    
    color:#16a34a;
    
    margin-bottom:20px;
    
    }
    
    .standard-card h4{
    
    margin-bottom:15px;
    
    color:#1f2937;
    
    }
    
    .standard-card p{
    
    color:#6b7280;
    
    line-height:1.8;
    
    }

    /* ==========================
   SERVICE PAGE
========================== */

.service-card{

    background:#fff;
    
    padding:35px;
    
    border-radius:18px;
    
    height:100%;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.35s;
    
    }
    
    .service-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    
    }
    
    .service-icon{
    
    width:70px;
    
    height:70px;
    
    background:#16a34a;
    
    border-radius:50%;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    margin-bottom:20px;
    
    }
    
    .service-icon i{
    
    font-size:30px;
    
    color:#fff;
    
    }
    
    .service-link{
    
    text-decoration:none;
    
    font-weight:600;
    
    color:#16a34a;
    
    }
    
    .service-link:hover{
    
    color:#15803d;
    
    }

    /* Service Details */

.card{

    border:none;
    
    border-radius:15px;
    
    }
    
    .card-body{
    
    padding:30px;
    
    }
    
    .service-link{
    
    font-weight:600;
    
    text-decoration:none;
    
    }
    
    .service-link:hover{
    
    text-decoration:underline;
    
    }
    
    ul li{
    
    margin-bottom:12px;
    
    }

    /* ==========================
   INDUSTRIES PAGE
========================== */

.industry-card{

    background:#fff;
    
    padding:35px;
    
    border-radius:18px;
    
    height:100%;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.35s;
    
    text-align:center;
    
    }
    
    .industry-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    
    }
    
    .industry-icon{
    
    width:80px;
    
    height:80px;
    
    background:#16a34a;
    
    border-radius:50%;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    margin:0 auto 20px;
    
    }
    
    .industry-icon i{
    
    font-size:34px;
    
    color:#fff;
    
    }
    
    .industry-link{
    
    text-decoration:none;
    
    font-weight:600;
    
    color:#16a34a;
    
    }
    
    .industry-link:hover{
    
    color:#15803d;
    
    }

    /* ==========================
   CAREERS PAGE
========================== */

.career-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.career-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.process-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.process-box h3{
    width:60px;
    height:60px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    line-height:60px;
    margin:0 auto 15px;
    font-weight:bold;
}

/* ==========================
   BLOG PAGE
========================== */

.blog-card{

    background:#fff;
    
    border-radius:18px;
    
    overflow:hidden;
    
    height:100%;
    
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    transition:.35s;
    
    }
    
    .blog-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 18px 40px rgba(0,0,0,.15);
    
    }
    
    .blog-card img{
    
    height:220px;
    
    object-fit:cover;
    
    }
    
    .blog-card .card-body{
    
    padding:25px;
    
    }

/* ===================================
   Page Background Images
=================================== */

.hero-home{
    background-image:url("../images/home-banner.jpeg");
}

.hero-about{
    background-image:url("../images/about-banner.jpeg");
}

.hero-services{
    background-image:url("../images/services-banner.jpeg");
}

.hero-industries{
    background-image:url("../images/industries-banner.jpeg");
}

.hero-careers{
    background-image:url("../images/careers-banner.jpeg");
}

.hero-blog{
    background-image:url("../images/blog-banner.jpeg");
}

.hero-contact{
    background-image:url("../images/contact-banner.jpeg");
}

/* ===================================
   Mobile Responsive
=================================== */

@media(max-width:768px){

.hero{
    min-height:420px;
}

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

.hero p{
    font-size:17px;
}

}
.header{
background:#1976d2;
padding:20px;
text-align:center;
color:white;
}

.menu{
background:#222;
padding:15px;
text-align:center;
}

.menu a{
color:white;
text-decoration:none;
margin:15px;
font-size:18px;
}

.menu a:hover{
color:yellow;
}

.content{
padding:40px;
text-align:center;
}

/* ==========================
   Professional Footer
========================== */

.footer{
    background:#0d1b2a;
    color:#ffffff;
    padding:60px 0 20px;
}

.footer h5{
    color:#ffffff;
    margin-bottom:20px;
    font-weight:600;
}

.footer p{
    color:#cfd8dc;
    line-height:1.8;
}

.footer ul{
    padding:0;
    margin:0;
}

.footer ul li{
    list-style:none;
    margin-bottom:10px;
}

.footer ul li a{
    color:#cfd8dc;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#0dcaf0;
    padding-left:5px;
}

.footer hr{
    border-color:rgba(255,255,255,.15);
    margin:30px 0;
}

.social-icons a{
    display:inline-block;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background:#1b263b;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
}

.social-icons a:hover{
    background:#0dcaf0;
    color:#000;
    transform:translateY(-4px);
}

/* =========================================================
   VALIQON NAVBAR
   Desktop + Mobile Services Mega Menu
   ========================================================= */

   .navbar {
    background: linear-gradient(90deg, #0d6efd, #0099ff);
    min-height: 70px;
    height: 70px;
    padding: 0 15px;
    z-index: 1050;
    overflow: visible !important;
}

.navbar .container {
    overflow: visible !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    width: auto;
    height: 58px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.nav-link {
    color: #fff !important;
    margin-left: 15px;
    font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
    color: #e8f4ff !important;
}


/* =========================================================
   DESKTOP SERVICES MEGA MENU
   ========================================================= */

@media (min-width: 992px) {

    .mega-dropdown {
        position: static;
    }

    .mega-dropdown > .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;

        width: 100%;
        min-width: 0;
        max-width: none;

        display: none !important;

        background: #fff;
        border: 0;
        border-radius: 0 0 14px 14px;

        padding: 25px 0;
        margin: 0;

        box-shadow: 0 10px 30px rgba(0,0,0,.15);
        z-index: 1040;
    }

    /* Open on mouse hover */
    .mega-dropdown:hover > .mega-menu,

    /* Also open when keyboard focused */
    .mega-dropdown:focus-within > .mega-menu,

    /* Bootstrap .show state */
    .mega-dropdown.show > .mega-menu {
        display: block !important;
    }

    .mega-dropdown > .mega-menu > .container {
        max-width: 1140px;
    }

    .mega-dropdown .mega-title {
        font-size: 18px;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #0d6efd;
    }

    .mega-dropdown .mega-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-dropdown .mega-menu li {
        margin-bottom: 10px;
    }

    .mega-dropdown .mega-menu li a {
        display: block;
        color: #123f93;
        text-decoration: none;
        transition: .2s ease;
    }

    .mega-dropdown .mega-menu li a:hover,
    .mega-dropdown .mega-menu li a:focus {
        color: #0d6efd;
        padding-left: 6px;
    }
}


/* =========================================================
   MOBILE / TABLET NAVBAR
   ========================================================= */

@media (max-width: 991.98px) {

    .navbar {
        min-height: 64px;
        height: 64px;
        padding: 0 12px;
    }

    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand {
        height: 64px;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        height: 130px;
        max-width: 320px;
    }

    .navbar-toggler {
        border: 1px solid rgba(255,255,255,.75);
        padding: .45rem .65rem;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 .2rem rgba(255,255,255,.20);
    }

    .navbar-collapse {
        margin-top: 0;
        background: #123f93;
        border-radius: 0 0 12px 12px;
        padding: 8px 12px 14px;
        box-shadow: 0 8px 20px rgba(0,0,0,.18);
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        margin-left: 0;

        padding: 11px 10px;
        border-radius: 7px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(255,255,255,.10);
    }


    /* =====================================================
       MOBILE SERVICES MEGA MENU
       ===================================================== */

    .mega-dropdown > .mega-menu {
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        transform: none !important;

        display: none !important;

        background: #fff;

        border: 0;
        border-radius: 8px;

        margin: 4px 0 8px;
        padding: 12px;

        box-shadow: none;

        z-index: auto;
    }

    /* THIS IS THE IMPORTANT FIX */
    .mega-dropdown.show > .mega-menu {
        display: block !important;
    }

    /* Bootstrap also adds .show to dropdown-menu */
    .mega-dropdown > .mega-menu.show {
        display: block !important;
    }

    .mega-dropdown .mega-menu > .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .mega-dropdown .mega-menu .row {
        display: block;
    }

    .mega-dropdown .mega-menu [class*="col-"] {
        width: 100%;
        margin-bottom: 12px !important;
    }

    .mega-dropdown .mega-title {
        font-size: 16px;
        font-weight: 700;
        color: #123f93;
        margin-bottom: 6px;
        padding-bottom: 6px;
    }

    .mega-dropdown .mega-menu ul {
        margin-bottom: 10px;
    }

    .mega-dropdown .mega-menu li {
        margin-bottom: 3px;
    }

    .mega-dropdown .mega-menu li a {
        display: block;
        padding: 6px 4px;

        color: #333;
        font-size: 14px;
        line-height: 1.4;

        text-decoration: none;
    }

    .mega-dropdown .mega-menu li a:hover,
    .mega-dropdown .mega-menu li a:focus {
        color: #0d6efd;
        background: #f2f7ff;
        border-radius: 5px;
    }

    .mega-dropdown .mega-menu hr {
        margin: 10px 0;
    }

    .mega-dropdown .mega-menu .text-end {
        text-align: left !important;
    }

    .mega-dropdown .mega-menu .btn {
        width: 100%;
    }
}

/* Keep the home hero bright and readable. */
.hero-home {
    background-color: #f7fbff;
}

.hero-home .hero-overlay {
    background: rgba(255,255,255,.78);
}

.hero-home .hero-title {
    color: #123f93;
}

.hero-home .hero-title span {
    color: #0d6efd;
}

.hero-home .hero-text {
    color: #334155;
}

@media (max-width: 767.98px) {
    .hero-home .hero-overlay {
        background: rgba(255,255,255,.86);
    }

    .hero-home .hero-title {
        color: #123f93;
        font-size: clamp(32px, 9vw, 44px);
        line-height: 1.12;
    }

    .hero-home .hero-text {
        color: #334155;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-home .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-home .hero-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .hero-home .hero-features {
        margin-top: 28px !important;
    }

    .hero-home .hero-card {
        margin-top: 28px;
    }
}

/* =========================================================
   MOBILE / TABLET - SERVICES MEGA MENU SCROLL
   ========================================================= */
   @media (max-width: 991.98px) {

    .mega-dropdown > .mega-menu {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .mega-dropdown .mega-menu > .container {
        width: 100%;
        max-width: none;
        padding-bottom: 20px;
    }

    .mega-dropdown .mega-menu a,
    .mega-dropdown .mega-menu .mega-title {
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Keep the View All Services button reachable */
    .mega-dropdown .mega-menu .text-end {
        padding-bottom: 15px;
    }
}