 /* ===== BODY ===== */
 body {
     font-family: 'Poppins', sans-serif;
 }

 html, body {
    overflow-x: hidden;
}
 .container {
    overflow: hidden;
}



/* Toggler Box */
.navbar-toggler {
    border: none;
    background: linear-gradient(135deg, #0b2c5a, #1f9dc1);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Remove default icon */
.navbar-toggler-icon {
    display: none;
}

/* Custom Hamburger */
.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: 0.3s;
}

/* Top & Bottom Lines */
.navbar-toggler span::before,
.navbar-toggler span::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: 0.3s;
}

.navbar-toggler span::before {
    top: -7px;
}

.navbar-toggler span::after {
    top: 7px;
}

/* Hover */
.navbar-toggler:hover {
    transform: scale(1.05);
}


/* Animation */
.navbar-toggler.active span {
    background: transparent;
}

.navbar-toggler.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active span::after {
    transform: rotate(-45deg);
    top: 0;
}





 /* ===== NAVBAR ===== */
 .custom-navbar {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: 0.3s;
     padding: 2px 0;
     margin-top: 30px;
     /* same height as navbar */
 }

 .navbar.scrolled {
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .navbar .nav-link {
     color: #333;
     font-weight: 600;
     margin: 0 10px;
 }

 .navbar .nav-link:hover {
     color: #0d6efd;
 }

 /* SEARCH ICON */
 .search-btn {
     font-size: 18px;
     color: #333;
     cursor: pointer;
 }



 /* MOBILE MENU DESIGN */
@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: linear-gradient(135deg, #0b2c5a, #1f9dc1);
        padding: 80px 20px;
        transition: 0.4s ease;
        z-index: 999;
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Overlay background */
    .navbar-collapse::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: -1;
        opacity: 0;
        transition: 0.3s;
    }

    .navbar-collapse.show::before {
        opacity: 1;
    }
}

.navbar-collapse {
    transition: right 0.4s ease;
}

@media (max-width: 991px) {

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        opacity: 0;
        transform: translateX(30px);
        transition: 0.4s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger effect */
    .navbar-nav .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-nav .nav-item:nth-child(5) { transition-delay: 0.5s; }
}


@media (max-width: 991px) {

    .navbar .nav-link {
        color: #fff;
        font-size: 18px;
        margin: 10px 0;
        display: inline-block;
        position: relative;
    }

    /* Underline animation */
    .navbar .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        background: #fff;
        left: 0;
        bottom: -5px;
        transition: 0.3s;
    }

    .navbar .nav-link:hover::after {
        width: 100%;
    }
}


.navbar .nav-link.active {
    color: #1f9dc1 !important;
}

@media (max-width: 991px) {
    .navbar .nav-link.active {
        color: #fff !important;
        font-weight: 700;
    }
}

.menu-close {
    display: none;
}


@media (max-width: 991px) {

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        transition: 0.3s;
    }

    .menu-close:hover {
        background: #fff;
        color: #0b2c5a;
        transform: rotate(90deg);
    }
}

/* Hidden underline */
/* .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #1657b2; 
    transition: all 0.3s ease;
    transform: translateX(-50%);
} */


/* Hover effect */
/* .navbar .nav-link:hover::after {
    width: 100%;
} */

/* Optional: change text color on hover */
.navbar .nav-link:hover {
    color: #6cc4f7;
}



 /* ===== SEARCH BOX ===== */
 .search-box {
     position: fixed;
     top: -100px;
     left: 0;
     width: 100%;
     background: #fff;
     padding: 15px 20px;
     box-shadow: 0 5px 20px rgb(0 0 0 / 2%);
     transition: 0.4s ease;
     z-index: 999;
     opacity: 0;
 }

 .search-box.active {

     opacity: 1;
 }

 .search-box input {
     width: 100%;
     border: none;
     outline: none;
     font-size: 18px;
     padding: 10px;
     border-bottom: 2px solid #0d6efd;
 }



 .custom-navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 999;
     /* initially transparent */
     transition: all 0.3s ease;
 }


 .navbar.scrolled {
     background: #fff;
     /* solid background */
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     padding: 5px 0;
     margin-top: 0px;
 }

 /* .navbar.scrolled .nav-link {
     color: #222 !important;
 } */



 /* ===== HERO ===== */
 .hero {
     /* height: 100vh; */
     display: flex;
     align-items: center;
     color: #fff;


     background-size: cover;
 }

 @media(max-width:768px){
    .hero {
        height:100%;
 }
 }

 /* TEXT */
 .hero-content {
     max-width: 600px;
     animation: fadeUp 1s ease;
     padding:220px 0px 125px 0px;
 }

 .hero h1 {
     font-size: 48px;
     font-weight: 700;
 }

 .hero p {
     margin-top: 15px;
     color: #ddd;
 }

 /* BUTTONS */
 .hero-btns {
     margin-top: 25px;
 }

 .hero-btns .btn {
     margin-right: 10px;
     border-radius: 4px;
 }

 @media(max-width:768px){
    .hero-btns .btn {
  margin-bottom: 15px;
}
 }

 /* ANIMATION */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

  .mail_none{
    display:initial;
  }

 /* MOBILE */
 @media(max-width:768px) {
     .hero {
         text-align: center;
         background-position: center;
     }

     .hero h1 {
         font-size: 31px;
     }

     .hero-content {
         margin: auto;
         padding:158px 0px 80px 0px;
     }
       .mail_none{
    display:none;
  }

 }





 /* ===== SECTION BACKGROUND ===== */
 .about-section {
     padding: 50px 0;
     color: #fff;

     background: linear-gradient(to right, rgb(0 60 120 / 0%) 40%, rgb(0 60 120 / 0%) 60%, rgba(0, 60, 120, 0.2) 80%, transparent), url(../images/other/about.png) no-repeat right center;

     background-size: cover;
 }

 /* ===== CONTENT ===== */
 .about-content h2 {
     font-size: 38px;
     font-weight: 700;
     color: #013a7a;
 }

 .about-content p {
     margin-top: 15px;
     color: #013a7a;
     font-size: 15px;
     line-height: 1.6;
 }



 /* CARD DESIGN */
 .about-card {
     background: #ffffff;
     padding: 19px 12px 3px 10px;
     border-radius: 3px;
     transition: 0.35s ease;
     height: 100%;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     position: relative;
 }

 /* ICON BOX */
 .icon-box {
     /* width: 80px;
        height: 80px; */
     margin: 0 auto 15px;
     background: #ffffff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .icon-box img {
     /* width: 40px; */
 }

 /* TEXT */
 .about-card h6 {
     font-weight: 700;
     font-size: 14px;
     margin-top: 10px;
     color: #1d3557;
 }

 .about-card p {
     font-size: 13px;
     color: #6c757d;
     margin-top: 5px;
 }

 /* HOVER EFFECT (smooth & modern) */
 .about-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 }

 /* RESPONSIVE */
 @media(max-width:768px) {
     .about-section {
         text-align: center;
         background-position: center;
     }
 }





 /* ===== TOP BAR ===== */
 .top-bar {
     background: #0b2c5a;
     color: #fff;
     font-size: 13px;
     padding: 6px 0;
 }

 .top-contact span {
     opacity: 0.9;
 }

 .top-contact i {
     margin-right: 5px;
 }

 .top-social a {
     color: #fff;
     margin-left: 12px;
     font-size: 13px;
     transition: 0.3s;
 }

 .top-social a:hover {
     color: #4da3ff;
 }



 /* ===== GET STARTED BUTTON ===== */
 .btn-get-started {
     background: linear-gradient(135deg, #056aac, #1f9dc1);
     color: #fff;
     font-weight: 600;
     padding: 8px 20px;
     border-radius: 4px;
     transition: 0.3s ease;
     box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
 }

 .btn-get-started:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
     color: #fff;
 }

 /********** Services ***********/
.service-section {
    background: #f6f8fb;
}

/* Heading */
.content-top h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
}

.content-top p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 15px;
}

/* Card */
.service-card.v3 {
    background: #fff;
    border-radius: 10px;
    padding: 25px 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
}

/* Icon box */
.service-card.v3 .icon-box {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    border-radius: 12px;
    background: #eef3f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.v3 img {
    width: 55px;
}

/* Title */
.service-card.v3 h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */
.service-card.v3 p {
    font-size: 13.5px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* List */
.service-card.v3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card.v3 ul li {
    font-size: 13px;
    padding: 8px 0;
    border-top: 1px solid #eee;
    color: #4b5563;
}

.service-card.v3 ul li:first-child {
    border-top: none;
}

/* Hover */
.service-card.v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}








 .icon-box1 {
     margin: 0 auto 15px;
     background: #f9fafb;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

.partner-wrapper {
background: #ffffff;
  padding: 0px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(246, 248, 251);
  position: relative;
  overflow: hidden;
}

/* Add soft fade edges (important for premium feel) */
.partner-wrapper::before,
.partner-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.partner-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.partner-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Carousel item */
.partner-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0px;
}

/* Logo */
.partner-carousel img {
    /* max-height: 45px; */
    width: auto;
    opacity:1;
    filter: grayscale(10%);
    transition: all 0.3s ease;
}

/* Hover */
.partner-carousel img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}



/* Section */
.work-process {
    background: #f8fafc;
}

/* Title */
.work-process h6 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #1f2937;
}

/* Row layout */
.process-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* Each item */
.process-item {
    text-align: center;
    flex: 1;
    position: relative;
}

/* Connecting line */
.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #d1d5db;
    z-index: 0;
}

/* Icon */
.process-item .icon {
 width: 85px;
  height: 85px;
  margin: 0 auto 12px;
  border-radius: 5px;
  background: #e6f0f7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.process-item .icon img {
    width: 47px;
}

/* Step title */
.process-item h6 {
font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Description */
.process-item p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    max-width: 150px;
    margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .process-row {
        /* flex-direction: column; */
        gap: 30px;
    }

    .process-item::after {
        display: none;
    }
}

 /******************PORTFOLIO*******************/

 /********** ECOSYSTEM SECTION **********/

 .ecosystem-section {
     background:url(../images/portfolio/portfolio.webp), linear-gradient(#ffffff1f, #fff0);
     /* background-size: cover; */
     background-blend-mode: overlay;
 }

 /* .ecosystem-section {
     background: linear-gradient(to right, #eef5fb, #e6f0f8);
 } */

 /* Title */
 .main-title {
     font-size: 32px;
     letter-spacing: 1px;
 }

 .sub-title {
     color: #6c757d;
     font-size: 16px;
 }

 /* Card */
 .eco-card {
     background: #fff;
     border-radius: 2px;
     overflow: hidden;
     box-shadow:0 10px 30px rgba(77, 77, 77, 0.44);
     transition: 0.3s;
 }

 .eco-card:hover {
     transform: translateY(-5px);
 }

 /* Image */
 .eco-card img {
     width: 100%;
     height: 180px;
     object-fit: cover;
 }

 /* Content */
 .eco-content {
     padding: 20px;
     text-align: center;
 }

 .eco-content h5 {
     font-weight: 700;
     margin-bottom: 12px;
 }

/* Button */
.eco-btn {
    display: inline-block;
    padding: 10px 15px;
    background: linear-gradient(90deg, #0d1b2a, #1b263b, #0d1b2a);
    background-size: 200% auto;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
    animation: gradientMove 6s ease infinite;
}

.eco-btn:hover {
    color: #fff;
    transform: translateY(5px);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.35);
    background:linear-gradient(90deg, #000, #212223, #031427);
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

 /********** END **********/






 .testimonial-section {
     background: linear-gradient(to right, #f7f9fc, #eef3f8),
         url("../images/testimonial/testimonial_bg.webp") no-repeat center;
     background-size: cover;
     position: relative;
 }

 /* Tag */
 .tag {
     color: #3b82f6;
     letter-spacing: 2px;
     font-size: 13px;
     font-weight: 600;
 }

 /* Card */
 .testimonial-card {
     background: #fff;
     border-radius: 1px;
     padding: 30px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     position: relative;
    min-height: 249px;
     transition: 0.3s;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
 }

 /* Quotes */
 .quote-top {
     position: absolute;
     top: 10px;
     left: 20px;
     font-size: 60px;
     color: #dbeafe;
     font-weight: bold;
 }

 .quote-bottom {
     position: absolute;
     bottom: 10px;
     right: 20px;
     font-size: 60px;
     color: #dbeafe;
     font-weight: bold;
 }

 /* User */
 .user-img {
     width: 65px !important;
     height: 65px;
     border-radius: 50%;
     border: 3px solid #3b82f6;
 }

 /* Stars */
 .stars {
     color: #3b82f6;
     font-size: 14px;
     margin-top: 3px;
 }

 /* Text */
 .testimonial-card p {
     color: #555;
     font-size: 14px;
     line-height: 1.6;
 }

 /* ===== NAVIGATION ===== */
 .testimonial-section .owl-nav {
     position: absolute;
     top: 45%;
     width: 100%;
 }

 /* Buttons */
 .testimonial-section .owl-prev,
 .testimonial-section .owl-next {
     position: absolute;
     background: #1e3a8a !important;
     color: #fff !important;
     border-radius: 50%;
     width: 42px;
     height: 42px;
     font-size: 18px !important;
     transition: 0.3s;
 }

 .testimonial-section .owl-prev:hover,
 .testimonial-section .owl-next:hover {
     background: #2563eb !important;
 }

 .testimonial-section .owl-prev {
     left: -60px;
 }

 .testimonial-section .owl-next {
     right: -60px;
 }

 /* ===== DOTS ===== */
 .testimonial-section .owl-dots {
     text-align: center;
     margin-top: 25px;
 }

 .testimonial-section .owl-dot span {
     width: 8px;
     height: 8px;
     background: #cbd5e1 !important;
     border-radius: 50%;
     display: block;
     margin: 5px;
 }

 .testimonial-section .owl-dot.active span {
     background: #3b82f6 !important;
 }



 /* NAV WRAPPER */
 .testimonial-section .owl-nav {
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     transform: translateY(-50%);
     pointer-events: none;
 }

 /* BUTTON BASE */
 .testimonial-section .owl-prev,
 .testimonial-section .owl-next {
     position: absolute;
     pointer-events: all;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: #0b2c5a !important;
     color: #fff !important;
     display: flex !important;
     align-items: center;
     justify-content: center;
     font-size: 18px !important;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     transition: 0.3s;
 }

 /* HOVER EFFECT */
 .testimonial-section .owl-prev:hover,
 .testimonial-section .owl-next:hover {
     background: #1f9dc1 !important;
     transform: scale(1.1);
 }

 /* POSITION (OUTSIDE CARDS LIKE DESIGN) */
 .testimonial-section .owl-prev {
     left: -70px;
 }

 .testimonial-section .owl-next {
     right: -70px;
 }







 /******** FOOTER ********/
 .main-footer {
     background: linear-gradient(135deg, #0b2c5a, #0b2c5a);
     color: #fff;
     padding: 24px 0 1px;
     position: relative;
 }

 /* Logo */


 .footer-logo {
     max-width: 140px;
     filter: brightness(0) invert(1);
     opacity: 0.9;
 }

 /* Text */
 .footer-text {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
 }

 /* Links */
 .footer-links a {
     color: #fff;
     margin: 0 12px;
     font-size: 14px;
     text-decoration: none;
     position: relative;
     transition: 0.3s;
 }

 .footer-links a::after {
     content: "";
     position: absolute;
     width: 0;
     height: 2px;
     background: #fff;
     left: 0;
     bottom: -3px;
     transition: 0.3s;
 }

 .footer-links a:hover::after {
     width: 100%;
 }

 /* Social */
 .footer-social a {
     width: 38px;
     height: 38px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border-radius: 50%;
     margin-left: 8px;
     transition: 0.3s;
 }

 .footer-social a:hover {
     background: #fff;
     color: #0b2c5a;
 }

 /* Bottom */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     padding-top: 15px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.7);
 }


 .process_padding{
    padding-top:90px;
 }
 @media(max-width:768px){
     .process_padding{
    padding-top:80px;
 }
 }


 .logo_width{
        max-width: 140px;
 }

 /********/
 @media(max-width:768px){
 .center_text{
    text-align:center;
 }
  .logo_width{
        max-width: 100px;
 }
 }



 /***********/
 .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}



/**************/
.search_margin_top{
    top:105px;
}

.search_margin_top_scroll{
    top:84px;
}







.breadcrumb-section {
    background: #f4f9fc;
    border-bottom: 1px solid #e4edf4;
    padding: 16px 0;
      margin-top: 76px;
}
@media(max-width:769px){
    .breadcrumb-section {
    background: #f4f9fc;
    border-bottom: 1px solid #e4edf4;
    padding: 16px 0;
      margin-top: 60px;
}
}

.custom-breadcrumb .breadcrumb-item a {
    color: #0788c9;
    text-decoration: none;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #003b73;
    font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #7d9bb2;
}


/**********BLOG **********/
.blog-section{
    background: #f7fbfe;
}
.blog-intro {
    max-width: 650px;
    margin: 15px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 5px 25px rgba(0, 59, 115, 0.06);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 59, 115, 0.13);
    border-color: #0788c9;
}


/* Blog Image */

.blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #f1f7fb;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}


/* Category */

.blog-category {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: #0788c9;
    color: #ffffff;
    padding: 7px 13px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}


/* Content */

.blog-content {
    padding: 24px;
}


/* Meta */

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 13px;
    color: #7b8b9a;
    font-size: 12px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #0788c9;
}


/* Title */

.blog-content h4 {
    color: #003b73;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: #0788c9;
}


/* Description */

.blog-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Read More */

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #003b73;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    color: #0788c9;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #0788c9;
}

.read-more:hover i {
    transform: translateX(5px);
}



/*****************CONTACT ************/
.contact-section {
    background: #f7fbfe;
}


/* Intro */

.contact-intro {
    max-width: 680px;
    margin: 15px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}


/* Left Card */

.contact-info-card {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e4edf4;
    box-shadow: 0 8px 30px rgba(0, 59, 115, 0.06);
}


.contact-small-title {
    color: #0788c9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.contact-info-card h3 {
    color: #003b73;
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0 12px;
}


.contact-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}


/* Contact Information */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}


.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    background: #eaf7fc;
    color: #0788c9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


.contact-info-item span {
    display: block;
    color: #7b8b9a;
    font-size: 12px;
    margin-bottom: 3px;
}


.contact-info-item a {
    color: #003b73;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.contact-info-item a:hover {
    color: #0788c9;
}


.address-item {
    margin-bottom: 0;
}


.contact-info-item p {
    color: #003b73;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}


/* Form */

.contact-form-card {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e4edf4;
    box-shadow: 0 8px 30px rgba(0, 59, 115, 0.06);
}


.form-heading span {
    color: #0788c9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.form-heading h3 {
    color: #003b73;
    font-size: 30px;
    font-weight: 700;
    margin: 8px 0 25px;
}


/* Form Labels */

.contact-form-card label {
    display: block;
    color: #003b73;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}


/* Inputs */

.contact-form-card .form-control {
    height: 50px;
    border: 1px solid #dce7ee;
    border-radius: 6px;
    padding: 12px 15px;
    color: #003b73;
    font-size: 14px;
    background: #ffffff;
    box-shadow: none;
    transition: all 0.3s ease;
}


.contact-form-card textarea.form-control {
    height: auto;
    resize: vertical;
}


.contact-form-card .form-control:focus {
    border-color: #0788c9;
    box-shadow: 0 0 0 3px rgba(7, 136, 201, 0.08);
}


/* Submit Button */

.contact-submit-btn {
    border: 0;
    background: linear-gradient(135deg, #003b73, #0788c9);
    color: #ffffff;
    padding: 13px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.contact-submit-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}


.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 59, 115, 0.18);
}


.contact-submit-btn:hover i {
    transform: translateX(5px);
}


/* Map */

.map-card {
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4edf4;
    box-shadow: 0 8px 30px rgba(0, 59, 115, 0.06);
}


.map-card iframe {
    display: block;
}


/* Mobile */

@media (max-width: 767px) {

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .contact-info-card h3,
    .form-heading h3 {
        font-size: 25px;
    }

    .map-card iframe {
        height: 300px;
    }

}


/************Career FOrm*******/
.career-section {
    background: #f7fbfe;
}


/* Intro */

.career-intro {
    max-width: 680px;
    margin: 15px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}


/* Left Card */

.career-info-card {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e4edf4;
    box-shadow: 0 8px 30px rgba(0, 59, 115, 0.06);
}


.career-small-title {
    color: #0788c9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.career-info-card h3 {
    color: #003b73;
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0 12px;
}


.career-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}


/* Features */

.career-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}


.career-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    background: #eaf7fc;
    color: #0788c9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


.career-feature h5 {
    color: #003b73;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px;
}


.career-feature p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* Career Email */

.career-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e6edf3;
    padding-top: 22px;
    margin-top: 5px;
}


.career-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    background: #003b73;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}


.career-contact span {
    display: block;
    color: #7b8b9a;
    font-size: 12px;
    margin-bottom: 3px;
}


.career-contact a {
    color: #003b73;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}


.career-contact a:hover {
    color: #0788c9;
}


/* Form Card */

.career-form-card {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e4edf4;
    box-shadow: 0 8px 30px rgba(0, 59, 115, 0.06);
}


.form-heading span {
    color: #0788c9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.form-heading h3 {
    color: #003b73;
    font-size: 30px;
    font-weight: 700;
    margin: 8px 0 25px;
}


/* Labels */

.career-form-card label {
    display: block;
    color: #003b73;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}


.career-form-card label span {
    color: #0788c9;
}


/* Inputs */

.career-form-card .form-control {
    height: 50px;
    border: 1px solid #dce7ee;
    border-radius: 6px;
    padding: 12px 15px;
    color: #003b73;
    font-size: 14px;
    background: #ffffff;
    box-shadow: none;
    transition: all 0.3s ease;
}


.career-form-card textarea.form-control {
    height: auto;
    resize: vertical;
}


.career-form-card .form-control:focus {
    border-color: #0788c9;
    box-shadow: 0 0 0 3px rgba(7, 136, 201, 0.08);
}


/* Resume */

.resume-note {
    display: block;
    margin-top: 6px;
    color: #8a9aaa;
    font-size: 11px;
}


/* Submit Button */

.career-submit-btn {
    border: 0;
    background: linear-gradient(135deg, #003b73, #0788c9);
    color: #ffffff;
    padding: 13px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.career-submit-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}


.career-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 59, 115, 0.18);
}


.career-submit-btn:hover i {
    transform: translateX(5px);
}


/* Mobile */

@media (max-width: 767px) {

    .career-info-card,
    .career-form-card {
        padding: 25px;
    }

    .career-info-card h3,
    .form-heading h3 {
        font-size: 25px;
    }

}


/************/
.card_box_shadow{
    box-shadow:0 5px 25px rgba(0, 59, 115, 0.06);
}



.blog-details-section {
    background: #ffffff;
}

.blog-details-image {
    overflow: hidden;
}

.blog-details-image img {
    min-height: 420px;
    object-fit: cover;
}

.blog-details h1 {
    font-size: 42px;
    line-height: 1.2;
}

.blog-content {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.blog-content h3 {
    color: #1d1d1d;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-details-meta {
    font-size: 14px;
}

.blog-sidebar {
    position: sticky;
    top: 15px;
}

.sidebar-widget {
    background: #fff;
}

.sidebar-widget h5 {
    position: relative;
}

.sidebar-widget h5::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: var(--bs-primary);
    margin-top: 10px;
}

.sidebar-widget a {
    transition: all 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--bs-primary) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.sidebar-cta {
    background: linear-gradient(135deg,
            #0d6efd,
            #084298);
}

@media (max-width: 991px) {

    .blog-sidebar {
        position: static;
    }

    .blog-details h1 {
        font-size: 34px;
    }

}

@media (max-width: 575px) {

    .blog-details h1 {
        font-size: 28px;
    }

    .blog-details-image img {
        min-height: 250px;
    }

}






/*****************SERVICES*************/
.mg-services-section {
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}


/* Section Heading */

.mg-section-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #5d6b82;
    margin-bottom: 10px;
}

.mg-section-tag span {
    margin: 0 5px;
}

.mg-section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.mg-section-title span {
    color: #0c78b2;
}

.mg-section-description {
    max-width: 750px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* Service Card */

.mg-service-card {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
}


/* Top Line */

.mg-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #0c78b2;

    transition: width 0.35s ease;
}


/* Hover */

.mg-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.25);
    box-shadow: 0 20px 45px rgba(20, 40, 80, 0.10);
}

.mg-service-card:hover::before {
    width: 100%;
}


/* Service Top */

.mg-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}


/* Number */

.mg-service-number {
    font-size: 14px;
    font-weight: 700;
    color: #98a2b3;
    letter-spacing: 2px;
}


/* Icon */

.mg-service-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #eef5ff;
    color: #0c78b2;

    font-size: 27px;

    transition: all 0.35s ease;
}

.mg-service-card:hover .mg-service-icon {
    background: #0b76b1;
    color: #ffffff;
    transform: rotate(-5deg);
}


/* Content */

.mg-service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.35;
}

.mg-service-content p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* Features */

.mg-service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;

    border-top: 1px solid #edf0f5;
    padding-top: 18px;
}

.mg-service-features span {
    font-size: 13px;
    color: #475467;
}

.mg-service-features i {
    color: #0c77b1;
    margin-right: 7px;
}


/* Read More */

.mg-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    font-size: 14px;
    font-weight: 700;

    color: #0b76b1;
    text-decoration: none;

    transition: all 0.3s ease;
}

.mg-read-more i {
    transition: transform 0.3s ease;
}

.mg-read-more:hover {
    color: #084298;
}

.mg-read-more:hover i {
    transform: translateX(6px);
}


/* Responsive */

@media (max-width: 991px) {

    .mg-section-title {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .mg-section-title {
        font-size: 30px;
    }

    .mg-service-card {
        padding: 25px;
    }

}

@media (max-width: 575px) {

    .mg-section-title {
        font-size: 27px;
    }

    .mg-service-features {
        grid-template-columns: 1fr;
    }

}


/********SERVICES************/
/* =========================================================
   Breadcrumb
========================================================= */

.mg-details-breadcrumb {
    background: #f7f9fc;
    padding: 16px 0;
}

.mg-details-breadcrumb .breadcrumb-item {
    font-size: 14px;
}

.mg-details-breadcrumb a {
    color: #667085;
    text-decoration: none;
}

.mg-details-breadcrumb .active {
    color: #0d6efd;
}


/* =========================================================
   Hero
========================================================= */

.mg-service-hero {
    background: #f7f9fc;
    padding: 130px 0 90px;
    overflow: hidden;
}

.mg-service-category {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1284b7;
    margin-bottom: 18px;
}

.mg-service-category span {
    margin: 0 5px;
}

.mg-service-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 750;
    color: #111827;
    margin-bottom: 22px;
}

.mg-service-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
    max-width: 680px;
}


/* Buttons */

.mg-primary-btn,
.mg-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.mg-primary-btn {
    background: #0c78b2;
    color: #ffffff;
}

.mg-primary-btn:hover {
    background: #084298;
    color: #ffffff;
    transform: translateY(-2px);
}

.mg-outline-btn {
    border: 1px solid #d0d5dd;
    color: #344054;
    background: #ffffff;
}

.mg-outline-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}


/* Hero Visual */

.mg-service-hero-visual {
    height: 390px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mg-hero-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-one {
    width: 330px;
    height: 330px;
    border: 1px solid #dbe7f7;
}

.circle-two {
    width: 250px;
    height: 250px;
    background: #eef5ff;
}

.mg-main-service-icon {
    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background: #ffffff;
    color: #0f7db4;

    font-size: 60px;

    box-shadow: 0 25px 60px rgba(20, 40, 80, .15);

    position: relative;
    z-index: 2;
}


/* Floating Icons */

.mg-floating-icon {
    position: absolute;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #ffffff;
    color: #0c78b2;

    box-shadow: 0 12px 30px rgba(20, 40, 80, .12);

    font-size: 20px;

    z-index: 3;
}

.icon-one {
    top: 55px;
    left: 20%;
}

.icon-two {
    right: 15%;
    top: 90px;
}

.icon-three {
    right: 23%;
    bottom: 45px;
}


/* =========================================================
   Details
========================================================= */

.mg-service-details {
    background: #ffffff;
}

.mg-detail-image {
    overflow: hidden;
    border-radius: 20px;
}

.mg-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.mg-small-title {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #0f7eb2;

    margin-bottom: 12px;
}

.mg-detail-block h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.mg-detail-block>p {
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
}


/* =========================================================
   Capabilities
========================================================= */

.mg-capability {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px;

    border: 1px solid #eaecf0;
    border-radius: 10px;

    background: #ffffff;

    transition: all .3s ease;
}

.mg-capability:hover {
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 40, 80, .07);
}

.mg-capability-icon {
    width: 32px;
    height: 32px;

    min-width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef5ff;
    color: #0d6efd;

    font-size: 12px;
}

.mg-capability span {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}


/* =========================================================
   Benefits
========================================================= */

.mg-benefit-card {
    padding: 22px;

    border-radius: 12px;

    background: #f8fafc;

    border: 1px solid #edf0f5;

    height: 100%;

    position: relative;
}

.mg-benefit-number {
    font-size: 12px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 1px;
}

.mg-benefit-card h5 {
    margin: 12px 0 0;

    font-size: 15px;
    line-height: 1.5;

    color: #344054;
}


/* =========================================================
   Process
========================================================= */

.mg-process-list {
    margin-top: 30px;
}

.mg-process-item {
    display: flex;
    gap: 20px;

    padding-bottom: 28px;
    margin-bottom: 28px;

    border-bottom: 1px solid #eaecf0;
}

.mg-process-item:last-child {
    border-bottom: 0;
}

.mg-process-number {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef5ff;
    color: #1283b6;

    font-size: 13px;
    font-weight: 700;
}

.mg-process-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 7px;
}

.mg-process-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #667085;
}


/* =========================================================
   Sidebar
========================================================= */

.mg-service-sidebar {
    position: sticky;
    top: 100px;
}

.mg-sidebar-box {
    border: 1px solid #eaecf0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 25px;
}

.mg-sidebar-title {
    padding: 25px 25px 18px;
}

.mg-sidebar-title span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0f7eb4;
}

.mg-sidebar-title h4 {
    font-size: 21px;
    font-weight: 700;
    margin: 8px 0 0;
    color: #111827;
}

.mg-service-menu {
    border-top: 1px solid #eaecf0;
}

.mg-service-menu a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 16px 20px;

    color: #475467;

    text-decoration: none;

    border-bottom: 1px solid #eaecf0;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
}

.mg-service-menu a:last-child {
    border-bottom: 0;
}

.mg-service-menu a span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mg-service-menu a span i {
    width: 30px;
    color: #0f7eb4;
}

.mg-service-menu a:hover,
.mg-service-menu a.active {
    background: #eef5ff;
    color: #0f7eb4;
}

.mg-service-menu a>i {
    transition: transform .3s ease;
}

.mg-service-menu a:hover>i,
.mg-service-menu a.active>i {
    transform: translateX(4px);
}


/* Sidebar CTA */

.mg-sidebar-cta {
    padding: 30px;

    border-radius: 18px;

    background: #1080b5;

    color: #ffffff;

    margin-bottom: 20px;
}

.mg-cta-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, .15);

    margin-bottom: 22px;

    font-size: 20px;
}

.mg-sidebar-cta h3 {
    font-size: 24px;
    font-weight: 700;
}

.mg-sidebar-cta p {
    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .85);
}

.mg-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    margin-top: 10px;
}


/* Sidebar Contact */

.mg-sidebar-contact {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    border: 1px solid #eaecf0;
    border-radius: 14px;
}

.mg-contact-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eef5ff;
    color: #0d6efd;
}

.mg-sidebar-contact small {
    color: #667085;
}

.mg-sidebar-contact h5 {
    margin: 3px 0 0;

    font-size: 15px;
    color: #111827;
}


/* =========================================================
   Navigation
========================================================= */

.mg-service-navigation {
    background: #f7f9fc;
}

.mg-nav-card {
    display: block;

    padding: 25px;

    border: 1px solid #e4e7ec;
    border-radius: 14px;

    background: #ffffff;

    text-decoration: none;

    transition: all .3s ease;
}

.mg-nav-card:hover {
    border-color: #0d6efd;
    transform: translateY(-3px);
}

.mg-nav-card span {
    display: block;

    font-size: 12px;
    font-weight: 700;

    color: #1080b5;

    margin-bottom: 8px;
}

.mg-nav-card strong {
    font-size: 17px;
    color: #344054;
}


/* =========================================================
   Bottom CTA
========================================================= */

.mg-bottom-cta {
    padding: 70px 0;

    background: #111827;

    color: #ffffff;
}

.mg-bottom-cta span {
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #8bb8ff;
}

.mg-bottom-cta h2 {
    font-size: 38px;
    line-height: 1.25;

    margin: 12px 0;

    font-weight: 700;
}

.mg-bottom-cta p {
    color: #aab3c2;
    margin: 0;
    font-size: 16px;
}

.mg-cta-button {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 15px 28px;

    background: #0d6efd;
    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.mg-cta-button:hover {
    background: #ffffff;
    color: #0d6efd;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991px) {

    .mg-service-hero {
        padding: 100px 0;
    }

    .mg-service-hero h1 {
        font-size: 42px;
    }

    .mg-service-hero-visual {
        height: 320px;
    }

    .mg-service-sidebar {
        position: static;
    }

    .mg-bottom-cta h2 {
        font-size: 32px;
    }

}


@media (max-width: 767px) {

    .mg-service-hero h1 {
        font-size: 34px;
    }

    .mg-service-hero-text {
        font-size: 16px;
    }

    .mg-service-hero-visual {
        height: 280px;
    }

    .circle-one {
        width: 240px;
        height: 240px;
    }

    .circle-two {
        width: 180px;
        height: 180px;
    }

    .mg-main-service-icon {
        width: 110px;
        height: 110px;
        font-size: 45px;
    }

    .mg-detail-image img {
        height: 280px;
    }

    .mg-detail-block h2 {
        font-size: 28px;
    }

    .mg-bottom-cta h2 {
        font-size: 28px;
    }

}


@media (max-width: 575px) {

    .mg-service-hero h1 {
        font-size: 29px;
    }

    .mg-service-hero-visual {
        height: 240px;
    }

    .mg-floating-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .mg-detail-image img {
        height: 230px;
    }

}






/*********PRIVACY POLICY*********/
.legal-section {
    background: #f7f9fc;
}

.legal-header {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header .tag {
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin: 12px 0;
}

.legal-header p {
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}

.legal-header small {
    color: #98a2b3;
}

.legal-content {
    max-width: 950px;
    margin: auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    border: 1px solid #eaecf0;
    box-shadow: 0 10px 35px rgba(16, 24, 40, .05);
}

.legal-section-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eaecf0;
}

.legal-section-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.legal-section-block p {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.legal-section-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-section-block li {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-contact-box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: #f7f9fc;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    padding: 20px;
}

.legal-contact-box strong {
    color: #111827;
}

.legal-contact-box span {
    color: #667085;
    font-size: 14px;
}

.legal-contact-box a {
    color: #0d6efd;
    text-decoration: none;
}

@media (max-width: 767px) {

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .legal-section-block h2 {
        font-size: 20px;
    }

}


/********TERMS AND CONDITIONS*************/
.legal-section {
    background: #f7f9fc;
}

.legal-header {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header .tag {
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin: 12px 0;
}

.legal-header p {
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}

.legal-header small {
    color: #98a2b3;
}

.legal-content {
    max-width: 950px;
    margin: auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    border: 1px solid #eaecf0;
    box-shadow: 0 10px 35px rgba(16, 24, 40, .05);
}

.legal-section-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eaecf0;
}

.legal-section-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.legal-section-block p {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.legal-section-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-section-block li {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-contact-box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: #f7f9fc;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    padding: 20px;
}

.legal-contact-box strong {
    color: #111827;
}

.legal-contact-box span {
    color: #667085;
    font-size: 14px;
}

.legal-contact-box a {
    color: #0d6efd;
    text-decoration: none;
}

@media (max-width: 767px) {

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .legal-section-block h2 {
        font-size: 20px;
    }

}


/*************SERVICES LINK*******/
.services_link_style{
    color: #212529;
  font-weight: 800;
  text-decoration: none;
}


/************HEADER MOBILE EMAIL**********/
.header_phone_email{
    color: white;
  text-decoration: none;
 font-size: 13px;
}


/**************************get started*******/
/* =========================================================
   Main Section
========================================================= */

.it-enquiry-section {
    background: #f7f9fc;
}


/* =========================================================
   Heading
========================================================= */

.it-enquiry-heading .tag {
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.it-enquiry-intro {
    max-width: 720px;
    margin: 15px auto 0;
    color: #667085;
    line-height: 1.8;
    font-size: 16px;
}


/* =========================================================
   Left Information
========================================================= */

.it-enquiry-info {

    height: 100%;

    padding: 40px;

    border-radius: 20px;

    background: #111827;

    color: #ffffff;

    position: relative;

    overflow: hidden;

}


/* Decorative */

.it-enquiry-info::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(13, 110, 253, .15);

    top: -100px;
    right: -100px;

}

.it-enquiry-info::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(13, 110, 253, .08);

    bottom: -90px;
    left: -90px;

}


.it-enquiry-small-title {

    position: relative;
    z-index: 2;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #8bb8ff;

}


.it-enquiry-info h3 {

    position: relative;
    z-index: 2;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 700;

    margin: 15px 0;

}


.it-enquiry-info h3 span {

    color: #5d9cff;

}


.it-enquiry-description {

    position: relative;
    z-index: 2;

    color: #aab3c2;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 30px;

}


/* =========================================================
   Features
========================================================= */

.it-enquiry-feature {

    position: relative;
    z-index: 2;

    display: flex;

    gap: 15px;

    margin-bottom: 23px;

}


.it-enquiry-feature-icon {

    min-width: 45px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, .08);

    color: #75aaff;

    font-size: 18px;

}


.it-enquiry-feature h5 {

    margin: 0 0 5px;

    font-size: 15px;

    color: #ffffff;

}


.it-enquiry-feature p {

    margin: 0;

    color: #98a2b3;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   Contact
========================================================= */

.it-enquiry-contact {

    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .12);

}


.it-enquiry-contact-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #0d6efd;

    color: #ffffff;

}


.it-enquiry-contact span {

    display: block;

    color: #98a2b3;

    font-size: 12px;

    margin-bottom: 3px;

}


.it-enquiry-contact strong {

    display: block;

    color: #ffffff;

    font-size: 14px;

}


/* =========================================================
   Form Card
========================================================= */

.it-enquiry-form-card {

    height: 100%;

    padding: 40px;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid #eaecf0;

    box-shadow: 0 15px 45px rgba(16, 24, 40, .06);

}


.it-form-heading {

    margin-bottom: 25px;

}


.it-form-heading span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #0d6efd;

}


.it-form-heading h3 {

    margin: 8px 0;

    font-size: 28px;

    font-weight: 700;

    color: #111827;

}


.it-form-heading p {

    margin: 0;

    color: #667085;

    font-size: 14px;

}


/* =========================================================
   Form
========================================================= */

.it-enquiry-form-card label {

    display: block;

    margin-bottom: 7px;

    color: #344054;

    font-size: 13px;

    font-weight: 600;

}


.it-enquiry-form-card label span {

    color: #dc3545;

}


.it-enquiry-form-card .form-control,
.it-enquiry-form-card .form-select {

    min-height: 48px;

    border: 1px solid #d0d5dd;

    border-radius: 8px;

    padding: 10px 14px;

    font-size: 14px;

    color: #344054;

    box-shadow: none;

    transition: all .2s ease;

}


.it-enquiry-form-card textarea.form-control {

    min-height: 125px;

    resize: vertical;

}


.it-enquiry-form-card .form-control:focus,
.it-enquiry-form-card .form-select:focus {

    border-color: #0d6efd;

    box-shadow: 0 0 0 3px rgba(13, 110, 253, .08);

}


.it-enquiry-form-card .form-control::placeholder {

    color: #98a2b3;

}


/* =========================================================
   File Note
========================================================= */

.it-enquiry-note {

    display: block;

    margin-top: 6px;

    color: #98a2b3;

    font-size: 11px;

}


/* =========================================================
   Submit Button
========================================================= */

.it-enquiry-submit {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    min-height: 52px;

    border: 0;

    border-radius: 8px;

    background: #0d6efd;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;

}


.it-enquiry-submit:hover {

    background: #084298;

    transform: translateY(-2px);

}


/* =========================================================
   Bottom Section
========================================================= */

.it-enquiry-bottom {

    background: #ffffff;

}


.it-enquiry-bottom-card {

    height: 100%;

    padding: 30px;

    border: 1px solid #eaecf0;

    border-radius: 15px;

    background: #ffffff;

    transition: all .3s ease;

}


.it-enquiry-bottom-card:hover {

    transform: translateY(-5px);

    border-color: #cfe0ff;

    box-shadow: 0 15px 35px rgba(16, 24, 40, .07);

}


.it-bottom-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef5ff;

    color: #0d6efd;

    font-size: 20px;

    margin-bottom: 20px;

}


.it-enquiry-bottom-card h4 {

    font-size: 19px;

    font-weight: 700;

    color: #111827;

    margin-bottom: 10px;

}


.it-enquiry-bottom-card p {

    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991px) {

    .it-enquiry-info {

        padding: 35px;

    }

    .it-enquiry-form-card {

        padding: 35px;

    }

}


@media (max-width: 767px) {

    .it-enquiry-info {

        padding: 28px;

    }

    .it-enquiry-info h3 {

        font-size: 30px;

    }

    .it-enquiry-form-card {

        padding: 25px;

    }

    .it-form-heading h3 {

        font-size: 24px;

    }

}


@media (max-width: 575px) {

    .it-enquiry-section {

        padding-top: 40px !important;

        padding-bottom: 40px !important;

    }

    .it-enquiry-info {

        padding: 25px 20px;

    }

    .it-enquiry-form-card {

        padding: 22px 18px;

    }

}


/*****************/
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 77px;
}
@media(max-width:769px){
    .hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 56px;
}
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}


/* ==========================
   Carousel Arrows
========================== */

.hero-arrow {
    width: 55px;
    height: 55px;

    top: 50%;
    transform: translateY(-50%);

    opacity: 1;
    z-index: 10;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-arrow-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #0b2c5a;

    font-size: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}

.hero-arrow:hover .hero-arrow-icon {
    background: #0b2c5a;
    color: #fff;
}


/* ==========================
   Mobile
========================== */

@media (max-width: 767px) {

    .hero-arrow {
        width: 45px;
        height: 45px;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }

    .hero-arrow-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

}