/* =========================================
   PREMIUM SERVICES MENU (Compact Height & Fixed)
   ========================================= */

/* 1. The Invisible Dropdown Container */
/* .umm-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    
    width: 1200px; 
    max-width: 95vw;
    
    padding-top: 5px; 
    margin-top: 0;
    
    background: transparent;
    border: none;
    box-shadow: none;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1101;
    transform: translateX(-50%) translateY(10px); 
    
   
} */
/* =========================================
   FIXED SERVICES MENU (Functional Hover)
   ========================================= */

/* 1. The Container */
.umm-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    

    width: 1600px;
    max-width: 100vw;
    

    display: block; 
    
    margin-top: 15px; 
    padding-top: 15px;
    
    /* Hide initially */
    opacity: 0;
    visibility: hidden;
    
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 1101;
    transition: all 0.3s ease;
}


.umm-dropdown::before {
    content: "";
    position: absolute;
    
    top: -30px; 
    left: 0;
    width: 100%;
   
    height: 50px; 
    background: transparent; 
    z-index: -1;
}


.nav-item:hover .umm-dropdown {
    opacity: 1;
    visibility: visible;
}


.umm-wrapper {
    display: flex;
    background: #fff;
    
    
    min-height: 350px; 
    height: auto; 
    
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden; 
    border: 1px solid #f1f5f9;
}


/* --- LEFT SIDEBAR --- */
.umm-sidebar {
    width: 30%; 
    background: linear-gradient(135deg, #005894 0%, #003356 100%);
    
   
    padding: 30px; 
    
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-new {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 25px;
}

.umm-sidebar h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 15px;
}

.umm-sidebar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* .btn-sidebar {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-sidebar:hover {
    color: #a5d8ff;
    gap: 12px;
} */

/* ---  BUTTON STYLE --- */
.btn-sidebar {
    background: #fff;           
    color: #005894;             
    padding: 14px 28px;         
    border-radius: 50px;       
    
    text-decoration: none;
    font-weight: 800;           
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    display: inline-flex;       
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    margin-top: 20px;          
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

/* Hover Effect */
.btn-sidebar:hover {
    background: #f0f9ff;        
    color: #003356;            
    gap: 15px;                 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Background Icon */
.bg-decor-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px; /* Smaller icon */
    color: rgba(255,255,255,0.05);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* --- RIGHT GRID (Compact) --- */
.umm-grid-container {
    width: 70%;
    
  
    padding: 25px; 
    background: #fff;
    
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.umm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
}

/* Compact Card Styles */
/* .umm-card {
    display: flex;
    align-items: center;
    
    padding: 13px 15px; 
    
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
} */

.umm-card:hover {
    background: #f8fbff;
    border-color: #e0f2fe;
    transform: translateX(5px);
}

/* Smaller Icons */
.umm-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.umm-icon-box img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Icon Colors */
.bg-blue-light   { background: #e0f2fe; }
.bg-green-light  { background: #dcfce7; }
.bg-purple-light { background: #f3e8ff; }
.bg-orange-light { background: #ffedd5; }
.bg-pink-light   { background: #fce7f3; }
.bg-teal-light   { background: #ccfbf1; }
.bg-indigo-light { background: #e0e7ff; }
.bg-red-light    { background: #fee2e2; }

/* Text Styling */
/* .umm-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}
.umm-desc {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
} */


.umm-desc {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    
    white-space: normal;    
    overflow: visible;        
    text-overflow: unset;    
    max-width: 100%;          
    line-height: 1.4;         
}

.umm-card {
    display: flex;
    align-items: flex-start; 
    
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}


.umm-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.umm-card:hover .umm-title {
    color: #005894;
}

/* --- RESPONSIVE (Mobile) --- */
@media (max-width: 991px) {
    .umm-dropdown { 
        position: static; 
        width: 100%; 
        max-width: 100%;
        box-shadow: none;
        padding-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
     /* Center Services / Hire Us text */
  .nav-item > .nav-link.has-mega {
    display: flex;
    align-items: center;
    justify-content: center;   /* CENTER TEXT */
    text-align: center;
    width: 100%;
  }

  /* Arrow spacing stays clean */
  .nav-link.has-mega .mega-arrow {
    margin-left: 6px;
  }

  /* When mega menu is open, keep heading centered */
  .nav-item .umm-dropdown.show {
    text-align: center;
  }
    .umm-dropdown.show { display: block; }

    .umm-wrapper { 
        flex-direction: column; 
        border-radius: 0;
        box-shadow: none;
        border: none;
        min-height: auto;
    }

    .umm-sidebar { 
        width: 100%; 
        padding: 20px; 
        text-align: left;
    }
    
    .btn-sidebar { justify-content: flex-start; }
    .bg-decor-icon { display: none; }
    
    .umm-grid-container { 
        width: 100%; 
        padding: 15px; 
    }
    
    .umm-grid { 
        grid-template-columns: 1fr; 
        gap: 10px;
    }
    
    .umm-card {
        border: 1px solid #f1f5f9;
        padding: 12px;
    }
    
    .umm-desc { 
        white-space: normal;
        max-width: none;
    }
    
    
}


body
{
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
}
/* @media (min-width: 1200px) {
    .container {
        max-width: 1324px !important;
    }
} */


.position-relative
{
    position: relative;
}
html {
  scroll-behavior: smooth;
}
:root
{
    scroll-behavior: smooth;
    font-family: "Nunito", sans-serif;
    --primary-color: rgb(0 88 148);
    --font-color-style1: #334155;
    --font-color-style2: #1C252E;
    --dark-color:#000;
    --white-color:#fff;
    --white-bg:#fff;
    --secondory-bg:#f3f3f3;
    --light-color-label: #999;
    --theme-light-yellow-bg: #fff9e7;
    --palette-background-defaultChannel: 255 255 255;
    --layout-header-zIndex: 1101;
    --inner-header-zIndex:2;
    --comman-radius-box:10px;
    --light-brd-clr: #e5e5e5;
    --page-bg: #fafafa;
}
.z-index-1
{
    z-index: 1;
}
.text-left
{
    text-align: left;
}
.text-center
{
    text-align: center;
}
.common-big-pd 
{
    padding: 50px 0;
}
.border-radius-20 {
    border-radius: 20px;
}
.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.common-text {
    color: #6C6C6C;
    font-size: 16px;
    font-weight: 400;
}
.section-heading h2
{
    font-size: 40px;
    font-weight: 700;
}
.section-heading p
{
    font-size: 18px;
    margin-top: 20px;
}
.section-heading span
{
    position: relative;
}
.section-heading span::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/headBgShap.png);
    background-size: 98%;
    display: inline-block;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: center;
    top: -1px;
    height: 64px;
}
.hvr-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
    -webkit-animation-name: hvr-buzz-out;
    animation-name: hvr-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@keyframes hvr-buzz-out
{
    10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
.page-head-sec
{
    position: relative;
}
.page-head-sec h2
{
    font-weight: 900;
    font-size: 46px;
}
.page-head-sec p
{
    font-size: 20px;
    margin-top: 14px;
}
.page-head-sec span {
    color: var(--primary-color);
}
.head-tag
{
    background: rgb(0 88 148 / 80%);
    backdrop-filter: blur(24px);
    font-size: 12px;
    margin: 0 6px;
    padding: 3px 10px;
    border-radius: 6px;
    color: #fff;
}
.head-tag .icon
{
    margin-right: 10px;
}
.head-tag .text
{
    font-size: 12;
}
/**************************NavBar Css************************/
header
{
    position: relative;
    z-index: 1001;
}
.btn {
    padding: 10px 24px;
    border-radius: 100rem;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease-in-out;
    /* font-family: var(--font-neue); */
    border: 0;
}
.btn.btn-primary, .btn.btn-primary:active {
    background: linear-gradient(-14deg, rgb(0 88 148) 0%, rgb(0 135 194) 68%, rgb(14 182 236) 100%);
    color: var(--white-color) !important;
}
/* .navbar-custom
{
    border-radius: 10px;
    position: sticky;
    top: 24px;
    background: #fff !important;
    box-shadow: 1px 1px 6px -3px #b3d3e4;
} */
/* .navbar-custom
{
    border-radius: 10px;
    /* position: sticky; 
    top: 0px;
    padding: 0px !important;
    background: #ffffff00 !important;
    box-shadow: 1px 1px 6px -3px #b3d3e400;
} */
.hero_section {
    background: url(../images/bgtop2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding: 24px 0;
    width: 100%;
    position: relative;
}
.logo img
{
    width: 200px;
}
.navbar-custom .nav-item
{
    margin: 0px 5px 0px 5px;
}
.nav-link.active
{
    font-weight: 900;
    color: var(--primary-color);
}
/* Default state – NOT fixed */
.site-header {
    position: sticky;
    width: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 1001;
}

/* Scroll pachi sticky state */
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffffa1 !important;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    padding: 14px 0 !important;
    border-radius: 0px;
}
.main-navbar {
    padding: 12px 0;
}
/* Sticky thai tyare content jump na thay */
body.header-sticky {
    padding-top: 78px; /* navbar height */
}

/* =========================================
   1. MEGA MENU LAYOUT (FIXED)
   ========================================= */

/* Base Mega Menu Style (Desktop default) */
/* .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%; 
    background: #ffffffed !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden; 
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
} */

/* State when menu is open (Desktop) */
.has-mega:hover .mega-menu, 
.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px);
}

/* =========================================
   2. MOBILE RESPONSIVENESS (THE CRITICAL FIX)
   ========================================= */
@media (max-width: 991px) {
    
    /* 1. Navbar Scroll Fix */
    .navbar-collapse {
        max-height: 85vh;
        overflow-y: auto; /* Allows scrolling if menu is tall */
        background: #fff;
        padding-bottom: 20px;
    }

    /* 2. Mega Menu Accordion Effect */
    /* .mega-menu {
        position: static; 
        width: 100%;
        box-shadow: none;
        background: #f4f7ff !important; 
        border: none;
        
       
        display: none; 
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    } */

    
    /* .mega-menu.show {
        display: block; 
        padding: 20px 0;
    } */

    
    .navbar-collapse .btn-primary { 
        margin: 20px auto 10px auto;
        display: flex;
        width: 90%; /* Big clickable button on mobile */
        justify-content: center;
    }
}
/* =========================================
   FINAL LAYOUT: 2 ROWS & SMALLER IMAGE
   ========================================= */
@media (min-width: 992px) {
    
    /* 1. WRAPPER: Added Top Padding */
    .mega-flex-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 20px; /* Reduced gap slightly to fit 4 columns */
        
        /* FIX: Adds space at the top so items don't touch the border */
        padding-top: 40px; 
        padding-bottom: 20px;
    }

    /* 2. SERVICES LEFT: Allow it to take more width */
    /* .mega-services-left {
        width: 75%; 
    }

    
    .mega-image-right {
       
        width: 390px; 
        
       
        height: 270px; 
        
       
        align-self: center; 

        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 12px;
        background: #f0f0f0; 
    }

   
    .mega-image-right img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
    } */
}

/* Desktop hover only */
@media (min-width: 992px) {
    #services {
        cursor: pointer;
    }
}

/* Arrow */
/* .mega-arrow {
    font-size: 14px;
    transition: transform 0.35s ease;
}

/* Arrow down when active 
.has-mega.active .mega-arrow {
    transform: rotate(180deg);
}

.mega-menu-item
{
    margin: 5px 0;
}
.megaMenuItemInner
{
    width: 100%;
    padding: 10px;
    background: #e4f0ff;
    border-radius: 6px;
    cursor: pointer;
}
.megaMenuItemInner:hover
{
    background: #dae8f9;
} */
.menu-icon
{
    position: relative;
}
.menu-icon img
{
    width: 25px;
}
.menu-name 
{
    margin-left: 15px;
    font-weight: bold;
    font-size: 14px;
}
.menu-name a
{
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}
.mega-menu-item ul 
{
    padding: 10px 0;
    margin: 0;
}
/* .mega-menu-item ul li
{
    list-style: none;
    font-size: 12px;
    padding: 3px 12px;
}
.mega-menu-item ul li a
{
    cursor: pointer;
    color: var(--font-color-style2) !important;
    font-size: 12px;
} */
/* .mega-menu-item ul li a:hover
{
    cursor: pointer;
    color: var(--primary-color) !important;
} */



/************************************baner*****************************/
.banner
{
    position: relative;
    overflow: hidden;
    padding: 24px 0 24px 0;
}
.banner::before
{
    content: "";
    position: absolute;
    width: 112px;
    height: 112px;
    right: 0px;
    top: 192px;
    z-index: 2;
    outline: rgba(44, 123, 229, 0.1) solid 44px;
    border-radius: 50%;
    animation: 15s ease-in-out 0s infinite normal none running zoomInOut;
    /* animation: zoomInOut 15s infinite ease-in-out; */
}
.banner-inner
{
    padding: 60px 0;
}
.banner-right
{
    position: relative;
    padding: 0 50px;
}
.banner-right::after
{
    content: "";
    position: absolute;
    right: -54px;
    top: 125px;
    width: 152px;
    height: 152px;
    /* background-color: #5b8ff3; */
    background-color: #8eb5ff;
    filter: blur(44.9000015259px);
    border-radius: 50%;
    -webkit-animation: zoomInOut 10s infinite ease-in-out;
    animation: zoomInOut 10s infinite ease-in-out;
    z-index: -1;
}
@keyframes zoomInOut
{   
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
.banner-left h2
{
    font-weight: 900;
    font-size: 46px;
}
.banner-left p
{
    font-size: 18px;
    margin: 32px 0;
    text-align: justify;
}
.banner-left span
{
    color:var(--primary-color);
}
.roundanimation
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    width: 23rem;
    height: 23rem;
    border-radius: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .3)), color-stop(65%, rgba(255, 255, 255, .3)), to(rgba(255, 255, 255, .3)));
    z-index: -1;
    animation: pulsate 1.5s infinite;
}
@keyframes pulsate
{
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.9);
    }
}
.animate-border {
    --border-angle: 0deg;
    animation: 4s linear 0s infinite normal none running rotate-border;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    background: linear-gradient(#0f172a, #0f172a) padding-box, conic-gradient(from var(--border-angle), #3341557a 80%, #10b981 86%, #6ee7b7 90%, #10b981 94%, #3341557a) border-box;
}
@keyframes  rotate-border
{
    100% {
        --border-angle: 360deg;
    }
}
.banner-right img
{
    width: 100%;
    /* animation: floatUpDown 10s ease-in-out infinite; */
}
@keyframes floatUpDown
{
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.banner_r_box
{
    backdrop-filter: blur(6px);
    padding: 1.2rem;
    background: linear-gradient(-14deg, rgb(97 159 200 / 40%) 0%, rgb(23 121 163 / 25%) 68%, rgb(103 202 236 / 17%) 100%);
    border: 1px solid #45b7e266;
    border-radius: 1rem;
}
.banner_r_box:hover
{
     --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: scale(1.05);
}
.banner_r_box img
{
    border-radius: 0.75rem;
    width: 100%;
    max-height: 350px;
    height: 100%;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.banner-float-1
{
    animation: float1 6s ease-in-out infinite;
    padding: 0 10px 0 10px;
}
@keyframes float1
{
    0%, 100% {
    transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.banner_r_smallbox
{
    background: linear-gradient(-14deg, rgba(0, 89, 148, 0.399) 0%, rgba(0, 136, 194, 0.251) 68%, rgba(14, 180, 236, 0.174) 100%);
    border: 1px solid #45b7e266;
    border-radius: 1rem;
    padding: 14px 20px;
    backdrop-filter: blur(6px);
}
.banner-float-2 {
    animation: float2 8s ease-in-out infinite;
    padding: 0 10px 0 10px;
}
@keyframes float2
{
    0%, 100% {
    transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
.banner_r_text
{
    margin-left: 14px;
    margin-top: -5px;
}
.banner_r_text label
{
    font-size: 12px;
    font-weight: 800;
    margin: 0;
    color: #343434;
    font-family: "Nunito", sans-serif;
}
.banner_r_text p
{
    font-size: 10px;
    color: #343434;
    margin: 0;
    font-family: "Nunito", sans-serif;
}
.banner_client
{
    backdrop-filter: blur(6px);
    padding: 0.7rem 1.2rem;
    background: linear-gradient(-14deg, rgb(97 159 200 / 40%) 0%, rgb(23 121 163 / 25%) 68%, rgb(103 202 236 / 17%) 100%);
    border: 1px solid #45b7e266;
    border-radius: 1rem;
    width: 320px;
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: "Nunito", sans-serif;
    z-index: 1;
}
.bdr-left-7999ff
{
    border-left: 1px solid #7999ff;
}
.banner-trusted-client .stars
{
    color: #00629e;
    font-size: 22px;
}
.banner-trusted-client p
{
    font-size: 10px;
    color: #343434;
    margin: 0;
    font-family: "Nunito", sans-serif;
}
.banner-trusted-img
{
    margin-left: 12px;
}
.banner-trusted-img img
{
    width: 35px;
    margin-left: -14px;
    border: 1px solid #7999ff;
    border-radius: 100px;
}
.symbols-pulse {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
}
.symbols-pulse .pulse-x {
    animation: pulsate 1.5s infinite;
}
.symbols-pulse>div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    width: 23rem;
    height: 23rem;
    border-radius: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(204 204 204 / 30%)), color-stop(65%, rgba(255, 255, 255, .3)), to(rgba(255, 255, 255, .3)));
    z-index: 0;
}
@keyframes pulsate
{
    0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.9);
    }
}

/******************************Num Sec******************************/
.num-sec .column {
    padding: 0 6px;
}
.num-sec
{
    padding: 24px 0px 50px 0;
}
/* .numcard
{ 
     padding: 30px 30px;
    background: #ededed;
    min-height: 288px;
    transition: transform 1s; /* Animation 
} */
.numcard{
padding: 30px 30px;
    background: #ededed;
    min-height: 288px;
    transition: transform 1s;
    /* --- NEW ADDITION FOR GAP --- */
    margin-bottom: 24px; 
    height: calc(100% - 24px); /* Ensures equal height alignment */
}

/* Optional: Remove margin from the last item on mobile if you want flush bottom */
@media (max-width: 767px) {
    .num-sec .column:last-child .numcard {
        margin-bottom: 0;
    }
}
.numcard:hover .num-card-text-btm h2
{
    transform: scale(1.05);
}
.numcard:hover .num-card-text-btm h3
{
    transform: scale(1.2);
}
.num-card-text
{
    color: #000;
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 50px;
}
.num-card-text-btm h2
{
    font-size: 74px;
    font-weight: 400;
    color: #000;
    letter-spacing: 2px;
    text-transform: capitalize;
    transition: transform 1s;
}
.num-card-text-btm p
{
    color: #000;
    font-size: 16px;
    margin: 0;
}
.bgcolor-d8e3ea
{
    background: #d8e3ea !important;
}
.bgcolor-f5f0be
{
    background: #f5f0be !important;  
}
.bgcolor-d0e8c8
{
    background: #d0e8c8 !important;
}
.color-719ab4
{
    color: #719ab4 !important;
}
.color-b9b483
{
    color:#b9b483 !important;  
}
.color-97b78d
{
    color: #97b78d  !important;
}
.num-card-text-icon
{
    font-size: 28px;
    width: 60px;
    height: 60px;
    background: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.num-card-text-btm h3
{
    font-size: 36px;
    transition: transform .5s;
}

/**************************Who we are? Css************************/

.home-about-sec
{

}
.about-home-img
{
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
}
.about-home-img::after
{
    content: "";
    position: absolute;
    outline: 44px solid rgb(74 146 243 / 32%);
    width: 112px;
    height: 112px;
    border-radius: 50%;
    right: 68px;
    bottom: 1px;
    -webkit-animation: zoomInOut 10s infinite ease-in-out;
    animation: zoomInOut 10s infinite ease-in-out;
    z-index: -1;
}
.about-home-img::before
{
    content: "";
    position: absolute;
    left: 26px;
    width: 100px;
    height: 100px;
    top: -6px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/dots.png);
}
.about-home-img img 
{
    width: 80%;
    border-radius: 20px;
}
.about-home-text
{
    width: 100%;
    position: relative;
    margin-top: 20px;
    padding: 30px 0;
}
.about-home-text h3
{
    position: relative;
    color: var(--font-color-style1);
}
.about-home-text h3::after
{
    content: "";
    position: absolute;
}
.about-home-text p
{
    margin: 24px 0 0 0;
    color: var(--light-color-label);
}
.about-home-dtl
{
    position: relative;
}   
.about-home-dtl-card
{
    background: linear-gradient(-14deg, rgb(97 159 200 / 40%) 0%, rgb(23 121 163 / 25%) 68%, rgb(103 202 236 / 17%) 100%);
    padding: 15px 20px;
    margin: 10px 0;
    border: 1px solid #45b7e266;
    border-radius: 10px;
}
.about-home-dtl-card .icon
{
    width: 40px;
    height: 40px;
    background: #ffffffb0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--primary-color);
}
.about-home-dtl-card .text
{
    margin-left: 15px;
}
.about-home-dtl-card .text label
{
    font-size: 14px;
    font-weight: bold;
    margin-bottom:  0px;
}
.about-home-dtl-card .text p
{
    font-size: 12px;
    margin: 0px;
    font-weight: 500;
}
/**************************Services Home Secction Css************************/
.home-services-sec
{
    background: url(../images/bg2.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}
.h-services-card
{
    position: relative;
    padding: 40px;
    text-align: center;
    background: #eaeeff;
    border-radius: 40px;
    margin: 30px 0 0 0;
    border: 1px solid #d4dcff;
    overflow: hidden;
    z-index: 1;
    transition: all 300ms ease-in-out;
}
.h-services-card::after
{
    content: "";
    position: absolute;
    right: -36px;
    bottom: -36px;
    width: 95px;
    height: 95px;
    border-radius: 40px;
    background-color: #abcbde;
    transition: all 0.3s;
    z-index: -1;
}
.h-services-card:hover:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: #abcbde;
}
.h-services-card img
{
    width: 76px;
    margin-bottom: 27px;
    position: relative;
}
.h-services-card h4
{
    color: var(--font-color-style2);
}
.h-services-card p
{
    color: var(--font-color-style1);
    font-size: 14px;
    font-weight: 600;
}
.h-services-card img:nth-child(odd)
{
    animation: float1 10s ease-in-out infinite;
}
.h-services-card img:nth-child(even)
{
    animation: float2 8s ease-in-out infinite;
}
/**************************Process Home Secction Css************************/
.home-devlopment-process
{
    background: url(../images/png.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.h-process-img img
{
    width: 100%;
}
.h-process-img
{
    position: relative;
    animation: float2 8s ease-in-out infinite;
    margin-top: 30px;
}
.h-process-data
{
     margin-top: 30px;
}
.h-process-data .accordion-item
{
    margin: 10px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #45b7e266;
}
.h-process-data .accordion-button
{
    padding: 10px 15px  !important;
}
.h-process-data .accordion-button:focus
{
    outline: none !important;
}
.h-process-data .accordion-item .accordion-header .accordion-button 
{
    border-radius: 12px 12px 0 0;
    border: none;
    background: linear-gradient(-14deg, rgb(97 159 200 / 13%) 0%, rgb(23 121 163 / 8%) 68%, rgb(142 226 255 / 23%) 100%);
    border: 1px solid #45b7e200;
}
.h-process-icon
{
    width: 38px;
    height: 38px;
    text-align: center;
    background: #fff;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.h-process-text
{

}
.h-process-text h4
{
    font-size: 16px;
    margin: 0px;
    font-weight: 800;
    color: var(--font-color-style2);
}
.h-process-text label
{
    font-size: 12px;
    margin: 0px;
    font-weight: 600;
    color: var(--font-color-style1);
}
.c-74aed6
{
    background: #74aed6;
    color: #174969;
}
.c-6bcfad
{
    background: #6bcfad;
    color: #10684b;
}
.c-e8dc7f
{
    background: #e8dc7f;
    color: #808228;
}
.c-eaab98
{
    background: #eaab98;
    color: #832a2a;
}
.c-e58eec
{
    background: #e58eec;
    color: #661b5a;
}
.c-ffce6e
{
    background: #ffce6e;
    color: #92590f;    
}
.c-fb5f62
{
    background: #fb5f62;
    color: #720101;
}
.c-80d56b
{
    background: #80d56b;
    color: #217201;
}
button:focus
{
    outline: none !important;
}
.accordion-body p
{
    font-size: 14px;
}
.accordion-body ul
{
    margin: 0;
}
.accordion-body ul li
{
    font-size: 14px;
}
/*******************************Portfolio*********************************/
.h-portfolio
{
    position: relative;
}
.portfolio-card
{
    border-radius: 15px;
    background: linear-gradient(-14deg, rgb(97 159 200 / 13%) 0%, rgb(23 121 163 / 8%) 68%, rgb(142 226 255 / 23%) 100%);
    border: 5px solid #45b7e200;
    overflow: hidden;
    transition: transform 1s; /* Animation */
    margin: 10px 0px 0 0;
}
.portfolio-card:hover .portfolio-card-head img
{
    transform: scale(1.3)
}
.portfolio-card-head
{
    height: 200px;
    overflow: hidden;
}
.portfolio-card-head img
{
    height: 200px;
    object-fit: cover;
    object-position: top center;
    position: relative;
    transform-origin: center center;
    transition: .5s;
    width: 100%;
}
.portfolio-card-body
{
    padding: 18px 13px 12px 13px;
}
.portfolio-card-body h4
{
    font-size: 18px;
    color: #2a2e30;
    font-weight: 700;
}
.portfolio-card-body .icon
{
    color: #035a95;
    font-size: 14px;
    width: 40px;
    height: 40px;
    background: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 100px;
}
.portfolio-project-content
{
    font-size: 12px;
    margin-top: 15px;
}
/*******************************technologies*********************************/
.h-technologies
{
    background: url(../images/png2.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat; 
}
.h-technologies-card
{
    margin: 15px 15px;
    height: 135px;
    width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(-25deg, rgba(97, 183, 200, 0.295) 0%, rgba(55, 152, 194, 0.08) 68%, rgb(142 226 255 / 23%) 100%);
    border: 1px solid #45b7e200;
    padding: 10px;
}
.h-technologies-card img
{
    width: 100%;
}
/* --- Card Styling --- */
.sec-card {
    border-radius: 20px;
    border: 1px solid #45b7e200;
    width: 95%; /* Default width */
    height: 250px;
    margin: 0 auto;
    background-color: #fffaf5; /* Added background color based on image */
}

.sector-slider {
    width: 90%;
    margin: 0 auto;
    position: relative; /* Essential for positioning arrows relative to this */
}

.sec-card-head {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    font-weight: 400;
    height: 45px;
}

.sec-card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 45px);
}

.sec-card-body-img img {
    width: 160px !important;
    height: 160px;
    border-radius: 100px;
    border: 8px solid #fff;
    object-fit: cover; 
}

/* --- Desktop Navigation (Default) --- */
.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0px !important;
    pointer-events: none; 
    z-index: 10;
}

.owl-prev, .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px !important;
    background: #d4dcff !important;
    font-size: 30px !important;
    border: 1px solid #eee;
    pointer-events: auto; 
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Position arrows outside the card on Desktop */
.owl-prev {
    margin-left: -58px !important;
}
.owl-next {
    margin-right: -58px !important;
}


@media (max-width: 768px) {
    
   
    .owl-nav {
        position: static !important; 
        transform: none !important; 
        width: 100%;
        margin-top: 20px !important; 
        justify-content: center !important; 
        gap: 20px; 
        pointer-events: auto;
    }

    .owl-prev, .owl-next {
        margin: 0 !important; 
        width: 45px;
        height: 45px;
        font-size: 24px !important;
    }

   
    .sector-slider {
        width: 100%;
        padding-bottom: 20px; 
    }
}
.bg-1
{
    background: linear-gradient(154deg, rgb(241 251 255) 0%, rgb(226 240 255) 50%, rgb(190 228 244) 100%);
    border: 1px solid #79cef9;
}
.bg-2 
{
    background: linear-gradient(154deg, rgb(229 229 229) 0%, rgb(229 229 229) 50%, rgb(199 199 199) 100%);
    border: 1px solid #a3a3a3;
}
.bg-3
{
    background: linear-gradient(154deg, rgb(255 243 239) 0%, rgb(255 239 231) 50%, rgb(255 232 214) 100%);
    border: 1px solid #e0c9b7;
}
.bg-4
{
    background: linear-gradient(154deg, rgb(255 238 251) 0%, rgb(255 225 254) 50%, rgb(255 211 238) 100%);
    border: 1px solid #e0b3d0;
}
.bg-5
{
    background: linear-gradient(154deg, rgb(255 252 229) 0%, rgb(253 251 197) 50%, rgb(247 229 161) 100%);
    border: 1px solid #e0dbb3;
}
.bg-6
{
    background: linear-gradient(154deg, rgb(241 255 241) 0%, rgb(221 249 217) 50%, rgb(210 255 195) 100%);
    border: 1px solid #bbdfb0;
}
/*****************************Footer******************************/

footer
{
    background: #eaeeff;
}
.footer_company_info img
{
    width: 250px;
}
.footer_company_info p
{
    font-size: 16px;
    margin-top: 30px;
    padding-right: 40px;
}
.QuickLinks
{
    margin-top: 10px;
}

.QuickLinks .f-icon {
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50% !important; /* Forces a circle */
    margin-right: 14px;
    color: #005894;
    box-shadow: none; /* Removes any unwanted shadows from other sections */
}
.QuickLinks h4
{
    font-size: 20px;
}
.QuickLinks ul
{
    padding: 0;
    margin: 50px 0 0 0;
}

.QuickLinks ul li
{
    list-style-type: none;
    margin: 12px 0;
}
.QuickLinks ul li a
{
    cursor: pointer;
    color: #0f172a;
}
.QuickLinks ul li a:hover
{
    cursor: pointer;
    color: var(--primary-color) !important;
}
.f-icon
{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100px;
    margin-right: 14px;
    color: #005894;
}
.f-text
{
    position: relative;
}
.f-social
{
    background: #005894;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin-right: 14px;
    color: #fff !important;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.f-social:hover
{
    background: #fff;
    color: #005894
}
.footer_btm
{
    padding: 15px 0;
    background: #d4dcfc;
}


.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #0a58ca;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #084298;
    transform: translateY(-5px);
}
/* Fix for mobile link styling and browser auto-detection */
footer a, 
footer a:hover, 
footer a:visited, 
footer a:active {
    text-decoration: none !important;
    outline: none !important;
}

/* Specifically targets the Contact Us link at the bottom of the list */
.QuickLinks a, .contact.QuickLinks a {
    text-decoration: none !important;
}

/* Stops mobile browsers from turning addresses/phones blue */
[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

/* =========================================
   FIX WHITE SPACE AT BOTTOM (Sticky Footer)
   ========================================= */
/* 
html {
    height: 100%;
}


body {
    min-height: 100vh;
    position: relative; 
    padding-bottom: 0px; 
}


footer {
    position: relative;
    width: 100%;
}

.footer_btm p {
    margin-bottom: 0 !important;
} */

/* DESKTOP: Hover opens menu */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
}

/* =========================================
   3-COLUMN HIRE MEGA MENU
   ========================================= */

/* Main Wrapper */
.hire-mega-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 0;
}
/* .hire-mega-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
} */

/* --- LEFT: 3-COLUMN GRID --- */
.hire-services-grid-3 {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    padding: 40px;
}

/* The Horizontal Tile Design */
.hire-tile {
    display: flex;
    align-items: center; /* Aligns icon and text horizontally */
    padding: 15px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid transparent; /* invisible border */
    text-decoration: none;
    transition: all 0.3s ease;
}

.hire-tile:hover {
    background: #f8fbff;
    border-color: #dbeafe;
    box-shadow: 0 10px 20px rgba(0, 88, 148, 0.08);
    transform: translateY(-3px);
}

/* Colorful Icon Boxes */
.tile-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: 0.3s;
}

/* Icon Box Colors (Subtle Backgrounds) */
.bg-blue-light { background: #e0f2fe; color: #0284c7; }
.bg-green-light { background: #dcfce7; color: #16a34a; }
.bg-purple-light { background: #f3e8ff; color: #9333ea; }
.bg-orange-light { background: #ffedd5; color: #ea580c; }
.bg-pink-light { background: #fce7f3; color: #db2777; }
.bg-teal-light { background: #ccfbf1; color: #0f766e; }
.bg-gray-light { background: #f1f5f9; color: #475569; }
.bg-red-light { background: #fee2e2; color: #dc2626; }
.bg-indigo-light { background: #e0e7ff; color: #4f46e5; }

/* Hover Effect: Icon Box gets darker/brand color */
.hire-tile:hover .tile-icon-box {
    transform: scale(1.1);
}

/* Text Content */
.tile-content {
    flex-grow: 1;
}

.tile-content h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 3px 0;
}

.tile-content span {
    font-size: 12px;
    color: #64748b;
    display: block;
    line-height: 1.3;
}

.hire-tile:hover .tile-content h6 {
    color: #005894; /* Brand Blue Hover */
}


/* --- RIGHT: SIDEBAR (Kept Same) --- */
.hire-sidebar {
    background: #005894; /* Brand Blue */
    height: 100%;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}
.sidebar-content { position: relative; z-index: 2; }
.hire-sidebar h4 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.hire-sidebar p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 25px; line-height: 1.5; }

/* Sidebar Button */
.btn-white {
    background: #fff;
    color: #005894;
    padding: 12px;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.btn-white:hover { background: #f1f5f9; color: #003356; }

/* Sidebar Contact */
.sidebar-contact { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
.sidebar-contact small { display: block; font-size: 12px; opacity: 0.8; margin-bottom: 5px; }
.sidebar-contact strong { font-size: 18px; letter-spacing: 1px; }

/* Sidebar Icon */
.sidebar-bg-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 150px;
    color: rgba(255,255,255,0.05);
    z-index: 1;
    transform: rotate(-15deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .hire-services-grid-3 {
        grid-template-columns: repeat(2, 1fr); /* 2 Cols on laptop */
    }
}

@media (max-width: 991px) {
    .hire-services-grid-3 {
        grid-template-columns: 1fr; /* 1 Col on Mobile */
        padding: 20px;
    }
    .hire-sidebar {
        padding: 30px 20px;
        text-align: center;
    }
    .hire-mega-wrapper {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .hire-mega-wrapper.show {
        display: block;
    }
}

@media (max-width: 991px) {
    .hire-mega-wrapper {
        width: 100%; /* Back to full width on mobile */
        left: 0;
        transform: none !important; 
        position: static;
        box-shadow: none;
        border-radius: 0;
    }
}

