/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;

}

a {
    color: white; 
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #0796fe;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #0796fe;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #0796fe, #092a49);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    /* color: #ffffff; */
    color:  #092a49;
    font-size: medium;
    line-height: 0px;
    font-weight: 600;
    text-transform: uppercase;
}
.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    /* color: #ffffff; */
    color:  #092a49;
    font-size: medium;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #0796fe;
    transition: none;
}
.navbar-dark .navbar-toggler {
    border-color:#092a49;
    border-width: 2px;
}
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color:#007acc;
    border: 2px solid transparent;
    border-radius: .25rem;
}
/* /////mega drop down menu for services //////////*/

.navbar-nav .mega-dropdown {
    position: relative;
}

/* Mega menu box */
.mega-menu {
   position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-70%);
    background: #fff;
    padding: 30px 30px;
    display: none;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.15);
    width: auto; /* let content define width */
    max-width: 1000px; /* set a nice cap */
    min-width: 900px; /* so layout is consistent */
    overflow-y: auto;
    max-height: 80vh;
}

/* show mega menu on hover */
.navbar-nav .mega-dropdown:hover .mega-menu,
.mega-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Heading style */
.mega-menu h6 {
    font-weight: 700;
    font-size: 18px;
    color: #0056b3;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* List styles */
.mega-menu ul {
    padding-left: 0;
    list-style: none;
}

.mega-menu ul li {
    margin-bottom: 8px;
}

.mega-menu .dropdown-item {
    font-size: 15px;
    padding: 5px 0;
    color: #333;
    transition: all 0.3s;
}

.mega-menu .dropdown-item:hover {
    color: #007bff;
    text-decoration: none;
}

/* ------- RESPONSIVE ------- */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        min-width: 100%;
        max-width: 100%;
        box-shadow: none;
        padding: 20px 15px;
        display: none;
        overflow-y: auto; 
        max-height: 70vh; 
        transition: all 0.3s ease-in-out;
    }
    .services-toggle:checked ~ .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu {
        transition: all 0.3s ease-in-out;
    }   
    .mega-menu .row {
        flex-direction: column;
    }
    label[for="servicesToggle"] {
        cursor: pointer;
    }
    .mega-menu .col-lg-4, 
    .mega-menu .col-md-6 {
        width: 100%;
        max-width: 100%;
    }
}
/* Initially hide the mega menu */
.nav-item .mega-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Desktop version: Show the mega menu when hovering over the Services link */
@media (min-width: 992px) {
    .nav-item:hover .mega-menu {
        display: block;
        opacity: 1;
    }

    /* Hide the mobile toggle checkbox and label for larger screens */
    .nav-item .services-toggle {
        display: none;
    }

    .nav-item label[for="servicesToggle"] {
        display: none;
    }

    /* Ensure 'a' tag works for desktop (Windows) version */
    .nav-item .nav-link {
        cursor: pointer;
    }
}

/* Mobile version: Show the mega menu when the checkbox is checked */
@media (max-width: 992px) {
    .nav-item .services-toggle:checked + label + .mega-menu {
        display: block;
    }
    .nav-item #servicesDesktop {
        display: none;
    }

    .nav-item label[for="servicesToggle"] {
        cursor: pointer;
    }

    /* Style mega-menu for mobile */
    .nav-item .mega-menu {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(31, 30, 30, 0.9);
    }
}


/* .navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
    
} */
.nav-item .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item .menu li {
    position: relative;
    padding: 10px 20px;
}

/* .nav-item .menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
} */

.navbar .dropdown-menu, .submenu-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    color: white;
    background: #007bff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    min-width: 250px;
    padding: 10px 0;
}
.dropdown:hover .dropdown-menu,
.submenu:hover .submenu-items {
    display: block;
}
/* Submenu Styles */
.submenu-items {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 250px;
    color: white;
}


@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 20px 60px;
        background-color: white !important;
        /* background: rgba(5, 29, 52, 0.934)!important; */
        /* background: linear-gradient(40deg, #393838, #0c0c50); */
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background-color: white !important;
        /* background: #092a49 !important; */
    }
    
    .page .navbar {
        /* background: #092a49 !important; */
        background-color: white !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background-color: white !important;
        /* background: #092a49 !important; */
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #0b0b0b;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.button:hover {
    background-color: #0056b3;
}
 

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: #092a49;
    margin-bottom: 45px;
    margin-top: 150px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(9, 42, 73, .7);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 200;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-text .btn i {
    margin-right: 5px;
}

.carousel .carousel-text .btn:hover {
    color: #0796fe;
    background: #ffffff;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 122px;
    right: 2px;
    bottom: 2px;
    display: flex;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    background: #092a49;
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #0796fe;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    /* margin-top: -170px; */
    position: relative;
    font-size: 16px;
    font-family: "Maven Pro", sans-serif;
}
.section-header-m,
.section-header-c,
.section-header-e
p{
    margin-bottom: 5px;
    margin-top: -170px;
    position: relative;
    font-size: 16px;
    font-family: "Maven Pro", sans-serif;
}
.section-header h2 {
    /* margin: 0 0 0 40px; */
    position: relative;
    font-size: 50px;
    font-weight: 200;
}

/* .section-header h2::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 0;
    top: 23px;
    left: -40px;
    border-bottom: 30px solid;
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.1) 3%) 30;
} */

.section-header h2:hover::after {
    border-image: repeating-linear-gradient( 60deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 1.5%, rgba(0,0,0,.05) 1.5%, rgba(0,0,0,.05) 3%) 30;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.fact .fact-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.fact .fact-item img {
    max-height: 50px;
    margin-bottom: 15px;
}

.fact .fact-item h2 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

/* .about .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
} */

.about .about-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}
.h1.heading {
    font-size: 34px;
    line-height: 1.1;
}
.scroll-margin-top-subitem {
    scroll-margin-top: 105px;
}
::before, ::after {
    box-sizing: border-box;
}
.width-restricted-block {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;

}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    /* width: 100%; */
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    border: 2px solid #092a49;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #0796fe;
    background: #092a49;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}
/* ////////  about page extra   ///////// */
.text-primary {
    color:  #004085  !important;
    font-weight: 500;
}
.mb-5, .my-5 {
    margin-bottom: 5rem !important;
    margin-top: 150px;
}
.text-dark {
    color: #004085 !important;
    font-size: 2rem;
    font-weight: 700;
}
.fusion-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .fusion-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #004085;
    margin-bottom: 40px;
  }
  
  .fusion-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .fusion-list {
    padding-left: 0;
    list-style: none;
    margin: 30px auto;
    max-width: 800px;
  }
  
  .fusion-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 12px 20px;
    border-left: 4px solid #3498db;
    background-color: #f7f9fb;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .fusion-list li:hover {
    background-color: #eaf4fb;
    border-left-color: #2980b9;
    transform: translateX(5px);
  }
  
  .fusion-badge-wrap {
    text-align: center;
    margin-top: 20px;
  }
  
  .fusion-badge {
    background: #3498db;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
  }
  
  @media (max-width: 768px) {
    .fusion-heading {
      font-size: 1.6rem;
    }
  
    .fusion-paragraph,
    .fusion-list li {
      font-size: 1rem;
    }
  } 
  /* //// Team page///////// */
  
/*******************************/
/********* Service CSS *********/
/*******************************/
/* Core Styling */
.service {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 18px;
    color: #0796fe;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
}

/* Responsive Row with Flexbox */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col-lg-3,
.col-md-6 {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }
}

/* Service Item Box */
.service-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    min-height: 370px;
    border-radius: 10px;
}

.service-item:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-item img {
    max-height: 60px;
    max-width: 60px;
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.service-item h3 {
    font-size: 20px;
    /* margin-bottom: 15px; */
    font-weight: 600;
    color: #1d2434;
    min-height: 30px; /* fixed height to accommodate 2-3 lines */
    line-height: 1.2;
    text-align: center;
    display: block; /* remove flex */
    padding-top: 5px; /* optional, for breathing room */
}

.service-item p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
    margin-bottom: 0;

}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content:flex-end;
}
.aboutreadbutton{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #042549;
    text-decoration: none;
    border-radius: 5px;
}
/* .feature .feature-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 30%;
    left: 0;
    border: 30px solid;
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.05), rgba(0,0,0,.05) .5%, rgba(0,0,0,.1) .5%, rgba(0,0,0,.1) 1%) 30;
    z-index: 1;
} */

.feature .feature-img:hover::after {
    border-image: repeating-linear-gradient( 45deg, rgba(0,0,0,.1), rgba(0,0,0,.1) .5%, rgba(0,0,0,.05) .5%, rgba(0,0,0,.05) 1%) 30;
}

.feature .feature-img img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 0 30px 30px 30px;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 28px;
    color: #0796fe;
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: #0796fe;
    font-size: 30px;
    font-weight: 300;
}

.feature .counters h2::after {
    position: absolute;
    content: "+";
    top: -15px;
    right: -15px;
}

.feature .counters p {
    color: #092a49;
    font-size: 20px;
    margin: 0;
}
/* Section Title with Underline Accent */
.section-title {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #0d6efd;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Office Image Styling */
/* Wrapper: maintains square shape & hides overflow */
.office-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio for square */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Inner image: zooms within the wrapper */
.office-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    border-radius: 15px;
}

.office-img:hover {
    transform: scale(1.15); /* Zoom */
    filter: brightness(1.1);
}
.text-muted {
    color: #6c757d !important;
    margin-top: 15px;
}

/* Responsive: 5 columns with Bootstrap */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (max-width: 768px) {
    .section-title::after {
        width: 40px;
    }
}

.pt-5, .py-5 {
    padding-top: 0px !important;
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    height: 96px;
    bottom: -46px;
    left: 15px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(256, 256, 256, .9);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    color: #0796fe;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
    color: #092a49;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #092a49;
    border: 2px solid #092a49;
    transition: .3s;
}

.team .team-social a:hover {
    color: #0796fe;
    border-color: #0796fe;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    position: relative;
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}

.testimonial .testimonial-item p {
    margin-bottom: 15px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: #092a49;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 3px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #092a49;
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.testimonial .owl-nav .owl-next:hover::after {
    background: #092a49;
}

/* Technologies css */

.technologies-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
  }
  
  .technologies-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .technologies-section h2 span {
    color: #276297;
  }
  
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  
  .tech-item {
    background-color: #eaf6ff;
    border-radius: 12px;
    transition: transform 0.3s ease;
    width: 165px;
    height: 170px;
    overflow: hidden;
    padding: 10px;
        /* border-radius: 8px */
  }
  
  .tech-item:hover {
    transform: scale(1.05);
  }
  
  .tech-item img {
    width: 90px;
    height: 150px;
    max-width: inherit;
    object-fit: contain;
  }


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .section-header {
    margin-bottom: 75px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: #0796fe;
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0796fe;
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: #092a49;
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: #0796fe;
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0796fe;
    font-size: 25px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #092a49;
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #0796fe;
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.blog .owl-nav .owl-next:hover::after {
    background: #092a49;
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: #092a49;
    border-radius: 0;
    border-color: #092a49;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #0796fe;
    background: #092a49;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

/* ///Team page css////// */
.team-section {
    padding-top: 150px;
    background-color: #ffffff;
    text-align: center;
    padding-bottom: 50px;
  }
  
  .team-section h2 {
    font-size: 32px;
    color: #092a49;
    margin-bottom: 10px;
  }
  
  .team-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }
  
  .containert {
    max-width: 1200px;
    margin: auto;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }
  
  .team-card {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.250);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .team-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .team-card h3 {
    font-size: 20px;
    color: #007acc;
    margin-bottom: 10px;
  }
  
  .team-card p {
    font-size: 14px;
    color: #333;
  }
  
  /* .fusion-core-team-section {
    margin-top: 60px;
    padding: 0 20px;
  }
  
  .fusion-team-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    background: #f9f9f9;
    box-shadow: 0 8px 25px rgba(12, 12, 12, 0.05);
    max-width: 1100px;
    transition: transform 0.3s ease;
  }
  
  .fusion-team-block:hover {
    transform: translateY(-5px);
  }
  
  .fusion-team-photo {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .fusion-team-photo img {
    width: 100%;
    max-width: 280px;
    height: 320px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(27, 26, 26, 0.195);
  }
  
  .fusion-team-info {
    flex: 1;
    padding: 10px 20px;
  }
  
  .fusion-team-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .fusion-team-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
  }
  
  .fusion-right-image {
    flex-direction: row-reverse;
  }
  
  @media (max-width: 900px) {
    .fusion-team-block {
      flex-direction: column !important;
      text-align: center;
      padding: 20px;
    }
  
    .fusion-team-info {
      padding: 0;
    }
  
    .fusion-team-photo {
      margin-bottom: 20px;
    }
  }
   */
.custom-team-section {
  background: linear-gradient(135deg, #e6f0ff 0%, #f4f9ff 100%);
  padding: 60px 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-team-title {
  text-align: center;
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 50px;
  color: #1a3d7c;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: customFadeInDown 1s ease forwards;
  position: relative;
}

.custom-team-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

.custom-team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.custom-team-col {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .custom-team-col {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 575px) {
  .custom-team-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.custom-team-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 25px 40px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.custom-team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 123, 255, 0.25);
}

.custom-team-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #004080;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.custom-team-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.custom-team-card p strong {
  color: #007bff;
  font-weight: 600;
}

.custom-team-card p:last-child {
  margin-bottom: 0;
}

/* Animations */
@keyframes customFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* //////////////// */
/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #0796fe;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #092a49;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #092a49;
    background: none;
    border: 2px solid #092a49;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #092a49;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0796fe;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #0796fe;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #092a49;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #092a49;
    background: none;
    border-radius: 0;
    border: 2px solid #092a49;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #0796fe;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #0796fe;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


