/*
@File: Binter Template Style

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Navbar CSS
** - Home Demo One CSS
** - Home Demo Two CSS
** - Home Demo Three CSS
** - About CSS
** - Service Style One CSS
** - Service Details CSS
** - Product Details CSS
** - Blog Details CSS
** - Contact CSS
** - Shop CSS
** - Cart CSS
** - Checkout CSS
** - Product Details CSS
** - Account CSS
** - Appointment CSS
** - Testimonials CSS
** - FAQ CSS
** - Error CSS
** - Coming Soon CSS
** - Rules CSS
** - Go Top CSS
** - Preloader CSS
*/

/* Critical CSS for Above-the-Fold Content */
/* Google Fonts - Loaded via link tag in HTML for better performance */

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

/* Optimize font loading - Use system fonts to prevent Google Fonts issues */
@font-face {
  font-family: 'SystemFont';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: local('-apple-system'), local('BlinkMacSystemFont'), local('Segoe UI'), local('Helvetica Neue'), local('Arial'), local('sans-serif');
}

/* Ensure loader can be properly hidden */
.loader {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader.hidden,
.loader[style*="display: none"],
.loader[style*="visibility: hidden"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Critical rendering path optimizations */
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #565969;
  background-color: #fff;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Prevent external font loading issues */
* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

/* Optimize images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}

/* Optimize for mobile performance */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Optimize touch targets */
  button, 
  .btn, 
  a {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Reduce animations on mobile for better performance */
  .animate__animated {
    animation-duration: 0.6s !important;
  }
  
  /* Optimize carousel performance */
  .owl-carousel .owl-item {
    will-change: transform;
  }
  
  /* Reduce box-shadow complexity on mobile */
  .service-item,
  .feature-item,
  .blog-item {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Optimize hover effects for touch */
  .touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* Mobile-first responsive breakpoints */
@media (max-width: 575.98px) {
  body { font-size: 16px; }
  .container { padding-left: 15px; padding-right: 15px; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body { font-size: 16px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body { font-size: 17px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body { font-size: 17px; }
}

@media (min-width: 1200px) {
  body { font-size: 17px; }
}

/* Critical accessibility improvements */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #00245a;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #00245a;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .common-btn,
  .banner-btn,
  .service-item {
    border: 2px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*----- Default CSS -----*/
h1, h2, h3, h4, h5, h6 {
  color: #00245a;
  font-weight: 700;
}

p {
  line-height: 1.7;
}

a {
  transition: 0.5s all ease;
  text-decoration: none;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

button:focus {
  outline: 0;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

ul {
  margin: 0;
  padding: 0;
}

/*----- End Default CSS -----*/

/*----- Accessibility CSS -----*/
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #00245a;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .common-btn,
    .banner-btn {
        border: 2px solid #fff;
    }
    
    .service-item,
    .projects-item,
    .team-item {
        border: 1px solid #00245a;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/*----- Home Demo One CSS -----*/
/*-- Header Top --*/
.header-top-area {
  background-color: #00245a;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 99999;
}
.header-top-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.header-top-area .left p {
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
}
.header-top-area .left p a {
  display: inline-block;
  color: #fff;
}
.header-top-area .left p a:hover {
  color: #f26522;
}
.header-top-area .left .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #565969;
  cursor: pointer;
  transition: 0.5s all ease;
}
.header-top-area .left .dropdown-toggle::after {
  display: none;
}
.header-top-area .left .dropdown-toggle span {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  top: 0;
}
.header-top-area .left .dropdown-toggle span i {
  position: relative;
  font-size: 18px;
  top: 2px;
  right: 2px;
  transition: 0.5s all ease;
  color: #565969;
}
.header-top-area .left .dropdown-toggle:hover {
  color: #f26522;
}
.header-top-area .left .dropdown-toggle:hover span i {
  color: #f26522;
}
.header-top-area .left .dropdown-menu {
  padding: 15px;
  border: none;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 20px;
  opacity: 0;
  visibility: visible;
  transition: 0.5s all ease;
  transform: scaleX(0);
}
.header-top-area .left .dropdown-menu li {
  display: block !important;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all ease;
}
.header-top-area .left .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header-top-area .left .dropdown-menu li:nth-child(1) {
  border-right: none;
  padding-right: 0;
  position: relative;
  top: -5px;
}
.header-top-area .left .dropdown-menu li:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
}
.header-top-area .left .dropdown-menu li:hover {
  color: #f26522;
}
.header-top-area .left .dropdown-menu .dropdown-item {
  padding: 0;
  color: #565969;
  margin-bottom: 15px;
  font-weight: 600;
  display: block !important;
}
.header-top-area .left .dropdown-menu .dropdown-item::before {
  display: none;
}
.header-top-area .left .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.header-top-area .left .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  transition: 0.5s all ease;
}
.header-top-area .left .dropdown-menu .dropdown-item span:hover {
  color: #f26522;
}
.header-top-area .left .dropdown-menu .dropdown-item:hover, .header-top-area .left .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
  color: #f26522;
}
.header-top-area .left .dropdown-menu .dropdown-item:active, .header-top-area .left .dropdown-menu .dropdown-item.active {
  color: #f26522;
  background-color: transparent;
}
.header-top-area .left .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.header-top-area .right {
  text-align: right;
}
.header-top-area .right .contact-info {
  display: inline-block;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}
.header-top-area .right .contact-info li {
  display: inline-block;
  list-style-type: none;
  margin-right: 8px;
}
.header-top-area .right .contact-info li:last-child {
  margin-right: 0;
}
.header-top-area .right .contact-info li i {
  display: inline-block;
  color: #f26522;
  margin-right: 3px;
  font-size: 16px;
  position: relative;
  top: 1px;
}
.header-top-area .right .contact-info li a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
}
.header-top-area .right .contact-info li a:hover {
  color: #f26522;
}
.header-top-area .right .social-info {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 10px;
}
.header-top-area .right .social-info li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.header-top-area .right .social-info li:last-child {
  margin-right: 0;
}
.header-top-area .right .social-info li a {
  display: block;
  color: #fff;
  font-size: 18px;
}
.header-top-area .right .social-info li a:hover {
  color: #f26522;
}

/*-- Navbar --*/
.sticky-top {
  top: -1px;
}

.navbar-light .navbar-brand .logo-two {
  display: none;
}

.main-nav {
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
  transition: 0.5s all ease;
}
.main-nav .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.main-nav nav {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.main-nav nav .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.main-nav nav .navbar-nav .nav-item:hover a {
  color: #f26522;
}
.main-nav nav .navbar-nav .nav-item a {
  color: #00245a;
  text-transform: unset;
  transition: 0.5s all ease;
}
.main-nav nav .navbar-nav .nav-item a:hover, .main-nav nav .navbar-nav .nav-item a:focus, .main-nav nav .navbar-nav .nav-item a.active {
  color: #f26522;
}
.main-nav nav .navbar-nav .nav-item a i {
  display: inline-block;
  position: relative;
  top: 0;
  font-size: 12px;
  margin-left: 3px;
  font-weight: 600;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  background: #fff;
  border: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  border-bottom: 1px dashed rgba(0, 36, 90, 0.2784313725);
  position: relative;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #f26522;
  transition: 0.7s;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
  border-bottom: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child:before {
  display: none;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover:before {
  width: 100%;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: 0 !important;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: #f26522;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 16px;
  color: #00245a;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #f26522;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: unset;
  right: -100%;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #00245a;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #f26522;
}
.main-nav .dropdown-toggle::after {
  display: none;
}
.main-nav.menu-shrink {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5294117647);
}
.main-nav.menu-shrink .side-nav ul li .icon-search {
  height: 70px;
}
.main-nav.menu-shrink .side-nav ul li .icon-search i {
  line-height: 70px;
}
.main-nav.menu-shrink .side-nav ul li .icon-close {
  height: 70px;
}
.main-nav.menu-shrink .side-nav ul li .icon-close i {
  line-height: 70px;
}

.side-nav {
  display: block;
}
.side-nav ul {
  display: block !important;
}
.side-nav ul li {
  list-style-type: none;
  display: inline-block;
}
.side-nav ul li:nth-child(1) {
  border-right: 1px solid #e8e8e8;
  padding-right: 30px;
  position: relative;
  top: -8px;
}
.side-nav ul li:nth-child(2) {
  padding-left: 25px;
  padding-right: 30px;
  position: relative;
  top: -1px;
}
.side-nav ul li .cart-item {
  display: inline-block;
  color: #00245a;
  font-weight: 600;
  font-size: 24px;
  position: relative;
  line-height: 24px;
}
.side-nav ul li .cart-item span {
  display: inline-block;
  color: #fff;
  background-color: #f26522;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  position: absolute;
  top: -6px;
  right: -6px;
}
.side-nav ul li .search-icon {
  font-size: 28px;
  color: #fff;
  border: 0;
  outline: none;
  transition: 0.5s all ease;
  background-color: #f26522;
  padding: 0;
  height: 75px;
  padding-left: 22px;
  padding-right: 22px;
}
.side-nav ul li .search-icon i {
  line-height: 75px;
}
.side-nav ul li .search-icon:hover {
  background-color: #00245a;
}
.side-nav ul li .search-icon.two {
  padding: 0;
  height: auto;
}
.side-nav ul li .search-icon.two i {
  line-height: 30px;
}
.side-nav ul li .search-toggle .search-icon.icon-close {
  display: none;
}
.side-nav ul li .search-toggle.opened .search-icon.icon-search {
  display: none;
}
.side-nav ul li .search-toggle.opened .search-icon.icon-close {
  display: block;
}
.side-nav ul li .nav-srh {
  position: relative;
  display: inline-block;
}
.side-nav ul li .nav-srh .search-area {
  position: absolute;
  right: 8px;
  bottom: -105px;
  z-index: 5;
  transition: 0.5s all ease;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
}
.side-nav ul li .nav-srh .search-area .search-icon {
  vertical-align: middle;
  position: absolute;
  right: 30px;
  top: 28px;
  background-color: transparent;
  font-size: 20px;
  color: #515151;
  transition: 0.5s all ease;
}
.side-nav ul li .nav-srh .search-area .search-icon:hover {
  color: #00245a;
}
.side-nav ul li .nav-srh .search-area .src-input {
  outline: none;
  padding-left: 20px;
  padding-right: 30px;
  margin: 0;
  width: 300px;
  background-color: rgba(221, 221, 221, 0.5019607843);
  border: 1px solid #ddd;
  font-size: 17px;
  height: 45px;
  border-radius: 0;
}
.side-nav ul li .nav-srh .search-area.opened {
  max-height: 100px;
  padding: 20px 25px;
  box-shadow: 0px 0px 15px rgba(221, 221, 221, 0.5019607843);
}
.side-nav .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #565969;
  cursor: pointer;
  transition: 0.5s all ease;
}
.side-nav .dropdown-toggle::after {
  display: none;
}
.side-nav .dropdown-toggle span {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  top: 1px;
}
.side-nav .dropdown-toggle span i {
  position: relative;
  font-size: 18px;
  top: 2px;
  right: 2px;
  transition: 0.5s all ease;
  color: #565969;
}
.side-nav .dropdown-toggle:hover {
  color: #f26522;
}
.side-nav .dropdown-toggle:hover span i {
  color: #f26522;
}
.side-nav .dropdown-menu {
  padding: 15px;
  border: none;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 20px;
  opacity: 0;
  visibility: visible;
  transition: 0.5s all ease;
  transform: scaleX(0);
}
.side-nav .dropdown-menu li {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all ease;
}
.side-nav .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.side-nav .dropdown-menu li:nth-child(1) {
  border-right: none;
  padding-right: 0;
  position: relative;
  top: -5px;
}
.side-nav .dropdown-menu li:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
}
.side-nav .dropdown-menu li:hover {
  color: #f26522;
}
.side-nav .dropdown-menu .dropdown-item {
  padding: 0;
  color: #565969;
  margin-bottom: 15px;
  font-weight: 600;
}
.side-nav .dropdown-menu .dropdown-item::before {
  display: none;
}
.side-nav .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.side-nav .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  transition: 0.5s all ease;
}
.side-nav .dropdown-menu .dropdown-item span:hover {
  color: #f26522;
}
.side-nav .dropdown-menu .dropdown-item:hover, .side-nav .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
  color: #f26522;
}
.side-nav .dropdown-menu .dropdown-item:active, .side-nav .dropdown-menu .dropdown-item.active {
  color: #f26522;
  background-color: transparent;
}
.side-nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

/*-- Banner --*/
.banner-area {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-item {
    height: 960px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: none; /* Hide by default, show when slider initializes */
}

.banner-item:first-child {
    display: block; /* Show first item as fallback */
}

.banner-slider.owl-loaded .banner-item {
    display: block; /* Show all items when slider is loaded */
}

.banner-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4653025424) 23%, rgba(255, 255, 255, 0) 66%);
}
.banner-item .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.banner-img-one {
  background-image: url("../img/banner/banner-main1.jpg");
}

.banner-img-two {
  background-image: url("../img/banner/banner-main2.jpg");
}

.banner-img-three {
  background-image: url("../img/banner/banner-main3.jpg");
}

.banner-content {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.banner-content .sub-text {
  display: inline-block;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  position: relative;
  margin-bottom: 10px;
}
.banner-content .sub-text:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0px;
  right: -9px;
  background-color: #fff;
}
.banner-content .sub-text:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0px;
  right: -16px;
  background-color: #f26522;
}
.banner-content h1 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 85px;
  max-width: 860px;
}
.banner-content p {
  color: #fff;
  font-size: 20px;
  max-width: 795px;
  margin-bottom: 30px;
}
.banner-content .banner-btn-area .banner-btn {
  color: #565969;
  background-color: #fff;
  font-size: 18px;
  display: inline-block;
  padding: 14px 25px 14px;
  position: relative;
  z-index: 1;
  margin-left: 10px;
}
.banner-content .banner-btn-area .banner-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background-color: #f26522;
  z-index: -1;
  transition: 0.5s all ease;
  border-radius: 50% 50% 0 0;
}
.banner-content .banner-btn-area .banner-btn i {
  display: inline-block;
  font-size: 18px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}
.banner-content .banner-btn-area .banner-btn:hover {
  color: #fff;
}
.banner-content .banner-btn-area .banner-btn:hover:before {
  height: 100%;
  border-radius: 0;
}
.banner-content .banner-bg-text {
  display: inline-block;
  font-size: 150px;
  color: #fff;
  font-family: "Dancing Script", cursive;
  opacity: 0.1;
  position: absolute;
  top: -90px;
  left: 0;
}

.banner-area .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  position: absolute;
  top: 45%;
  right: 80px;
  max-width: 40px;
  margin-right: -9px;
}
.banner-area .owl-theme .owl-dots .owl-dot span {
  margin: 5px 7px;
  background: #fff;
}
.banner-area .owl-theme .owl-dots .owl-dot.active span {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  position: relative;
}
.banner-area .owl-theme .owl-dots .owl-dot.active span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.banner-area .owl-item.active .banner-content h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.7s;
}
.banner-area .owl-item.active .banner-content p {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.7s;
}

.common-btn {
  color: #fff;
  background-color: #f26522;
  font-size: 18px;
  display: inline-block;
  padding: 14px 25px 14px;
  position: relative;
  z-index: 1;
}
.common-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background-color: #00245a;
  z-index: -1;
  transition: 0.5s all ease;
  border-radius: 50% 50% 0 0;
}
.common-btn i {
  display: inline-block;
  font-size: 18px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}
.common-btn:hover {
  color: #fff;
}
.common-btn:hover:before {
  height: 100%;
  border-radius: 0;
}

/*-- Feature --*/
.feature-area {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 60px 0;
  margin-bottom: 0;
}

.feature-item {
  background-color: #f26522;
  position: relative;
  padding: 30px 25px 30px;
  text-align: center;
}
.feature-item:hover .left i {
  transform: rotateY(360deg);
}
.feature-item .left {
  margin-bottom: 22px;
}
.feature-item .left i {
  color: #fff;
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  transition: 0.5s all ease;
}
.feature-item .right h3 {
  font-size: 25px;
  margin-bottom: 12px;
}
.feature-item .right h3 a {
  color: #fff;
}
.feature-item .right h3 a:hover {
  color: #00245a;
}
.feature-item .right p {
  color: #fff;
  margin-bottom: 14px;
}
.feature-item .right a {
  display: inline-block;
  color: #fff;
}
.feature-item .right a:hover i {
  animation: plus-icon-rotate 1s infinite linear;
}
.feature-item .right a i {
  display: inline-block;
  position: relative;
  top: 2px;
  font-size: 15px;
  transition: 0.5s all ease;
}
.feature-item.two {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3411764706);
}
.feature-item.two .left i {
  color: #f26522;
}
.feature-item.two .right h3 a {
  color: #00245a;
}
.feature-item.two .right h3 a:hover {
  color: #f26522;
}
.feature-item.two .right p {
  color: #565969;
}
.feature-item.two .right a {
  color: #00245a;
}
.feature-item.three {
  background-color: #00245a;
}
.feature-item.three .right h3 a:hover {
  color: #f26522;
}

@keyframes plus-icon-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-- About --*/
.section-title {
  margin-bottom: 50px;
  margin-top: 0;
}
.section-title .sub-title {
  display: inline-block;
  color: #00245a;
  position: relative;
  margin-bottom: 10px;
}
.section-title .sub-title:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0px;
  right: -9px;
  background-color: #00245a;
}
.section-title .sub-title:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0px;
  right: -16px;
  background-color: #f26522;
}
.section-title h2 {
  margin-bottom: 15px;
  margin-top: 0;
}

.about-area {
  padding: 100px 0;
  margin: 0;
}
.about-area .about-content {
  max-width: 635px;
  margin-left: auto;
  padding-right: 70px;
}
.about-area .about-content .section-title {
  margin-bottom: 25px;
}
.about-area .about-content .about-span {
  display: block;
  font-weight: 500;
  color: #474a59;
  font-size: 18px;
  margin-bottom: 5px;
}
.about-area .about-content p {
  margin-bottom: 15px;
}
.about-area .about-content ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.about-area .about-content ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  flex: 0 0 60%;
  max-width: 60%;
}
.about-area .about-content ul li:nth-child(1) {
  padding-left: 85px;
}
.about-area .about-content ul li:nth-child(2) {
  flex: 0 0 40%;
  max-width: 40%;
}
.about-area .about-content ul li:nth-child(2) .signature2 {
  display: none;
}
.about-area .about-content ul li i {
  position: absolute;
  top: 0;
  left: 0;
  color: #f26522;
  font-size: 60px;
  line-height: 60px;
}
.about-area .about-content ul li h4 {
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 20px;
}
.about-area .about-content ul li a {
  display: block;
  color: #f26522;
  font-weight: 700;
  font-size: 24px;
}
.about-area .about-content ul li a:hover {
  color: #00245a;
}
.about-area .about-img {
  position: relative;
}
.about-area .about-img img {
  width: 100%;
}
.about-area .about-img img:nth-child(2) {
  position: absolute;
  top: 225px;
  left: -70px;
  max-width: 145px;
}

@keyframes about-rotate-ani {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*-- Counter --*/
.counter-item {
  margin-bottom: 30px;
  position: relative;
  margin-top: -8px;
}
.counter-item h3 {
  margin-bottom: 0;
  color: #f26522;
  font-size: 58px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 58px;
}
.counter-item h3 .target {
  margin-left: -15px;
  font-weight: 400;
  position: relative;
  top: 6px;
  font-size: 60px;
}
.counter-item p {
  margin-bottom: 0;
  color: #00245a;
  font-size: 22px;
  padding-left: 140px;
  position: relative;
  top: 5px;
  line-height: 1.5;
}

/*-- Statistics --*/
.statistics-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.statistics-area:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.statistics-area .section-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.statistics-area .section-title .sub-title {
  color: #f26522;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
}

.statistics-area .section-title h2 {
  color: #00245a;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.statistics-area[style*="background: #000000"] .section-title h2 {
  color: #ffffff;
}

.statistics-area .section-title p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.statistics-area[style*="background: #000000"] .section-title p {
  color: #cccccc;
}

.stat-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 40px 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 101, 34, 0.1);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(242, 101, 34, 0.3);
}

.stat-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f26522, #00245a, #f26522);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.stat-icon {
  margin-bottom: 25px;
  position: relative;
}

.stat-icon i {
  font-size: 56px;
  color: #f26522;
  display: block;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(242, 101, 34, 0.2);
}

.stat-item:hover .stat-icon i {
  transform: scale(1.1);
  color: #00245a;
}

.stat-item h3 {
  font-size: 52px;
  font-weight: 800;
  color: #00245a;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 36, 90, 0.1);
  position: relative;
}

.statistics-area[style*="background: #000000"] .stat-item h3 {
  color: #1a1a1a;
  text-shadow: 0 2px 4px rgba(26, 26, 26, 0.1);
}

.stat-item h3 .odometer {
  display: inline-block;
  color: #1a1a1a;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(26, 26, 26, 0.1);
  filter: drop-shadow(0 1px 2px rgba(26, 26, 26, 0.2));
}

.statistics-area[style*="background: #000000"] .stat-item h3 .odometer {
  color: #1a1a1a;
  text-shadow: 0 2px 4px rgba(26, 26, 26, 0.1);
  filter: drop-shadow(0 1px 2px rgba(26, 26, 26, 0.2));
}

.stat-item p {
  font-size: 20px;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.statistics-area[style*="background: #000000"] .stat-item p {
  color: #4a4a4a;
  font-weight: 500;
}

.stat-item p:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f26522, #00245a);
  border-radius: 2px;
}

/*-- Services --*/
.service-area {
  padding: 100px 0;
  margin: 0;
}
.service-area .section-title {
  margin-bottom: 30px;
}
.service-area .section-title .sub-title {
  color: #fff;
}
.service-area .section-title .sub-title:before {
  background-color: #fff;
}
.service-area .section-title h2 {
  color: #fff;
}
.service-area .common-btn {
  margin-bottom: 30px;
}
.service-area .common-btn:before {
  background-color: #fff;
}
.service-area .common-btn:hover {
  color: #00245a;
}

.service-item {
  margin-bottom: 55px;
  background-color: #fff;
  padding: 30px 30px 18px;
  position: relative;
  transition: 0.5s all ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.service-item.one {
  background-image: url("../img/services/services1.jpg");
}
.service-item.two {
  background-image: url("../img/services/services2.jpg");
}
.service-item.three {
  background-image: url("../img/services/services3.jpg");
}
.service-item.four {
  background-image: url("../img/services/services4.jpg");
}
.service-item.five {
  background-image: url("../img/services/services5.jpg");
}
.service-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 1;
  transition: 0.5s all ease;
  z-index: -1;
}
.service-item:hover {
  transform: translate(0, -10px);
}
.service-item:hover:before {
  background-color: #000;
  opacity: 0.4;
}
.service-item:hover span {
  color: #fff;
}
.service-item:hover h3 a {
  color: #fff;
}
.service-item:hover p {
  color: #fff;
}
.service-item:hover .service-icon {
  transform: rotateY(360deg);
}
.service-item span {
  display: block;
  color: #f26522;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 14px;
  line-height: 25px;
  transition: 0.5s all ease;
}
.service-item h3 {
  margin-bottom: 10px;
  font-size: 25px;
}
.service-item h3 a {
  color: #00245a;
  display: block;
}
.service-item h3 a:hover {
  color: #f26522;
}
.service-item p {
  margin-bottom: 8px;
  transition: 0.5s all ease;
}
.service-item .service-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  color: #f26522;
  font-size: 30px;
  display: inline-block;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3411764706);
  position: absolute;
  right: 45px;
  bottom: -25px;
  transition: 0.5s all ease;
}
.service-item .service-btn {
  display: inline-block;
  color: #f26522;
  font-size: 40px;
  line-height: 40px;
  position: relative;
  left: -8px;
}
.service-item .service-btn i {
  line-height: 40px;
  display: inline-block;
}
.service-item .service-btn:hover {
  color: #fff;
}

/*-- Skills --*/
.skills-area .skills-img {
  background-image: url("..//img/skills-main.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.skills-area .skills-img img {
  display: none;
}
.skills-area .skills-content {
  padding: 70px 70px 70px;
  position: relative;
  background-color: #f26522;
}
.skills-area .skills-content .section-title {
  margin-bottom: 30px;
}
.skills-area .skills-content .section-title .sub-title {
  color: #fff;
}
.skills-area .skills-content .section-title .sub-title:before {
  background-color: #fff;
}
.skills-area .skills-content .section-title .sub-title:after {
  background-color: #00245a;
}
.skills-area .skills-content .section-title h2 {
  color: #fff;
}
.skills-area .skills-content ul li {
  list-style-type: none;
  display: block;
  position: relative;
  padding-left: 75px;
  margin-bottom: 25px;
}
.skills-area .skills-content ul li:last-child {
  margin-bottom: 0;
}
.skills-area .skills-content ul li i {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #fff;
  font-size: 55px;
  line-height: 70px;
}
.skills-area .skills-content ul li h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 22px;
}
.skills-area .skills-content ul li p {
  margin-bottom: 0;
  color: #fff;
  max-width: 475px;
}

/*-- Progress --*/
.progress-area .single-progress {
  margin-bottom: 30px;
  position: relative;
}
.progress-area .single-progress .progress-bar {
  background-color: transparent;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}
.progress-area .single-progress .progress-bar .background {
  background-color: #eaeaea !important;
  height: 100%;
  border-radius: 4px;
}
.progress-area .single-progress .progress-bar .left {
  background-color: #f26522 !important;
  height: 100%;
  border-radius: 4px;
  transition: width 2s ease-in-out;
}
.progress-area .single-progress .progress-bar div span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 55px;
  color: #00245a;
  line-height: 165px;
}
.progress-area .single-progress .progress-content {
  position: absolute;
  top: 30px;
  left: 200px;
}
.progress-area .single-progress .progress-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #00245a;
}
.progress-area .single-progress .progress-content p {
  margin-bottom: 0;
  color: #666;
  line-height: 1.5;
}

/*-- Projects --*/
.projects-area {
  padding: 100px 0;
  margin: 0;
}
.projects-area .section-title {
  text-align: center;
}
.projects-area .section-title h2 {
  margin-bottom: 8px;
}
.projects-area .section-title p {
  margin-bottom: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.projects-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
}
.projects-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -25px;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.5725868311) 20%, rgba(255, 255, 255, 0) 59%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
}
.projects-item:hover {
  transform: translate(0, -10px);
}
.projects-item:hover:before {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.projects-item:hover .bottom {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}
.projects-item .top img {
  width: 100%;
}
.projects-item .bottom {
  position: absolute;
  left: 35px;
  bottom: -25px;
  z-index: 1;
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
}
.projects-item .bottom span {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}
.projects-item .bottom h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.projects-item .bottom h3 a {
  display: block;
  color: #fff;
}
.projects-item .bottom h3 a:hover {
  color: #f26522;
}

/*-- Team --*/
.team-area {
  padding: 100px 0;
  margin: 0;
}
.team-area .section-title {
  text-align: center;
}
.team-area .section-title h2 {
  margin-bottom: 8px;
}
.team-area .section-title p {
  margin-bottom: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.team-item {
  margin-bottom: 30px;
  position: relative;
  transition: 0.5s all ease;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  overflow: hidden;
  text-align: center;
}
.team-item .team-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.5s all ease;
  visibility: visible;
  height: 350px;
}
.team-item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -25px;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.5725868311) 20%, rgba(255, 255, 255, 0) 59%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
}
.team-item:hover {
  transform: translate(0, -10px);
}
.team-item:hover:after {
  opacity: 1;
  bottom: 0;
  visibility: visible;
}
.team-item:hover .team-shape {
  opacity: 0;
  visibility: hidden;
  bottom: 10%;
}
.team-item:hover .bottom {
  transform: translate(0, -30px);
}
.team-item:hover .bottom span {
  color: #fff;
}
.team-item:hover .bottom h3 {
  color: #fff;
}
.team-item:hover ul {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.team-item img {
  width: 100%;
}
.team-item .bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  padding-left: 10px;
  transition: 0.5s all ease;
  z-index: 1;
}
.team-item .bottom span {
  display: block;
  color: #f26522;
  margin-bottom: 3px;
  transition: 0.5s all ease;
}
.team-item .bottom h3 {
  font-size: 22px;
  margin-bottom: 0;
  transition: 0.5s all ease;
}
.team-item ul {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.team-item ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.team-item ul li:last-child {
  margin-right: 0;
}
.team-item ul li a {
  display: block;
  color: #fff;
  font-size: 17px;
}
.team-item ul li a:hover {
  color: #f26522;
}

/*-- Video --*/
.video-area {
  padding: 100px 0;
  margin: 0;
  background-image: url("../img/video-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.video-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00245a;
  opacity: 0.5;
}
.video-area:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 300px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
}
.video-area .video-btn {
  text-align: right;
  position: relative;
  z-index: 1;
}
.video-area .video-btn a {
  display: inline-block;
  color: #fff;
  background-color: #ff0800;
  height: 70px;
  width: 140px;
  text-align: center;
  font-size: 50px;
  border-radius: 20px;
}
.video-area .video-btn a i {
  line-height: 70px;
}
.video-area .video-btn a:hover {
  background-color: #00245a;
}
.video-area .section-title {
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.video-area .section-title .sub-title {
  color: #fff;
}
.video-area .section-title .sub-title:before {
  background-color: #fff;
}
.video-area .section-title h2 {
  color: #fff;
}
.video-area .quote-area {
  background-color: #fff;
  padding: 47px 50px 50px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  position: relative;
  z-index: 1;
}
.video-area .quote-area .quote-title {
  display: block;
  color: #f26522;
  margin-bottom: 5px;
}
.video-area .quote-area h3 {
  font-size: 35px;
  margin-bottom: 30px;
}
.video-area .quote-area form .form-group {
  margin-bottom: 30px;
  position: relative;
}
.video-area .quote-area form .form-group .form-control {
  height: 50px;
  border: 1px solid #dfdfdf;
  padding-left: 45px;
  transition: 0.5s all ease;
}
.video-area .quote-area form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.video-area .quote-area form .form-group ::-moz-placeholder {
  color: #7f7f7f;
}
.video-area .quote-area form .form-group ::placeholder {
  color: #7f7f7f;
}
.video-area .quote-area form .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 13px;
  left: 20px;
  font-size: 18px;
}
.video-area .quote-area form .form-group textarea {
  height: auto !important;
  padding-top: 13px;
}
.video-area .quote-area form .form-group .nice-select {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  transition: 0.5s all ease;
  margin-bottom: 30px;
  font-size: 17px;
}
.video-area .quote-area form .form-group .nice-select .current {
  color: #7f7f7f;
}
.video-area .quote-area form .form-group .nice-select .list {
  width: 100%;
  display: block;
}
.video-area .quote-area form .form-group .nice-select:active, .video-area .quote-area form .form-group .nice-select.open, .video-area .quote-area form .form-group .nice-select:focus {
  border: 1px solid #00245a;
}
.video-area .quote-area form .common-btn {
  transition: 0.5s all ease;
  border: 0;
  border-radius: 5px;
  background-color: #00245a;
  font-weight: 500;
  padding: 12px 60px 12px;
}
.video-area .quote-area form .common-btn:before {
  border-radius: 5px;
  background-color: #f26522;
}

/*-- Testimonials --*/
.testimonials-area {
  padding: 100px 0;
  margin: 0;
}
.testimonials-area .section-title {
  text-align: center;
  margin-bottom: 20px;
}
.testimonials-area .section-title h2 {
  margin-bottom: 8px;
}
.testimonials-area .section-title p {
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-area .testimonials-item {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  padding: 40px 40px 40px;
  margin: 30px 20px 30px;
  transition: 0.5s all ease;
}
.testimonials-area .testimonials-item:hover {
  transform: translate(0, -10px);
}
.testimonials-area .testimonials-item:hover ul li i {
  margin-left: -40px;
}
.testimonials-area .testimonials-item:hover ul li i:after {
  opacity: 0;
}
.testimonials-area .testimonials-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.testimonials-area .testimonials-item h3 span {
  color: #f26522;
}
.testimonials-area .testimonials-item p {
  margin-bottom: 30px;
}
.testimonials-area .testimonials-item ul {
  display: flex;
  flex-wrap: wrap;
}
.testimonials-area .testimonials-item ul li {
  list-style-type: none;
  display: inline-block;
  flex: 0 0 50%;
  max-width: 50%;
}
.testimonials-area .testimonials-item ul li:last-child {
  text-align: right;
}
.testimonials-area .testimonials-item ul li i {
  display: inline-block;
  height: 50px;
  color: #fff;
  background-color: #f26522;
  padding-right: 30px;
  padding-left: 60px;
  line-height: 50px;
  font-size: 30px;
  margin-left: -60px;
  position: relative;
  transition: 0.5s all ease;
}
.testimonials-area .testimonials-item ul li i:after {
  position: absolute;
  content: "";
  top: -14px;
  left: 0;
  border-left: 20px solid transparent;
  border-bottom: 14px solid #d34806;
  transition: 0.5s all ease;
}
.testimonials-area .testimonials-item ul li h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonials-area .testimonials-item ul li span {
  display: block;
}
.testimonials-area .owl-theme .owl-dots .owl-dot span {
  background: #f26522;
}
.testimonials-area .owl-theme .owl-dots .owl-dot.active span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-color: #f26522;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-area .owl-theme .owl-dots .owl-dot.active span {
  background: transparent;
  border: 1px solid #f26522;
  padding: 10px;
  position: relative;
  top: 5px;
}
.testimonials-area .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  margin-bottom: -8px;
}

/*-- Blog --*/
.blog-area {
  padding: 100px 0;
  margin: 0;
}
.blog-area .section-title {
  text-align: center;
}
.blog-area .blog-item {
  position: relative;
  transition: 0.5s all ease;
}
.blog-area .blog-item:hover {
  transform: translate(0, -10px);
}
.blog-area .blog-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.572587) 20%, rgba(255, 255, 255, 0) 59%);
  transition: 0.5s all ease;
}
.blog-area .blog-item img {
  width: 100%;
}
.blog-area .blog-item .bottom {
  position: absolute;
  left: 40px;
  bottom: 20px;
}
.blog-area .blog-item .bottom span {
  display: block;
  color: #f6f6f6;
  margin-bottom: 12px;
  font-size: 15px;
}
.blog-area .blog-item .bottom span a {
  color: #f6f6f6;
  position: relative;
  padding-left: 11px;
}
.blog-area .blog-item .bottom span a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "/";
  color: #f6f6f6;
}
.blog-area .blog-item .bottom span a:hover {
  color: #f26522;
}
.blog-area .blog-item .bottom h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.blog-area .blog-item .bottom h3 a {
  color: #fff;
}
.blog-area .blog-item .bottom h3 a:hover {
  color: #f26522;
}
.blog-area .blog-item .bottom .blog-btn {
  display: inline-block;
  color: #fff;
  font-size: 35px;
  position: relative;
  left: -8px;
}
.blog-area .blog-item .bottom .blog-btn:hover {
  color: #f26522;
}
.blog-area .blog-inner {
  border-bottom: 1px solid #e1e1e1;
  padding-top: 20px;
  position: relative;
}
.blog-area .blog-inner:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.blog-area .blog-inner:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 100px;
  top: 0;
  background-color: #e1e1e1;
}
.blog-area .blog-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-area .blog-inner ul li {
  list-style-type: none;
  display: inline-block;
  flex: 0 0 20%;
  max-width: 20%;
}
.blog-area .blog-inner ul li:last-child {
  flex: 0 0 80%;
  max-width: 80%;
  margin-top: 5px;
}
.blog-area .blog-inner ul li h4 {
  font-size: 40px;
  max-width: 85px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 40px;
  margin-bottom: 0;
}
.blog-area .blog-inner ul li h4 span {
  font-weight: 400;
  font-size: 22px;
  color: #565969;
}
.blog-area .blog-inner ul li .sub-link {
  display: block;
  color: #3f5175;
  margin-bottom: 8px;
}
.blog-area .blog-inner ul li .sub-link:hover {
  color: #f26522;
}
.blog-area .blog-inner ul li h3 {
  margin-bottom: 0;
  font-size: 20px;
}
.blog-area .blog-inner ul li h3 a {
  color: #00245a;
}
.blog-area .blog-inner ul li h3 a:hover {
  color: #f26522;
}

/*-- Footer --*/
footer {
  background-color: #00245a;
  background-image: url("../img/footer-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer-item {
  margin-bottom: 30px;
}
.footer-item h3 {
  margin-bottom: 25px;
  color: #fff;
  font-size: 22px;
}
.footer-item .footer-logo .logo {
  display: block;
  margin-bottom: 30px;
}
.footer-item .footer-logo p {
  margin-bottom: 30px;
  color: #cbe0ff;
}
.footer-item .footer-logo span {
  display: block;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.footer-item .footer-logo ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 12px;
}
.footer-item .footer-logo ul li:last-child {
  margin-right: 0;
}
.footer-item .footer-logo ul li a {
  display: block;
  color: #fff;
}
.footer-item .footer-logo ul li a:hover {
  color: #f26522;
}
.footer-item .footer-links ul li {
  list-style-type: none;
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.footer-item .footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-item .footer-links ul li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 9px;
  left: 0;
  background-color: #f26522;
}
.footer-item .footer-links ul li a {
  display: block;
  color: #cadfff;
}

.footer-item .footer-links ul li a i {
  margin-right: 8px;
  color: #f26522;
  font-size: 14px;
}
.footer-item .footer-links ul li a:hover {
  color: #fff;
  letter-spacing: 1px;
}
.footer-item .footer-company ul li {
  list-style-type: none;
  display: block;
  color: #cadfff;
  margin-bottom: 12px;
}
.footer-item .footer-company ul li:last-child {
  margin-bottom: 0;
}
.footer-item .footer-company ul li span {
  font-weight: 500;
  display: inline-block;
  color: #fff;
}

.footer-item .footer-company ul li span i {
  margin-right: 8px;
  color: #f26522;
  font-size: 14px;
}
.footer-item .footer-company ul li a {
  color: #cadfff;
  display: inline-block;
}
.footer-item .footer-company ul li a:hover {
  color: #fff;
  letter-spacing: 1px;
}

/*-- Copyright --*/
.copyright-area {
  margin-top: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #1b437f;
}
.copyright-area .newsletter-form {
  position: relative;
}
.copyright-area .newsletter-form .form-control {
  height: 50px;
  padding-left: 20px;
  font-size: 16px;
  border-radius: 0;
  border: 0;
}
.copyright-area .newsletter-form .form-control:focus {
  border: 0;
  box-shadow: none;
}
.copyright-area .newsletter-form ::-moz-placeholder {
  color: #7e76a6;
}
.copyright-area .newsletter-form ::placeholder {
  color: #7e76a6;
}
.copyright-area .newsletter-form .common-btn {
  border: 0;
  border-radius: 0;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  height: 50px;
}
.copyright-area .copyright-item {
  text-align: right;
}
.copyright-area .copyright-item p {
  margin-bottom: 0;
  color: #cadfff;
}
.copyright-area .copyright-item p a {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.copyright-area .copyright-item p a:hover {
  color: #f26522;
  border-bottom: 1px solid #f26522;
}

/*----- End Home Demo One CSS -----*/
/*----- Home Demo Two CSS -----*/
/*-- Header Top --*/
.header-top-area.two {
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.header-top-area.two .left p {
  color: #00245a;
}
.header-top-area.two .left p a {
  color: #00245a;
}
.header-top-area.two .left p a:hover {
  color: #f26522;
}
.header-top-area.two .left ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
}
.header-top-area.two .left ul li:last-child {
  margin-right: 0;
}
.header-top-area.two .right .contact-info li a {
  color: #00245a;
}
.header-top-area.two .right .social-info li a {
  color: #3B5998;
}
.header-top-area.two .right .social-info li a:hover {
  color: unset;
  transform: rotateY(360deg);
}
.header-top-area.two .right .social-info li:nth-child(2) a {
  color: #00ACEE;
}
.header-top-area.two .right .social-info li:nth-child(3) a {
  color: #E1306C;
}
.header-top-area.two .right .social-info li:nth-child(4) a {
  color: #E60023;
}
.header-top-area.two .right .social-info li:nth-child(5) a {
  color: #FF0000;
}

/*-- Navbar --*/
.side-nav.two ul li:nth-child(1) {
  border-right: 0;
  padding-right: 25px;
  top: -15px;
}
.side-nav.two ul li:nth-child(2) {
  padding-left: 0;
  padding-right: 30px;
  top: -12px;
}
.side-nav.two ul li .search-icon {
  font-size: 28px;
  color: #00245a;
  background-color: unset;
  height: 30px;
  padding-left: 0;
  padding-right: 0;
}
.side-nav.two ul li .search-icon i {
  line-height: 30px;
}
.side-nav.two ul li .talk-item {
  height: 75px;
  position: relative;
  background-color: #00245a;
  padding: 15px 15px 10px 75px;
  transition: 0.5s all ease;
}
.side-nav.two ul li .talk-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 12px;
  left: 0;
  bottom: -10px;
  background-color: #00245a;
}
.side-nav.two ul li .talk-item:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: -20px;
  border-left: 20px solid transparent;
  border-top: 10px solid #00245a;
  transition: 0.5s all ease;
}
.side-nav.two ul li .talk-item i {
  display: inline-block;
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 21px;
  left: 25px;
  transition: 0.5s all ease;
}
.side-nav.two ul li .talk-item i.two {
  font-size: 50px;
  top: 6px;
  left: 15px;
  opacity: 0.1;
}
.side-nav.two ul li .talk-item span {
  display: block;
  color: #fff;
  margin-bottom: 3px;
}
.side-nav.two ul li .talk-item a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.side-nav.two ul li .talk-item a:hover {
  color: #f26522;
}

.main-nav.two.menu-shrink .side-nav.two ul li .icon-search {
  height: 30px;
}
.main-nav.two.menu-shrink .side-nav.two ul li .icon-search i {
  line-height: 30px;
}
.main-nav.two.menu-shrink .side-nav.two ul li .icon-close {
  height: 30px;
}
.main-nav.two.menu-shrink .side-nav.two ul li .icon-close i {
  line-height: 30px;
}
.main-nav.two.menu-shrink .side-nav.two ul li .talk-item {
  height: 70px;
  padding: 10px 15px 10px 75px;
}
.main-nav.two.menu-shrink .side-nav.two ul li .talk-item i {
  top: 18px;
}
.main-nav.two.menu-shrink .side-nav.two ul li .talk-item i.two {
  top: 2px;
}

/*-- Banner --*/
.banner-area.two {
  background-image: url("../img/banner/banner-main4.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 950px;
}
.banner-area.two:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  opacity: 0.9;
}
.banner-area.two .banner-shape img {
  position: absolute;
}
.banner-area.two .banner-shape img:nth-child(1) {
  bottom: 0;
  right: 80px;
  max-width: 500px;
}
.banner-area.two .banner-shape img:nth-child(2) {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.banner-area.two .banner-item:before {
  display: none;
}
.banner-area.two .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area.two .banner-content {
  background-color: #fff;
  border-left: 5px solid #f26522;
  padding: 75px 75px 75px;
  padding: 45px 45px 45px;
  max-width: 765px;
  margin-top: 255px;
}
.banner-area.two .banner-content .sub-text {
  color: #00245a;
  padding-left: 25px;
}
.banner-area.two .banner-content .sub-text:before {
  width: 20px;
  height: 31px;
  top: -4px;
  left: 0;
  border: 2px solid #f26522;
  right: unset;
}
.banner-area.two .banner-content .sub-text:after {
  width: 5px;
  height: 21px;
  top: 1px;
  left: 17px;
  background-color: #fff;
  right: unset;
}
.banner-area.two .banner-content h1 {
  color: #00245a;
  max-width: 100%;
  font-size: 70px;
}
.banner-area.two .banner-content p {
  color: #565969;
  max-width: 100%;
}
.banner-area.two .banner-btn-area .banner-video-btn {
  font-size: 20px;
  border-bottom: 1px solid #00245a;
  margin-left: 15px;
  color: #00245a;
  display: inline-block;
}
.banner-area.two .banner-btn-area .banner-video-btn:hover {
  color: #f26522;
  border-bottom: 1px solid #f26522;
}
.banner-area.two .owl-theme .owl-nav.disabled + .owl-dots {
  right: 0;
}
.banner-area.two .owl-theme .owl-dots .owl-dot.active span {
  border: 1px solid #f26522;
  background: transparent;
}
.banner-area.two .owl-theme .owl-dots .owl-dot.active span:before {
  background-color: #f26522;
}
.banner-area.two .owl-theme .owl-dots .owl-dot span {
  margin: 5px 7px;
  background: #f26522;
}

/*-- Feature --*/
.feature-area.two {
  margin-top: 0;
}
.feature-area.two .feature-item {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3411764706);
  transition: 0.5s all ease;
  padding: 35px 35px 30px;
  z-index: 1;
  margin-bottom: 30px;
}
.feature-area.two .feature-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background-color: #00245a;
  transition: 0.5s all ease;
  z-index: -1;
}
.feature-area.two .feature-item:hover {
  transform: translate(0, -10px);
}
.feature-area.two .feature-item:hover:before {
  height: 100%;
}
.feature-area.two .feature-item:hover .left i {
  color: #fff;
}
.feature-area.two .feature-item:hover .right h3 a {
  color: #fff;
}
.feature-area.two .feature-item:hover .right p {
  color: #fff;
}
.feature-area.two .feature-item .left {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 20px;
}
.feature-area.two .feature-item .left i {
  color: #f26522;
  font-size: 55px;
  transition: 0.5s all ease;
}
.feature-area.two .feature-item .right {
  padding-left: 0;
}
.feature-area.two .feature-item .right h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.feature-area.two .feature-item .right h3 a {
  color: #00245a;
}
.feature-area.two .feature-item .right h3 a:hover {
  color: #f26522;
}
.feature-area.two .feature-item .right p {
  color: #565969;
  margin-bottom: 0;
  transition: 0.5s all ease;
}

/*-- About --*/
.section-title.two .sub-title {
  padding-left: 65px;
}
.section-title.two .sub-title:before {
  width: 55px;
  height: 1px;
  top: 12px;
  right: unset;
  left: 0;
  background-color: #f26522;
}
.section-title.two .sub-title:after {
  display: none;
}

.about-area.two {
  padding-bottom: 100px;
}
.about-area.two .about-img.two {
  margin-bottom: 30px;
}
.about-area.two .about-content {
  max-width: 600px;
  margin-left: 0;
  padding-right: 0;
}
.about-area.two .about-content p {
  margin-bottom: 10px;
}
.about-area.two .about-content .common-btn {
  margin-right: 30px;
}
.about-area.two .about-content ul li {
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 0;
  margin-bottom: 10px;
}
.about-area.two .about-content ul li:last-child {
  flex: 0 0 55%;
  max-width: 55%;
}
.about-area.two .about-content ul li:hover i {
  color: #fff;
  background-color: #f26522;
}
.about-area.two .about-content ul li i {
  display: inline-block;
  position: relative;
  top: 3px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  color: #f26522;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.4509803922);
  margin-right: 5px;
  font-size: 22px;
  transition: 0.5s all ease;
}
.about-area.two .about-content .signature2 {
  display: none;
}

/*-- Services --*/
.service-area.two .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  margin-bottom: -8px;
}
.service-area.two .owl-theme .owl-dots .owl-dot span {
  background: #f26522;
}
.service-area.two .owl-theme .owl-dots .owl-dot.active span {
  background: transparent;
  border: 1px solid #f26522;
  padding: 10px;
  position: relative;
  top: 4px;
}
.service-area.two .owl-theme .owl-dots .owl-dot.active span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-color: #f26522;
  margin-left: auto;
  margin-right: auto;
}
.service-area.two .section-title.two {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.service-area.two .section-title.two h2 {
  margin-bottom: 10px;
}
.service-area.two .section-title.two p {
  margin-bottom: 0;
  color: #fff;
}

.service-item-two {
  margin-bottom: 30px;
  background-color: #fff;
}
.service-item-two:hover .top i {
  transform: rotateY(360deg);
}
.service-item-two .top {
  position: relative;
}
.service-item-two .top a {
  display: block;
  width: 100%;
}
.service-item-two .top i {
  display: inline-block;
  color: #fff;
  background-color: #f26522;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 25px;
  text-align: center;
  position: absolute;
  right: 30px;
  bottom: -30px;
  transition: 0.5s all ease;
}
.service-item-two .bottom {
  padding: 30px 30px 30px;
}
.service-item-two .bottom h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.service-item-two .bottom h3 a {
  color: #00245a;
}
.service-item-two .bottom h3 a:hover {
  color: #f26522;
}
.service-item-two .bottom p {
  margin-bottom: 18px;
}
.service-item-two .bottom .common-btn {
  margin-bottom: 0;
  height: 50px;
  width: 100%;
  display: block;
  padding: 0 25px 0;
  line-height: 50px;
  background-color: #00245a;
}
.service-item-two .bottom .common-btn i {
  font-size: 25px;
  margin-right: 0;
  position: absolute;
  top: 12px;
  right: 25px;
}
.service-item-two .bottom .common-btn:before {
  background-color: #f26522;
}
.service-item-two .bottom .common-btn:hover {
  color: #fff;
}

.counter-area.two {
  background-color: #f6f6f6;
}

/*-- Pricing --*/
.pricing-area .section-title.two {
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.pricing-area .section-title.two h2 {
  margin-bottom: 10px;
}
.pricing-area .section-title.two p {
  margin-bottom: 0;
  color: #565969;
}

.pricing-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3215686275);
  text-align: center;
  transition: 0.5s all ease;
}
.pricing-item:hover {
  transform: translate(0, -10px);
}
.pricing-item:hover .middle {
  background-color: #f26522;
}
.pricing-item:hover .middle h3 {
  color: #fff;
}
.pricing-item.two .middle {
  background-color: #f26522;
}
.pricing-item.two .middle h3 {
  color: #fff;
}
.pricing-item .top span {
  display: block;
  font-size: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: 0.5s all ease;
}
.pricing-item .top span i {
  font-size: 26px;
  position: relative;
  top: 1px;
  color: #00245a;
  transition: 0.5s all ease;
}
.pricing-item .middle {
  background-color: #f9ded2;
  padding-top: 16px;
  padding-bottom: 20px;
  transition: 0.5s all ease;
}
.pricing-item .middle h3 {
  margin-bottom: 0;
  font-size: 50px;
  color: #f26522;
  transition: 0.5s all ease;
}
.pricing-item .middle h3 span {
  font-size: 25px;
}
.pricing-item .middle h3 span:nth-child(1) {
  margin-right: -5px;
}
.pricing-item .end {
  padding: 30px 35px 30px;
}
.pricing-item .end ul {
  margin-bottom: 30px;
}
.pricing-item .end ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
  transition: 0.5s all ease;
}
.pricing-item .end ul li:hover i.two {
  background-color: #00245a;
}
.pricing-item .end ul li:last-child {
  margin-bottom: 0;
}
.pricing-item .end ul li i {
  display: inline-block;
  color: #f26522;
  margin-right: 3px;
  font-size: 20px;
  position: relative;
  top: 4px;
  transition: 0.5s all ease;
}
.pricing-item .end ul li i.two {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #b6b6b6;
  margin-right: 0;
  font-size: 12px;
  margin-left: 3px;
  position: relative;
  top: -1px;
  transition: 0.5s all ease;
}

/*-- Skills --*/
.skills-area.two {
  background-image: url("../img/skills-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.skills-area.two .skills-content {
  margin-top: 0;
  margin-left: auto;
}
.skills-area.two .skills-content ul {
  display: flex;
  flex-wrap: wrap;
}
.skills-area.two .skills-content ul li {
  flex: 0 0 50%;
  max-width: 50%;
}
.skills-area.two .skills-content ul li p {
  max-width: 100%;
}

/*-- Projects --*/
.projects-area.two {
  background-color: #fff;
}
.projects-area.two .section-title.two {
  text-align: left;
}
.projects-area.two .project-right-btn {
  text-align: right;
}
.projects-area.two .projects-item:before {
  display: none;
}
.projects-area.two .projects-item .bottom {
  background-color: #f26522;
  padding: 15px 25px 15px;
}
.projects-area.two .projects-item .bottom h3 a:hover {
  color: #00245a;
}

/*-- Team --*/
.team-area.two {
  background-color: #f6f6f6;
}
.team-area.two .owl-theme .owl-dots .owl-dot span {
  background: #f26522;
}
.team-area.two .owl-theme .owl-dots .owl-dot.active span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-color: #f26522;
  margin-left: auto;
  margin-right: auto;
}
.team-area.two .owl-theme .owl-dots .owl-dot.active span {
  background: transparent;
  border: 1px solid #f26522;
  padding: 10px;
  position: relative;
  top: 5px;
}
.team-area.two .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  margin-bottom: -8px;
}

/*-- Subscribe --*/
.subscribe-area .subscribe-item {
  background-image: url("../img/subscribe-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.subscribe-area .subscribe-item .newsletter-form {
  position: relative;
  max-width: 715px;
  margin-left: auto;
  background-color: #fff;
  padding: 50px 50px 50px;
  margin-right: 80px;
}
.subscribe-area .subscribe-item .newsletter-form .section-title.two {
  margin-bottom: 30px;
}
.subscribe-area .subscribe-item .newsletter-form .section-title.two h2 {
  font-size: 35px;
  margin-bottom: 5px;
}
.subscribe-area .subscribe-item .newsletter-form .section-title.two p {
  margin-bottom: 0;
}
.subscribe-area .subscribe-item .newsletter-form .form-control {
  height: 50px;
  border: 1px solid #f3f3f3;
  background-color: #f3f3f3;
  border-radius: 0;
  padding-left: 20px;
  font-size: 16px;
  transition: 0.5s all ease;
  margin-bottom: 20px;
}
.subscribe-area .subscribe-item .newsletter-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.subscribe-area .subscribe-item .newsletter-form ::-moz-placeholder {
  color: #95969b;
}
.subscribe-area .subscribe-item .newsletter-form ::placeholder {
  color: #95969b;
}
.subscribe-area .subscribe-item .newsletter-form .common-btn {
  width: 100%;
  display: block;
  height: 50px;
  opacity: 1;
  transition: 0.5s all ease;
  border: 0;
  font-weight: 500;
  padding: 0;
  border-radius: 0;
}

.validation-danger {
  margin-top: 10px;
  color: #dc3545;
}

/*-- Blog --*/
.blog-area.two .section-title.two {
  text-align: left;
}
.blog-area.two .blog-right-btn {
  text-align: right;
}
.blog-area.two .blog-inner {
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 30px;
}
.blog-area.two .blog-inner:last-child {
  margin-bottom: 0;
}
.blog-area.two .blog-inner:before {
  display: none;
}
.blog-area.two .blog-inner ul li {
  flex: 0 0 15%;
  max-width: 15%;
}
.blog-area.two .blog-inner ul li .blog-thumb-img {
  display: inline-block;
}
.blog-area.two .blog-inner ul li .blog-thumb-img img {
  border-radius: 50%;
}
.blog-area.two .blog-inner ul li:last-child {
  margin-top: 0;
  flex: 0 0 80%;
  max-width: 80%;
  margin-left: 20px;
}
.blog-area.two .blog-inner ul li span {
  display: block;
}
.blog-area.two .blog-inner ul li span .sub-link {
  display: inline-block;
  position: relative;
  padding-left: 11px;
}
.blog-area.two .blog-inner ul li span .sub-link:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "/";
  color: #565969;
}

.copyright-area.two {
  text-align: center;
}
.copyright-area.two .copyright-item {
  text-align: center;
}

/*----- End Home Demo Two CSS -----*/
/*----- Home Demo Three CSS -----*/
/*-- Header Top --*/
.header-top-area-three {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 999999;
  background-color: #fff;
}
.header-top-area-three .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.header-top-area-three .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #565969;
  cursor: pointer;
  transition: 0.5s all ease;
}
.header-top-area-three .dropdown-toggle::after {
  display: none;
}
.header-top-area-three .dropdown-toggle span {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  top: 0;
}
.header-top-area-three .dropdown-toggle span i {
  position: relative;
  font-size: 18px;
  top: 2px;
  right: 2px;
  transition: 0.5s all ease;
  color: #565969;
}
.header-top-area-three .dropdown-toggle:hover {
  color: #f26522;
}
.header-top-area-three .dropdown-toggle:hover span i {
  color: #f26522;
}
.header-top-area-three .dropdown-menu {
  padding: 15px;
  border: none;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 20px;
  opacity: 0;
  visibility: visible;
  transition: 0.5s all ease;
  transform: scaleX(0);
}
.header-top-area-three .dropdown-menu li {
  display: block !important;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all ease;
}
.header-top-area-three .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header-top-area-three .dropdown-menu li:nth-child(1) {
  border-right: none;
  padding-right: 0;
  position: relative;
  top: -5px;
}
.header-top-area-three .dropdown-menu li:nth-child(2) {
  padding-left: 0;
  padding-right: 0;
}
.header-top-area-three .dropdown-menu li:hover {
  color: #f26522;
}
.header-top-area-three .dropdown-menu .dropdown-item {
  padding: 0;
  color: #565969;
  margin-bottom: 15px;
  font-weight: 600;
  display: block !important;
}
.header-top-area-three .dropdown-menu .dropdown-item::before {
  display: none;
}
.header-top-area-three .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.header-top-area-three .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  transition: 0.5s all ease;
}
.header-top-area-three .dropdown-menu .dropdown-item span:hover {
  color: #f26522;
}
.header-top-area-three .dropdown-menu .dropdown-item:hover, .header-top-area-three .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
  color: #f26522;
}
.header-top-area-three .dropdown-menu .dropdown-item:active, .header-top-area-three .dropdown-menu .dropdown-item.active {
  color: #f26522;
  background-color: transparent;
}
.header-top-area-three .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.header-top-area-three .right {
  text-align: right;
}
.header-top-area-three .right ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-right: 10px;
  text-align: left;
}
.header-top-area-three .right ul li:last-child {
  margin-right: 0;
}
.header-top-area-three .right ul li i {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 30px;
}
.header-top-area-three .right ul li i.two {
  font-size: 50px;
  opacity: 0.1;
  top: 2px;
  left: -10px;
}
.header-top-area-three .right ul li span {
  display: block;
  color: #f26522;
  margin-bottom: 1px;
  font-size: 16px;
}
.header-top-area-three .right ul li a {
  display: block;
  color: #00245a;
  font-size: 18px;
  font-weight: 500;
}
.header-top-area-three .right ul li a:hover {
  color: #f26522;
}

/*-- Navbar --*/
.navbar-area.three .main-nav {
  background-color: #00245a;
}
.navbar-area.three .main-nav nav .navbar-nav .nav-item a {
  color: #fff;
}
.navbar-area.three .main-nav nav .navbar-nav .nav-item a:hover, .navbar-area.three .main-nav nav .navbar-nav .nav-item a:focus, .navbar-area.three .main-nav nav .navbar-nav .nav-item a.active {
  color: #f26522;
}
.navbar-area.three .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 16px;
  color: #00245a;
}
.navbar-area.three .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-area.three .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-area.three .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #f26522;
}
.navbar-area.three .main-nav.menu-shrink .side-nav.three ul li .quote-btn a {
  height: 70px;
}

.side-nav.three ul li .cart-item {
  color: #fff;
}
.side-nav.three ul li .search-icon {
  color: #fff;
}
.side-nav.three ul li .search-icon.two {
  color: #00245a;
}
.side-nav.three ul li .quote-btn a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  height: 75px;
  background-color: #f26522;
  line-height: 75px;
  padding-left: 25px;
  padding-right: 25px;
}
.side-nav.three ul li .quote-btn a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 3px;
}
.side-nav.three ul li .quote-btn a:hover {
  color: #00245a;
  background-color: #fff;
}
.side-nav.three ul li:nth-child(1) {
  top: 2px;
}
.side-nav.three ul li:nth-child(2) {
  top: 6px;
}

/*-- Banner --*/
.banner-img-four {
  background-image: url("../img/banner/banner-main6.jpg");
}

.banner-img-five {
  background-image: url("../img/banner/banner-main7.jpg");
}

.banner-area.three {
  overflow: hidden;
  position: relative;
}
.banner-area.three .banner-shape img {
  position: absolute;
}
.banner-area.three .banner-shape img:nth-child(1) {
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.banner-area.three .banner-content {
  margin-top: -55px;
}
.banner-area.three .banner-content .sub-text {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 6px;
  border-bottom: 1px solid #fff;
}
.banner-area.three .banner-content .sub-text:before {
  display: none;
}
.banner-area.three .banner-content .sub-text:after {
  display: none;
}
.banner-area.three .banner-content h1 {
  max-width: 990px;
}

/*-- Help --*/
.help-area {
  max-width: 1215px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 50px 50px;
  position: relative;
  z-index: 5;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  margin-top: -100px;
  background-color: #fff;
}
.help-area .help-title {
  color: #f26522;
  display: block;
  margin-bottom: 5px;
}
.help-area h2 {
  color: #00245a;
  margin-bottom: 30px;
  font-size: 35px;
}
.help-area .help-item .form-group {
  position: relative;
  margin-bottom: 15px;
}
.help-area .help-item .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 18px;
}
.help-area .help-item .form-group label.icon {
  top: 78px;
}
.help-area .help-item .form-group .form-check-label {
  position: absolute;
  top: 2px;
  left: 25px;
  font-size: 17px;
}
.help-area .help-item .form-group .form-check-label a {
  color: #f26522;
  transition: 0.7s;
}
.help-area .help-item .form-group .form-check-label a:hover {
  color: #94be5d;
}
.help-area .help-item .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background-color: #f9f9f9;
  padding-left: 40px;
  font-size: 16px;
  transition: 0.5s all ease;
}
.help-area .help-item .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.help-area .help-item .form-group .nice-select {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background-color: #f9f9f9;
  font-size: 16px;
  z-index: 1;
  line-height: 50px;
}
.help-area .help-item .form-group .nice-select .list {
  display: block;
  width: 100%;
}
.help-area .help-item .form-group textarea {
  height: auto !important;
  padding-top: 12px;
}
.help-area .help-item .form-check {
  margin-bottom: 25px;
  font-size: 16px;
}
.help-area .help-item .form-check a {
  display: inline-block;
  color: #f26522;
  font-weight: 500;
}
.help-area .help-item .form-check a:hover {
  color: #00245a;
}
.help-area .help-item .common-btn {
  border: 0;
  transition: 0.5s all ease;
  width: 100%;
  display: block;
  padding: 0;
  height: 50px;
  line-height: 50px;
  font-weight: 500;
}
.help-area .help-item .common-btn:before {
  border-radius: 5px;
}
.help-area .help-item .gridCheck-error {
  margin-top: 20px;
  position: relative;
  top: 20px;
}
.help-area .help-img {
  background-image: url("../img/help-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
}
.help-area .help-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.5725868311) 20%, rgba(255, 255, 255, 0) 59%);
  transition: 0.5s all ease;
}
.help-area .help-img .help-content {
  position: absolute;
  left: 35px;
  bottom: 60px;
  border-left: 2px solid #f26522;
  padding-left: 10px;
  transition: 0.5s all ease;
  z-index: 1;
}
.help-area .help-img .help-content span {
  display: block;
  color: #fff;
  margin-bottom: 3px;
  transition: 0.5s all ease;
}
.help-area .help-img .help-content h3 {
  font-size: 18px;
  margin-bottom: 0;
  transition: 0.5s all ease;
  color: #fff;
}
.help-area .help-img ul {
  position: absolute;
  bottom: 20px;
  left: 31px;
  z-index: 1;
}
.help-area .help-img ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.help-area .help-img ul li:last-child {
  margin-right: 0;
}
.help-area .help-img ul li a {
  display: block;
  color: #fff;
  font-size: 17px;
}
.help-area .help-img ul li a:hover {
  color: #f26522;
}

.video-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}
.video-wrap a {
  z-index: 10;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  font-size: 60px;
  text-align: center;
  color: #f26522;
}
.video-wrap a i {
  line-height: 100px;
}
.video-wrap a:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-wrap a:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s all ease;
}
.video-wrap a:hover {
  color: #fff;
}
.video-wrap a:hover:before {
  background-color: #00245a;
}
.video-wrap a:hover:after {
  background-color: #00245a;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*-- About --*/
.about-area.three .about-content .about-span {
  margin-bottom: 30px;
}
.about-area.three .about-content ul {
  margin-bottom: 40px;
}
.about-area.three .about-content ul li {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}
.about-area.three .about-content ul li:hover i {
  color: #f26522;
  background-color: unset;
}
.about-area.three .about-content ul li:last-child {
  margin-bottom: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
.about-area.three .about-content ul li i {
  position: absolute;
  top: 10px;
  left: 0;
  width: unset;
  height: unset;
  text-align: unset;
  line-height: 65px;
  border-radius: unset;
  color: #f26522;
  box-shadow: unset;
  margin-right: 0;
  font-size: 65px;
}
.about-area.three .about-content ul li h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.about-area.three .about-content ul li p {
  margin-bottom: 0;
}

/*-- Counter --*/
.counter-area.three {
  background-color: #00245a;
  background-image: url("../img/counter-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.counter-area.three .counter-item p {
  color: #fff;
}

/*-- Services --*/
.service-area.three {
  background-color: #fff;
}
.service-area.three .section-title.two {
  text-align: center;
  margin-bottom: 50px;
}
.service-area.three .section-title.two .sub-title {
  color: #00245a;
}
.service-area.three .section-title.two h2 {
  color: #00245a;
  margin-bottom: 5px;
}
.service-area.three .section-title.two p {
  margin-bottom: 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.service-area.three .service-item {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3215686275);
  padding: 30px 30px 30px;
  margin-bottom: 30px;
}
.service-area.three .service-item:hover:before {
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.7916879547) 20%, rgba(0, 36, 90, 0.3871935727) 59%);
  opacity: 1;
}
.service-area.three .service-item:hover .service-icon {
  color: #fff;
}
.service-area.three .service-item.six {
  background-image: url("../img/services/services10.jpg");
}
.service-area.three .service-item.seven {
  background-image: url("../img/services/services11.jpg");
}
.service-area.three .service-item.eight {
  background-image: url("../img/services/services12.jpg");
}
.service-area.three .service-item.nine {
  background-image: url("../img/services/services13.jpg");
}
.service-area.three .service-item.ten {
  background-image: url("../img/services/services14.jpg");
}
.service-area.three .service-item.eleven {
  background-image: url("../img/services/services15.jpg");
}
.service-area.three .service-item .service-icon {
  width: unset;
  height: unset;
  line-height: 40px;
  background-color: unset;
  text-align: unset;
  border-radius: unset;
  color: #f26522;
  font-size: 40px;
  display: inline-block;
  box-shadow: unset;
  position: unset;
  right: unset;
  bottom: unset;
  margin-bottom: 16px;
}
.service-area.three .service-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-area.three .service-item p {
  margin-bottom: 22px;
}
.service-area.three .service-item .service-btn {
  opacity: 1;
  visibility: visible;
  color: #fff;
  width: 60px;
  height: 40px;
  background-color: #f26522;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  position: relative;
  left: unset;
  bottom: unset;
}
.service-area.three .service-item .service-btn:hover {
  background-color: #00245a;
}
.service-area.three .service-item .service-btn i {
  line-height: 40px;
}

/*-- Skills --*/
.skills-area.three {
  background-color: #f26522;
}
.skills-area.three .skills-img {
  background-image: url("../img/skills-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.skills-area.three .skills-img img {
  display: none;
}
.skills-area.three .skills-content {
  margin-top: 0;
  margin-left: 0;
}

/*-- Pricing --*/
.pricing-area.three .section-title h2 {
  margin-bottom: 0;
}
.pricing-area.three .pricing-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.pricing-area.three .pricing-item.one {
  background-image: url("../img/pricing-bg.jpg");
}
.pricing-area.three .pricing-item.two {
  background-image: url("../img/pricing-bg2.jpg");
}
.pricing-area.three .pricing-item.three {
  background-image: url("../img/pricing-bg3.jpg");
}
.pricing-area.three .pricing-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: -1;
  transition: 0.5s all ease;
}
.pricing-area.three .pricing-item:hover:before {
  background-color: #00245a;
  opacity: 0.8;
}
.pricing-area.three .pricing-item:hover .top span {
  color: #fff;
}
.pricing-area.three .pricing-item:hover .top span i {
  color: #f26522;
}
.pricing-area.three .pricing-item:hover .end ul li {
  color: #fff;
}
.pricing-area.three .pricing-item:hover .end ul li:hover i.two {
  color: #fff;
  background-color: #f26522;
}
.pricing-area.three .pricing-item:hover .end ul li i.two {
  color: #565969;
  background-color: #fff;
}

/*-- Projects --*/
.projects-area.three {
  background-color: #f6f6f6;
}
.projects-area.three .projects-item .bottom {
  left: 0;
  right: 0;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.projects-area.three .owl-theme .owl-dots .owl-dot span {
  background: #f26522;
}
.projects-area.three .owl-theme .owl-dots .owl-dot.active span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-color: #f26522;
  margin-left: auto;
  margin-right: auto;
}
.projects-area.three .owl-theme .owl-dots .owl-dot.active span {
  background: transparent;
  border: 1px solid #f26522;
  padding: 10px;
  position: relative;
  top: 5px;
}
.projects-area.three .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  margin-bottom: -8px;
}

/*-- Testimonials --*/
.testimonials-area.three {
  background-image: url("../img/testimonials-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.testimonials-area.three:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00245a;
  opacity: 0.3;
}
.testimonials-area.three .testimonials-item {
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin: 0;
  max-width: 735px;
  margin-left: auto;
  box-shadow: none;
}
.testimonials-area.three .testimonials-item:hover {
  transform: unset;
}
.testimonials-area.three .testimonials-item ul li {
  flex: 0 0 100%;
  max-width: 100%;
}
.testimonials-area.three .testimonials-item ul li:last-child {
  text-align: left;
}
.testimonials-area.three .testimonials-item ul li i {
  display: none;
}
.testimonials-area.three .owl-theme .owl-nav.disabled + .owl-dots {
  max-width: 40px;
  position: absolute;
  bottom: 20px;
  right: 15px;
}

/*-- Blog --*/
.blog-area-three .blog-right-btn {
  text-align: right;
}
.blog-area-three .blog-item-three {
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  transition: 0.5s all ease;
}
.blog-area-three .blog-item-three:hover {
  transform: translate(0, -10px);
}
.blog-area-three .blog-item-three:hover .top span {
  border-radius: 0;
}
.blog-area-three .blog-item-three .top {
  position: relative;
}
.blog-area-three .blog-item-three .top span {
  display: inline-block;
  color: #fff;
  background-color: #f26522;
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 25px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0 0 30px 0;
  transition: 0.5s all ease;
}
.blog-area-three .blog-item-three .top a {
  display: block;
}
.blog-area-three .blog-item-three .top a img {
  width: 100%;
}
.blog-area-three .blog-item-three .bottom {
  padding: 28px 30px 30px;
}
.blog-area-three .blog-item-three .bottom ul {
  margin-bottom: 12px;
}
.blog-area-three .blog-item-three .bottom ul li {
  list-style-type: none;
  display: inline-block;
  color: #565969;
  margin-right: 15px;
}
.blog-area-three .blog-item-three .bottom ul li:last-child {
  margin-right: 0;
}
.blog-area-three .blog-item-three .bottom ul li i {
  display: inline-block;
  color: #f26522;
  margin-right: 3px;
  font-size: 19px;
  position: relative;
  top: 3px;
}
.blog-area-three .blog-item-three .bottom ul li a {
  display: inline-block;
  color: #565969;
}
.blog-area-three .blog-item-three .bottom ul li a:hover {
  color: #f26522;
}
.blog-area-three .blog-item-three .bottom h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.blog-area-three .blog-item-three .bottom h3 a {
  display: inline-block;
  color: #00245a;
}
.blog-area-three .blog-item-three .bottom h3 a:hover {
  color: #f26522;
}
.blog-area-three .blog-item-three .bottom .blog-btn {
  display: inline-block;
  color: #f26522;
}
.blog-area-three .blog-item-three .bottom .blog-btn i {
  font-size: 20px;
  position: relative;
  top: 4px;
}
.blog-area-three .blog-item-three .bottom .blog-btn:hover {
  color: #00245a;
}

/*-- Newsletter --*/
.newsletter-area {
  position: relative;
  padding: 80px 0;
  margin: 0;
}
.newsletter-area .container {
  max-width: 1215px;
  background-color: #f26522;
  padding: 50px 50px 50px;
}
.newsletter-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-color: #00245a;
  z-index: -1;
}
.newsletter-area .newsletter-item span {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}
.newsletter-area .newsletter-item h2 {
  font-size: 35px;
  margin-bottom: 0;
  color: #fff;
}
.newsletter-area .newsletter-form {
  position: relative;
}
.newsletter-area .newsletter-form .form-control {
  height: 50px;
  border: 0;
  border-radius: 0;
  padding-left: 20px;
  font-size: 16px;
}
.newsletter-area .newsletter-form .form-control:focus {
  box-shadow: none;
  border: 0;
}
.newsletter-area .newsletter-form .common-btn {
  position: absolute;
  border: 0;
  right: 0;
  top: 0;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  transition: 0.5s all ease;
  opacity: 1;
  border-radius: 0;
  background-color: #00245a;
}
.newsletter-area .newsletter-form .common-btn:before {
  background-color: #ddd;
}
.newsletter-area .newsletter-form .common-btn:hover {
  color: #f26522;
}
.newsletter-area .validation-danger {
  color: #fff;
}

/*----- End Home Demo Three CSS -----*/
/*----- About CSS -----*/
.page-title-area {
  height: 420px;
  position: relative;
  background-image: url("../img/page-title-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-title-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 36, 90, 0.7130362693) 20%, rgba(0, 36, 90, 0.0529239097) 59%);
}
.page-title-area .title-content {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  border-left: 2px solid #f26522;
  margin-top: 80px;
}
.page-title-area .title-content h2 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  top: -4px;
}
.page-title-area .title-content ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
}
.page-title-area .title-content ul li:last-child {
  margin-right: 0;
}
.page-title-area .title-content ul li i {
  display: inline-block;
  font-size: 17px;
  position: relative;
  top: 1px;
  color: #fff;
  margin-right: 3px;
}
.page-title-area .title-content ul li a {
  display: inline-block;
  color: #fff;
}
.page-title-area .title-content ul li a:hover {
  color: #f26522;
}
.page-title-area .title-content ul li span {
  display: inline-block;
  color: #fff;
}

/*----- End About CSS -----*/
/*----- Services Style One CSS -----*/
.service-area.four {
  background-color: #fff;
}
.service-area.four .service-item {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
}

.pagination-area {
  text-align: center;
}
.pagination-area ul {
  list-style-type: none;
  display: inline-block;
}
.pagination-area ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination-area ul li a {
  display: block;
  color: #00245a;
  border-bottom: 1px solid #f26522;
  border-radius: 5px;
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
  padding: 0 15px;
  height: 30px;
  line-height: 34px;
}
.pagination-area ul li a i {
  line-height: 30px;
}
.pagination-area ul li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  background-color: #f26522;
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 5px;
}
.pagination-area ul li a:hover, .pagination-area ul li a.active {
  color: #fff;
}
.pagination-area ul li a:hover:before, .pagination-area ul li a.active:before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}

/*----- Service Details CSS -----*/
.service-details-area .details-item .details-img {
  margin-bottom: 30px;
  margin-top: -6px;
}
.service-details-area .details-item .details-img h2 {
  font-size: 30px;
  margin-bottom: 14px;
}
.service-details-area .details-item .details-img p {
  margin-bottom: 10px;
}
.service-details-area .details-item .details-img img {
  margin-top: 12px;
}
.service-details-area .details-item .details-client {
  margin-bottom: 30px;
}
.service-details-area .details-item .details-client h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.service-details-area .details-item .details-client p {
  margin-bottom: 12px;
}
.service-details-area .details-item .details-client ul li {
  list-style-type: none;
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  font-weight: 500;
}
.service-details-area .details-item .details-client ul li:last-child {
  margin-bottom: 0;
}
.service-details-area .details-item .details-client ul li:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 6px;
  left: 0;
  border-radius: 50%;
  background-color: #f26522;
  transition: 0.5s all ease;
}
.service-details-area .details-item .details-client ul li:hover:before {
  background-color: #00245a;
}
.service-details-area .details-item .details-advantage .left {
  margin-bottom: 30px;
}
.service-details-area .details-item .details-advantage .right {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2784313725);
  padding: 30px 30px 30px;
  margin-bottom: 30px;
}
.service-details-area .details-item .details-advantage .right h3 {
  font-size: 25px;
  margin-bottom: 5px;
}
.service-details-area .details-item .details-advantage .right img {
  margin-bottom: 25px;
  display: inline-block;
}
.service-details-area .details-item .details-advantage .right ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 30px;
}
.service-details-area .details-item .details-advantage .right ul li:last-child {
  margin-bottom: 0;
}
.service-details-area .details-item .details-advantage .right ul li:last-child p {
  margin-bottom: 0;
}
.service-details-area .details-item .details-advantage .right ul li h4 {
  margin-bottom: 8px;
  font-size: 20px;
}
.service-details-area .details-item .details-advantage .right ul li h4 i {
  display: inline-block;
  margin-right: 3px;
  color: #f26522;
  position: relative;
  top: 2px;
  font-size: 20px;
}
.service-details-area .details-item .details-faq {
  margin-bottom: 30px;
}
.service-details-area .details-item .details-faq h3 {
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: -5px;
}
.service-details-area .details-item .details-faq span {
  display: block;
  margin-bottom: 30px;
}
.service-details-area .details-item .details-more h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.accordion {
  margin: 0;
  padding: 0;
}
.accordion p {
  display: none;
  padding: 20px 25px 20px;
  margin-bottom: 0;
}
.accordion li {
  position: relative;
  list-style-type: none;
  margin-bottom: 15px;
  display: block;
  box-shadow: 0px 0px 30px 0px rgba(221, 221, 221, 0.2588235294);
  border-radius: 5px;
}
.accordion li:first-child {
  border-top: 0;
}
.accordion li:last-child {
  margin-bottom: 0;
}
.accordion li a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  color: #221668;
  padding: 13px 20px 13px;
}
.accordion li a.active {
  color: #fff;
  background-color: #f26522;
}
.accordion li a.active i {
  color: #fff;
  opacity: 0;
}
.accordion li a.active i.two {
  opacity: 1;
}
.accordion li a i {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #7a7a7a;
  display: inline-block;
  font-size: 22px;
  opacity: 1;
  transition: 0.5s all ease;
}
.accordion li a i.two {
  opacity: 0;
}

.widget-area .widget-item {
  margin-bottom: 30px;
  background-color: #ececec;
  padding: 25px 25px 25px;
}
.widget-area .widget-item h3 {
  font-size: 20px;
  margin-bottom: 30px;
  padding-left: 10px;
  border-left: 2px solid #f26522;
}
.widget-area .search form {
  position: relative;
}
.widget-area .search .form-control {
  height: 50px;
  border-radius: 0;
  padding-left: 15px;
  font-size: 16px;
  border: 0;
}
.widget-area .search .form-control:focus {
  box-shadow: none;
  border: 0;
}
.widget-area .search .btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  height: 50px;
  color: #fff;
  background-color: #f26522;
  transition: 0.5s all ease;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  border-radius: 0;
}
.widget-area .search .btn i {
  line-height: 50px;
}
.widget-area .search .btn:hover {
  background-color: #00245a;
}
.widget-area .categories ul li {
  list-style-type: none;
  display: block;
  position: relative;
  background-color: #fff;
  padding: 12px 15px 12px;
  transition: 0.5s all ease;
  margin-bottom: 10px;
}
.widget-area .categories ul li:last-child {
  margin-bottom: 0;
}
.widget-area .categories ul li a {
  display: block;
  color: #00245a;
}
.widget-area .categories ul li a i {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
}
.widget-area .categories ul li:hover {
  background-color: #f26522;
}
.widget-area .categories ul li:hover a {
  color: #fff;
}
.widget-area .download .inner {
  text-align: center;
  background-color: #fff;
  padding: 15px 15px 12px;
}
.widget-area .download .inner i {
  color: #565969;
  display: inline-block;
  font-size: 35px;
  margin-bottom: 5px;
}
.widget-area .download .inner a {
  display: inline-block;
  color: #00245a;
  font-size: 18px;
}
.widget-area .download .inner a:hover {
  color: #f26522;
}
.widget-area .emergency {
  background-image: url("../img/service-details3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.widget-area .emergency:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.791688) 20%, rgba(0, 36, 90, 0.387194) 59%);
}
.widget-area .emergency .emergency-content {
  padding-top: 190px;
  position: relative;
  z-index: 1;
}
.widget-area .emergency .emergency-content span {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}
.widget-area .emergency .emergency-content a {
  display: block;
  font-size: 30px;
  color: #fff;
  margin-bottom: -10px;
}
.widget-area .emergency .emergency-content a:hover {
  color: #f26522;
}

/*----- Project Details CSS -----*/
.project-details-area .details-item .details-img {
  position: relative;
  margin-bottom: 25px;
}
.project-details-area .details-item .details-img ul {
  border-radius: 30px;
  max-width: 185px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #ddd;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -22px;
  position: relative;
  margin-left: 30px;
}
.project-details-area .details-item .details-img ul li {
  list-style-type: none;
  display: inline-block;
}
.project-details-area .details-item .details-img ul li span {
  font-size: 16px;
  margin-right: 5px;
  display: inline-block;
}
.project-details-area .details-item .details-img ul li a {
  display: block;
  margin-right: 5px;
  color: #3B5998;
}
.project-details-area .details-item .details-img ul li a:hover {
  transform: rotateY(360deg);
}
.project-details-area .details-item .details-img ul li:nth-child(3) a {
  color: #00ACEE;
}
.project-details-area .details-item .details-img ul li:nth-child(4) a {
  color: #E1306C;
}
.project-details-area .details-item .details-img ul li:nth-child(5) a {
  color: #0E76A8;
  margin-right: 0;
}
.project-details-area .details-item .details-head {
  margin-bottom: 30px;
}
.project-details-area .details-item .details-head h2 {
  margin-bottom: 14px;
  font-size: 30px;
  margin-top: -6px;
}
.project-details-area .details-item .details-head p {
  margin-bottom: 10px;
}
.project-details-area .details-item .details-head p:last-child {
  margin-bottom: 0;
}
.project-details-area .details-item .project-details-head {
  margin-bottom: 30px;
}
.project-details-area .details-item .project-details-head:last-child {
  margin-bottom: 30px;
}
.project-details-area .details-item .project-details-head h3 {
  font-size: 25px;
  margin-bottom: 5px;
  margin-top: -6px;
}
.project-details-area .details-item .project-details-head img {
  display: block;
  margin-bottom: 25px;
}
.project-details-area .details-item .details-goal ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 15px;
}
.project-details-area .details-item .details-goal ul li:last-child {
  margin-bottom: 0;
}
.project-details-area .details-item .details-goal ul li:last-child p {
  margin-bottom: 0;
}
.project-details-area .details-item .details-goal ul li h4 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #3d5477;
}
.project-details-area .details-item .details-goal ul li h4 i {
  display: inline-block;
  margin-right: 3px;
  color: #f26522;
  position: relative;
  top: 2px;
  font-size: 20px;
}
.project-details-area .details-item .details-goal ul li p {
  margin-bottom: 0;
}
.project-details-area .details-item .details-overview img {
  margin-bottom: 30px;
}
.project-details-area .details-item .details-overview p {
  margin-bottom: 0;
}
.project-details-area .details-item .details-solution p {
  margin-bottom: 10px;
}
.project-details-area .details-item .details-solution p:last-child {
  margin-bottom: 0;
}

.widget-area .project-details h3 {
  margin-bottom: 10px;
}
.widget-area .project-details p {
  margin-bottom: 30px;
}
.widget-area .project-details ul li {
  list-style-type: none;
  display: block;
  padding-left: 15px;
  border-left: 2px solid #f26522;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
}
.widget-area .project-details ul li:last-child {
  margin-bottom: 0;
}
.widget-area .project-details ul li span {
  display: block;
  color: #00245a;
  margin-bottom: 3px;
}
.widget-area .project-details ul li a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #f26522;
}
.widget-area .project-details ul li a:hover {
  color: #00245a;
}

/*----- End Project Details CSS -----*/
/*----- Blog Details CSS -----*/
.blog-details-area .details-item .details-img {
  margin-bottom: 20px;
}
.blog-details-area .details-item .details-img img {
  width: 100%;
}
.blog-details-area .details-item .details-img ul {
  border-radius: 30px;
  max-width: 185px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #ddd;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -22px;
  position: relative;
  margin-right: 30px;
  margin-left: auto;
  margin-bottom: 20px;
}
.blog-details-area .details-item .details-img ul li {
  list-style-type: none;
  display: inline-block;
}
.blog-details-area .details-item .details-img ul li span {
  font-size: 16px;
  margin-right: 5px;
  display: inline-block;
}
.blog-details-area .details-item .details-img ul li a {
  display: block;
  margin-right: 5px;
  color: #3B5998;
}
.blog-details-area .details-item .details-img ul li a:hover {
  transform: rotateY(360deg);
}
.blog-details-area .details-item .details-img ul li:nth-child(3) a {
  color: #00ACEE;
}
.blog-details-area .details-item .details-img ul li:nth-child(4) a {
  color: #E1306C;
}
.blog-details-area .details-item .details-img ul li:nth-child(5) a {
  color: #0E76A8;
  margin-right: 0;
}
.blog-details-area .details-item .details-img .details-img-content {
  padding-left: 15px;
  border-left: 2px solid #f26522;
}
.blog-details-area .details-item .details-img .details-img-content span {
  display: block;
  color: #f26522;
  margin-bottom: 3px;
  font-size: 16px;
}
.blog-details-area .details-item .details-img .details-img-content span a {
  display: inline-block;
  color: #f26522;
}
.blog-details-area .details-item .details-img .details-img-content span a:hover {
  color: #00245a;
}
.blog-details-area .details-item .details-img .details-img-content p {
  margin-bottom: 0;
  color: #00245a;
}
.blog-details-area .details-item .details-head {
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-head h2 {
  font-size: 35px;
  margin-bottom: 14px;
}
.blog-details-area .details-item .details-head p {
  margin-bottom: 10px;
}
.blog-details-area .details-item .details-head p:last-child {
  margin-bottom: 0;
}
.blog-details-area .details-item .details-head blockquote {
  background-color: #00245a;
  padding: 35px 30px 35px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details-area .details-item .details-head blockquote p {
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-head blockquote span {
  display: block;
  font-size: 16px;
  padding-left: 35px;
  position: relative;
  color: #fff;
}
.blog-details-area .details-item .details-head blockquote span:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  bottom: 8px;
  left: 0;
  background-color: #fff;
}
.blog-details-area .details-item .details-head blockquote i {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  position: absolute;
  bottom: 25px;
  right: 30px;
}
.blog-details-area .details-item .details-mood h3 {
  font-size: 25px;
  margin-bottom: 14px;
  margin-top: -6px;
}
.blog-details-area .details-item .details-mood ul {
  margin-bottom: 20px;
}
.blog-details-area .details-item .details-mood ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 10px;
}
.blog-details-area .details-item .details-mood ul li:last-child {
  margin-bottom: 0;
}
.blog-details-area .details-item .details-mood ul li i {
  display: inline-block;
  color: #f26522;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 2px;
}
.blog-details-area .details-item .details-mood img {
  margin-bottom: 30px;
  width: 100%;
}
.blog-details-area .details-item .details-rise {
  margin-bottom: 50px;
}
.blog-details-area .details-item .details-rise h3 {
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: -6px;
}
.blog-details-area .details-item .details-rise p {
  margin-bottom: 20px;
}
.blog-details-area .details-item .details-rise ul li {
  list-style-type: none;
  display: inline-block;
}
.blog-details-area .details-item .details-rise ul li span {
  display: inline-block;
  color: #00245a;
  font-weight: 500;
  margin-right: 5px;
}
.blog-details-area .details-item .details-rise ul li a {
  display: inline-block;
  color: #00245a;
  font-size: 16px;
  background-color: #efefef;
  padding: 3px 10px;
  margin-right: 8px;
}
.blog-details-area .details-item .details-rise ul li a:hover {
  color: #fff;
  background-color: #00245a;
}
.blog-details-area .details-item .details-renovation {
  margin-bottom: 50px;
}
.blog-details-area .details-item .details-renovation ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-details-area .details-item .details-renovation ul li {
  list-style-type: none;
  display: inline-block;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px 15px 15px;
  background-color: #00245a;
  transition: 0.5s all ease;
}
.blog-details-area .details-item .details-renovation ul li:hover {
  background-color: #f26522;
}
.blog-details-area .details-item .details-renovation ul li:hover:last-child {
  background-color: #00245a;
}
.blog-details-area .details-item .details-renovation ul li:last-child {
  text-align: right;
  background-color: #f26522;
}
.blog-details-area .details-item .details-renovation ul li a {
  display: block;
  color: #fff;
}
.blog-details-area .details-item .details-renovation ul li a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 3px;
}
.blog-details-area .details-item .details-comment {
  margin-bottom: 50px;
}
.blog-details-area .details-item .details-comment h3 {
  font-size: 25px;
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 2px solid #f26522;
}
.blog-details-area .details-item .details-comment h3 span {
  color: #7b7b7b;
}
.blog-details-area .details-item .details-comment ul li {
  position: relative;
  border-bottom: 1px solid #ededed;
  margin-bottom: 30px;
  padding-bottom: 30px;
  padding-left: 130px;
  list-style-type: none;
  display: block;
}
.blog-details-area .details-item .details-comment ul li:nth-child(2) {
  margin-left: 50px;
}
.blog-details-area .details-item .details-comment ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details-area .details-item .details-comment ul li img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.blog-details-area .details-item .details-comment ul li h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.blog-details-area .details-item .details-comment ul li span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #7b7b7b;
}
.blog-details-area .details-item .details-comment ul li p {
  margin-bottom: 16px;
}
.blog-details-area .details-item .details-comment ul li a {
  display: inline-block;
  color: #fff;
  background-color: #f26522;
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 15px;
}
.blog-details-area .details-item .details-comment ul li a:hover {
  background-color: #00245a;
}
.blog-details-area .details-item .details-form {
  padding: 50px 50px 50px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-form h3 {
  font-size: 25px;
  margin-bottom: 5px;
  margin-top: -8px;
}
.blog-details-area .details-item .details-form span {
  display: block;
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.blog-details-area .details-item .details-form .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 14px;
  left: 20px;
}
.blog-details-area .details-item .details-form .form-group .form-control {
  height: 50px;
  padding-left: 45px;
  font-size: 16px;
  background-color: #fafafa;
  border: 0;
}
.blog-details-area .details-item .details-form .form-group .form-control:focus {
  border: 0;
  box-shadow: none;
}
.blog-details-area .details-item .details-form .form-group textarea {
  height: auto !important;
  padding-top: 13px;
}
.blog-details-area .details-item .details-form .form-check {
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-form .common-btn {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  transition: 0.5s all ease;
  font-weight: 500;
}

.widget-area .post .post-inner {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}
.widget-area .post .post-inner:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.widget-area .post .post-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.widget-area .post .post-inner ul li {
  list-style-type: none;
  display: inline-block;
  flex: 0 0 25%;
  max-width: 25%;
}
.widget-area .post .post-inner ul li:last-child {
  flex: 0 0 70%;
  max-width: 70%;
  margin-left: 15px;
}
.widget-area .post .post-inner ul li img {
  width: 100%;
}
.widget-area .post .post-inner ul li .post-inner-link {
  display: block;
  color: #f26522;
  margin-bottom: 3px;
}
.widget-area .post .post-inner ul li .post-inner-link:hover {
  color: #00245a;
}
.widget-area .post .post-inner ul li h4 {
  font-size: 17px;
  margin-bottom: 5px;
}
.widget-area .post .post-inner ul li h4 a {
  color: #00245a;
}
.widget-area .post .post-inner ul li h4 a:hover {
  color: #f26522;
}
.widget-area .post .post-inner ul li span {
  display: block;
  font-size: 16px;
}
.widget-area .categories.two ul li a i {
  position: relative;
  top: 3px;
  right: 0;
  font-size: 20px;
  margin-right: 3px;
}
.widget-area .tags h3 {
  margin-bottom: 20px;
}
.widget-area .tags ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 5px;
  margin-top: 10px;
}
.widget-area .tags ul li a {
  display: block;
  color: #00245a;
  background-color: #fff;
  padding: 3px 12px;
}
.widget-area .tags ul li a:hover {
  color: #fff;
  background-color: #00245a;
}

/*----- End Blog Details CSS -----*/
/*----- Contact CSS -----*/
.contact-info-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
}
.contact-info-item img {
  width: 100%;
}
.contact-info-item .bottom {
  padding: 30px 30px 30px;
}
.contact-info-item .bottom h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.contact-info-item .bottom ul li {
  display: block;
  position: relative;
}
.contact-info-item .bottom ul li i {
  display: inline-block;
  color: #f26522;
  font-size: 30px;
  position: absolute;
  top: 3px;
  left: 0;
}
.contact-info-item .bottom ul li a {
  display: block;
  color: #565969;
  padding-left: 40px;
}
.contact-info-item .bottom ul li a:hover {
  color: #f26522;
}

.help-area.two {
  margin-top: 0;
}
.help-area.two .section-title.two {
  text-align: center;
}
.help-area.two .help-item .common-btn {
  opacity: 1;
}
.help-area.two .list-unstyled {
  color: #dc3545;
  margin-top: 10px;
}
.help-area.two .text-danger, .help-area.two text-success {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 20px;
}

.map-area #map {
  border: 0;
  display: block;
  width: 100%;
  height: 400px;
}

/*----- End Contact CSS -----*/
/*----- Shop CSS -----*/
.shop-area .section-title.two h2 {
  margin-bottom: 10px;
}
.shop-area .section-title.two p {
  margin-bottom: 0;
  color: #00245a;
}
.shop-area .shop-right {
  text-align: right;
}
.shop-area .shop-right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.shop-area .shop-right ul li:last-child {
  margin-right: 0;
}
.shop-area .shop-right ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #f26522;
  font-size: 22px;
  color: #f26522;
}
.shop-area .shop-right ul li a i {
  line-height: 40px;
}
.shop-area .shop-right ul li a:hover {
  color: #fff;
  background-color: #00245a;
  border: 1px solid #00245a;
}
.shop-area .shop-right ul li .nice-select {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: 0;
  position: relative;
  top: 10px;
  padding-left: 0;
}
.shop-area .shop-right ul li .nice-select .list {
  width: 100%;
  display: block;
}
.shop-area .shop-right ul li .nice-select .list li {
  display: block;
  margin-right: 0;
}

.shop-item {
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
  padding: 30px 30px 30px;
  transition: 0.5s all ease;
  margin-bottom: 30px;
}
.shop-item:hover {
  transform: translate(0, -10px);
}
.shop-item img {
  margin-bottom: 35px;
}
.shop-item ul {
  position: relative;
  margin-bottom: 20px;
}
.shop-item ul:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  left: -30px;
  top: 11px;
  background-color: #cbcbcb;
}
.shop-item ul:after {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  right: -30px;
  top: 11px;
  background-color: #cbcbcb;
}
.shop-item ul li {
  list-style-type: none;
  display: inline-block;
}
.shop-item ul li i {
  display: inline-block;
  font-size: 16px;
  color: #aab3c1;
}
.shop-item ul li i.checked {
  color: #f26522;
}
.shop-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.shop-item span {
  display: block;
  color: #565969;
  margin-bottom: 13px;
}

/*----- End Shop CSS -----*/
/*----- Cart CSS -----*/
.cart-area .table {
  --bs-table-bg: transparent;
}
.cart-area .table-item {
  text-align: center;
}
.cart-area .table-item .table {
  margin-bottom: 30px;
}
.cart-area .table-item .table > :not(:first-child) {
  border-top: 0;
}
.cart-area .table-item .table-bordered {
  border: 1px solid #e5e5e5;
}
.cart-area .table-item .table thead th {
  border-bottom: 1px solid #e5e5e5;
  color: #00245a;
}
.cart-area .table-item .table-bordered td, .cart-area .table-item .table-bordered th {
  border: 1px solid #e5e5e5;
  vertical-align: middle;
}
.cart-area .table-item img {
  border-radius: 5px;
}
.cart-area .table-item .number {
  background-color: #e9e9e9;
  max-width: 155px;
  margin-left: auto;
  margin-right: auto;
}
.cart-area .table-item .number li {
  list-style-type: none;
  display: inline-block;
}
.cart-area .table-item .number li .minus, .cart-area .table-item .number li .plus {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #565969;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0;
  vertical-align: middle;
  transition: 0.5s all ease;
}
.cart-area .table-item .number li .minus:hover, .cart-area .table-item .number li .plus:hover {
  color: #f26522;
}
.cart-area .table-item .number li input {
  height: 45px;
  width: 50px;
  text-align: center;
  border: 0;
  font-size: 20px;
  color: #f26522;
  display: inline-block;
  vertical-align: middle;
  margin-left: -4px;
  margin-right: -4px;
  background-color: #e9e9e9;
}
.cart-area .table-item .number li input:focus {
  border: 0;
  box-shadow: none;
}
.cart-area .table-item a {
  display: inline-block;
  color: #f26522;
  font-size: 25px;
}
.cart-area .table-item a:hover {
  color: #00245a;
}
.cart-area .table-cart ul {
  display: flex;
  flex-wrap: wrap;
}
.cart-area .table-cart ul li {
  list-style-type: none;
  display: inline-block;
  flex: 0 0 50%;
  max-width: 50%;
}
.cart-area .table-cart ul li .left a {
  display: inline-block;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
}
.cart-area .table-cart ul li .right {
  text-align: right;
}
.cart-area .table-cart ul li .right form {
  position: relative;
}
.cart-area .table-cart ul li .right form .form-control {
  max-width: 465px;
  background-color: #efefef;
  border: 0;
  border-radius: 0;
  padding-left: 20px;
  font-size: 16px;
  height: 50px;
  margin-left: auto;
}
.cart-area .table-cart ul li .right form .form-control:focus {
  box-shadow: none;
  border: 0;
}
.cart-area .table-cart ul li .right form ::-moz-placeholder {
  color: #697991;
}
.cart-area .table-cart ul li .right form ::placeholder {
  color: #697991;
}
.cart-area .table-cart ul li .right form .common-btn {
  border: 0;
  transition: 0.5s all ease;
  border-radius: 0;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.cart-totals-area .totals-left {
  margin-bottom: 30px;
}
.cart-totals-area .totals-right {
  margin-bottom: 30px;
  padding: 26px 30px 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3098039216);
}
.cart-totals-area .totals-right h3 {
  margin-bottom: 20px;
  font-size: 20px;
}
.cart-totals-area .totals-right ul {
  margin-bottom: 30px;
}
.cart-totals-area .totals-right ul li {
  list-style-type: none;
  display: block;
  border: 1px solid #e5e5e5;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding: 10px 15px 10px;
}
.cart-totals-area .totals-right ul li span {
  display: inline-block;
  font-weight: 400;
  position: absolute;
  right: 15px;
  top: 10px;
}
.cart-totals-area .totals-right a {
  display: block;
  width: 100%;
  text-align: center;
}

/*----- End Cart CSS -----*/
/*----- Checkout CSS -----*/
.checkout-area .checkout-item {
  margin-bottom: 30px;
}
.checkout-area .checkout-item h2 {
  font-size: 25px;
  margin-bottom: 30px;
}
.checkout-area .checkout-item .checkout-bill .form-group {
  margin-bottom: 15px;
  position: relative;
}
.checkout-area .checkout-item .checkout-bill .form-group label {
  margin-bottom: 0;
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 18px;
}
.checkout-area .checkout-item .checkout-bill .form-group .form-control {
  height: 50px;
  padding-left: 20px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  transition: 0.5s all ease;
  border-radius: 0;
  color: #00245a;
}
.checkout-area .checkout-item .checkout-bill .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.checkout-area .checkout-item .checkout-bill .form-group .form-control.two {
  padding-left: 45px;
}
.checkout-area .checkout-item .checkout-bill .form-group .form-check .form-check-input {
  margin-top: 6px;
}
.checkout-area .checkout-item .checkout-bill .form-group .form-check label {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  font-size: normal;
  font-weight: 500;
}
.checkout-area .checkout-item .checkout-bill .form-group .nice-select {
  height: 50px;
  padding-left: 20px;
  line-height: 50px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  transition: 0.5s all ease;
  border-radius: 0;
  color: #5b5b5b;
  margin-bottom: 15px;
  width: 100%;
  display: block;
}
.checkout-area .checkout-item .checkout-bill .form-group .nice-select .list {
  display: block;
  width: 100%;
}
.checkout-area .checkout-item .checkout-bill .form-group ::-moz-placeholder {
  color: #5b5b5b;
}
.checkout-area .checkout-item .checkout-bill .form-group ::placeholder {
  color: #5b5b5b;
}
.checkout-area .checkout-item .checkout-bill .form-group textarea {
  height: auto !important;
  padding-top: 13px;
}
.checkout-area .checkout-item .checkout-bill .return i {
  display: inline-block;
  color: #00245a;
  margin-right: 3px;
  font-size: 20px;
  top: 4px;
  position: relative;
}
.checkout-area .checkout-item .checkout-bill .return span {
  display: inline-block;
  color: #00245a;
  margin-right: 15px;
  font-size: 21px;
  position: relative;
  top: 3px;
}
.checkout-area .checkout-item .checkout-order .table {
  margin-bottom: 30px;
  --bs-table-bg: transparent;
}
.checkout-area .checkout-item .checkout-order .table thead th {
  border-bottom: 1px solid #e5e5e5;
  color: #00245a;
}
.checkout-area .checkout-item .checkout-order .table > :not(:first-child) {
  border-top: 0;
}
.checkout-area .checkout-item .checkout-payment {
  padding: 26px 30px 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
}
.checkout-area .checkout-item .checkout-payment h3 {
  font-size: 20px;
  margin-bottom: 25px;
}
.checkout-area .checkout-item .checkout-payment .form-check {
  margin-bottom: 10px;
}
.checkout-area .checkout-item .checkout-payment .form-check label {
  font-weight: 500;
  color: #00245a;
}
.checkout-area .checkout-item .checkout-payment p {
  margin-bottom: 25px;
}
.checkout-area .checkout-item .checkout-payment .form-group {
  margin-bottom: 15px;
}
.checkout-area .checkout-item .checkout-payment .form-group .form-control {
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  height: 50px;
  padding-left: 20px;
  border-radius: 0;
  transition: 0.5s all ease;
  font-size: 16px;
}
.checkout-area .checkout-item .checkout-payment .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.checkout-area .checkout-item .checkout-payment .common-btn {
  border: 0;
  transition: 0.5s all ease;
  border-radius: 0;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  display: block;
  text-align: center;
}

/*----- End Checkout CSS -----*/
/*----- Product Details CSS -----*/
.product-details-area .details-img {
  margin-bottom: 30px;
}
.product-details-area .details-img img {
  width: 100%;
  margin-bottom: 30px;
}
.product-details-area .details-img .common-btn {
  width: 100%;
  display: block;
  text-align: center;
}
.product-details-area .details-img .common-btn.two {
  background-color: #00245a;
}
.product-details-area .details-img .common-btn.two:before {
  background-color: #f26522;
}
.product-details-area .details-essential {
  margin-bottom: 30px;
}
.product-details-area .details-essential h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.product-details-area .details-essential span {
  display: block;
  font-weight: 500;
  color: #00245a;
  margin-bottom: 12px;
}
.product-details-area .details-essential ul li {
  list-style-type: none;
  display: inline-block;
}
.product-details-area .details-essential ul li i {
  display: inline-block;
  color: #ddd;
  font-size: 16px;
}
.product-details-area .details-essential ul li i.checked {
  color: #f26522;
}
.product-details-area .details-essential ul li span {
  display: inline-block;
  color: #565969;
  font-weight: 400;
}
.product-details-area .details-essential p {
  margin-bottom: 30px;
}
.product-details-area .details-essential h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.product-details-area .details-essential .nice-select {
  height: 50px;
  border: 1px solid #adbed8;
  border-radius: 0;
  line-height: 50px;
  display: block;
  width: 100%;
  font-size: 16px;
}
.product-details-area .details-essential .nice-select .list {
  width: 100%;
  display: block;
}
.product-details-area .details-essential .nice-select .list li {
  display: block;
}
.product-details-area .details-essential .number {
  max-width: 155px;
  text-align: center;
}
.product-details-area .details-essential .number li {
  list-style-type: none;
  display: inline-block;
}
.product-details-area .details-essential .number li .minus, .product-details-area .details-essential .number li .plus {
  width: 40px;
  height: 50px;
  line-height: 50px;
  color: #565969;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0;
  vertical-align: middle;
  transition: 0.5s all ease;
  border: 1px solid #adbed8;
}
.product-details-area .details-essential .number li .minus:hover, .product-details-area .details-essential .number li .plus:hover {
  color: #f26522;
}
.product-details-area .details-essential .number li input {
  height: 50px;
  width: 50px;
  text-align: center;
  border: 0;
  font-size: 20px;
  color: #f26522;
  display: inline-block;
  vertical-align: middle;
  background-color: #e9e9e9;
}
.product-details-area .details-essential .number li input:focus {
  border: 0;
  box-shadow: none;
}
.product-details-area .details-essential .form-check {
  margin-top: 15px;
}
.product-details-area .details-essential .form-check label {
  font-weight: 500;
}
.product-details-area .details-essential .form-check .form-check-input {
  margin-top: 6px;
}
.product-details-area .review-area {
  padding-top: 70px;
}
.product-details-area .review-area .nav-pills {
  text-align: center;
  margin: 0;
  padding: 0;
  display: block;
  margin-bottom: 50px;
  position: relative;
}
.product-details-area .review-area .nav-pills:before {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  top: 28px;
  left: 0;
  background-color: #e1e1e1;
}
.product-details-area .review-area .nav-pills:after {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  top: 28px;
  right: 0;
  background-color: #e1e1e1;
}
.product-details-area .review-area .nav-pills li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.product-details-area .review-area .nav-pills li a {
  border-radius: 0;
}
.product-details-area .review-area .nav-pills li a.two {
  background-color: #00245a;
}
.product-details-area .review-area .nav-pills li a.two:before {
  background-color: #f26522;
}
.product-details-area .review-area .nav-pills .nav-link.active, .product-details-area .review-area .nav-pills .show > .nav-link {
  background-color: #00245a;
}
.product-details-area .review-area .inner-description h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.product-details-area .review-area .inner-description p {
  margin-bottom: 10px;
}
.product-details-area .review-area .inner-description p:last-child {
  margin-bottom: 0;
}
.product-details-area .review-area .inner {
  padding: 50px 50px 50px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.2705882353);
}
.product-details-area .review-area .inner .title span {
  display: block;
  color: #f26522;
  margin-bottom: 3px;
}
.product-details-area .review-area .inner .title h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.product-details-area .review-area .inner .title ul {
  margin-bottom: 30px;
}
.product-details-area .review-area .inner .title ul li {
  list-style-type: none;
  display: inline-block;
}
.product-details-area .review-area .inner .title ul li i {
  display: inline-block;
  color: #ddd;
  font-size: 16px;
}
.product-details-area .review-area .inner .title ul li i.checked {
  color: #f26522;
}
.product-details-area .review-area .inner .title ul li span {
  display: inline-block;
  color: #565969;
  font-weight: 400;
}
.product-details-area .review-area .inner .left .form-group {
  margin-bottom: 15px;
  position: relative;
}
.product-details-area .review-area .inner .left .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 18px;
}
.product-details-area .review-area .inner .left .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background-color: #f9f9f9;
  padding-left: 40px;
  font-size: 16px;
  transition: 0.5s all ease;
}
.product-details-area .review-area .inner .left .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.product-details-area .review-area .inner .left .form-group textarea {
  height: auto !important;
  padding-top: 12px;
}
.product-details-area .review-area .inner .left .common-btn {
  width: 100%;
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  transition: 0.5s all ease;
  height: 50px;
  border: 0;
}
.product-details-area .review-area .inner .left .common-btn:before {
  border-radius: 5px;
}
.product-details-area .review-area .inner .right .review-item {
  border: 1px solid #e5e5e5;
  background-color: #f9f9f9;
  padding: 30px 30px 30px;
  border-radius: 5px;
}
.product-details-area .review-area .inner .right .review-item.two {
  margin-bottom: 15px;
}
.product-details-area .review-area .inner .right .review-item p {
  margin-bottom: 30px;
}
.product-details-area .review-area .inner .right .review-item h4 {
  font-size: 18px;
  margin-bottom: 3px;
}
.product-details-area .review-area .inner .right .review-item span {
  display: block;
  color: #f26522;
}
.product-details-area .review-area .inner .right .review-item ul {
  text-align: right;
}
.product-details-area .review-area .inner .right .review-item ul li {
  list-style-type: none;
  display: inline-block;
}
.product-details-area .review-area .inner .right .review-item ul li i {
  display: inline-block;
  color: #ddd;
  font-size: 16px;
}
.product-details-area .review-area .inner .right .review-item ul li i.checked {
  color: #f26522;
}
.product-details-area .review-area .inner .right .review-item ul li span {
  display: inline-block;
  color: #565969;
  font-weight: 400;
}

/*----- End Product Details CSS -----*/
/*----- Account CSS -----*/
.account-area .account-img {
  background-image: url("../img/account-main.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.account-area .account-img img {
  display: none;
}
.account-area .account-content {
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
}
.account-area .account-content .content-inner {
  text-align: center;
  max-width: 475px;
  margin-left: auto;
  margin-right: auto;
}
.account-area .account-content .content-inner .top {
  margin-bottom: 40px;
}
.account-area .account-content .content-inner .top .logo-two {
  display: none;
}
.account-area .account-content .content-inner .top a {
  display: block;
  margin-bottom: 14px;
}
.account-area .account-content .content-inner .top h2 {
  font-size: 35px;
  margin-bottom: 0;
}
.account-area .account-content .content-inner .middle .nav-pills {
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.account-area .account-content .content-inner .middle .nav-pills .nav-link.active, .account-area .account-content .content-inner .middle .nav-pills .show > .nav-link {
  color: #565969;
  background-color: transparent;
  border-bottom: 1px solid #f26522;
}
.account-area .account-content .content-inner .middle .nav-pills li {
  list-style-type: none;
  display: inline-block;
  margin-left: -3px;
  margin-right: -3px;
}
.account-area .account-content .content-inner .middle .nav-pills li a {
  display: block;
  color: #565969;
  border-bottom: 1px solid #d5d5d5;
  border-radius: 0;
  padding: 0 40px 10px;
}
.account-area .account-content .content-inner .middle .nav-pills li a i {
  display: inline-block;
  color: #f26522;
  font-size: 20px;
  position: relative;
  top: 3px;
  margin-right: 2px;
}
.account-area .account-content .content-inner .middle .form-item {
  margin-bottom: 30px;
}
.account-area .account-content .content-inner .middle .form-item .form-group {
  margin-bottom: 15px;
  position: relative;
}
.account-area .account-content .content-inner .middle .form-item .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 18px;
}
.account-area .account-content .content-inner .middle .form-item .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background-color: #f9f9f9;
  padding-left: 40px;
  font-size: 16px;
  transition: 0.5s all ease;
}
.account-area .account-content .content-inner .middle .form-item .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #00245a;
}
.account-area .account-content .content-inner .middle .form-item .form-group textarea {
  height: auto !important;
  padding-top: 12px;
}
.account-area .account-content .content-inner .middle .form-item .common-btn {
  width: 100%;
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  transition: 0.5s all ease;
  height: 50px;
  border: 0;
}
.account-area .account-content .content-inner .middle .form-item .common-btn:before {
  border-radius: 5px;
}
.account-area .account-content .content-inner .middle .form-agreement {
  text-align: left;
}
.account-area .account-content .content-inner .middle .form-agreement .form-check {
  margin-bottom: 10px;
}
.account-area .account-content .content-inner .middle .form-agreement .form-check:last-child {
  margin-bottom: 0;
}
.account-area .account-content .content-inner .middle .form-agreement .form-check .form-check-input {
  margin-top: 4px;
}
.account-area .account-content .content-inner .middle .form-agreement .form-check a {
  display: inline-block;
  color: #f26522;
  border-bottom: 1px solid #f26522;
}
.account-area .account-content .content-inner .middle .form-agreement .form-check a:hover {
  color: #00245a;
  border-bottom: 1px solid #00245a;
}
.account-area .account-content .content-inner .middle .form-default-login h4 {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 40px;
  margin-top: 40px;
  position: relative;
  color: #565969;
}
.account-area .account-content .content-inner .middle .form-default-login h4:before {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  top: 10px;
  left: 0;
  background-color: #565969;
}
.account-area .account-content .content-inner .middle .form-default-login h4:after {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  top: 10px;
  right: 0;
  background-color: #565969;
}
.account-area .account-content .content-inner .middle .form-default-login ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 3px;
  margin-left: 3px;
}
.account-area .account-content .content-inner .middle .form-default-login ul li a {
  display: block;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  background-color: #3b5998;
}
.account-area .account-content .content-inner .middle .form-default-login ul li a:hover {
  transform: translate(0, -5px);
}
.account-area .account-content .content-inner .middle .form-default-login ul li:nth-child(2) a {
  background-color: #1da1f2;
}
.account-area .account-content .content-inner .middle .form-default-login ul li:nth-child(3) a {
  background-color: #2867b2;
}

/*----- End Account CSS -----*/
/*----- Appointment CSS -----*/
.help-area.three {
  margin-top: 100px;
  margin-bottom: 100px;
}

/*----- End Appointment CSS -----*/
/*----- Testimonials CSS -----*/
.testimonials-area.four .testimonials-item {
  margin-top: 0;
}

/*----- End Testimonials CSS -----*/
/*----- FAQ CSS -----*/
.faq-area .accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/*----- End FAQ CSS -----*/
/*----- Error CSS -----*/
.error-area {
  height: 100vh;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.error-area .error-content i {
  display: inline-block;
  color: #f26522;
  font-size: 100px;
}
.error-area .error-content h1 {
  font-size: 130px;
  color: #f26522;
  margin-bottom: 10px;
}
.error-area .error-content h2 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #00245a;
}
.error-area .error-content p {
  font-weight: 500;
  margin-bottom: 20px;
}
.error-area .error-content a {
  display: inline-block;
  color: #fff;
  background-color: #f26522;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: 500;
}
.error-area .error-content a:hover {
  background-color: #00245a;
}

/*----- End Error CSS -----*/
/*----- Coming Soon CSS -----*/
.coming-soon-area {
  height: 100vh;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.coming-soon-area .soon-item h1 {
  font-size: 90px;
  font-weight: 700;
  color: #f26522;
  margin-bottom: 15px;
}
.coming-soon-area .soon-item span {
  display: inline-block;
  color: #00245a;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  font-size: 18px;
}
.coming-soon-area .soon-item span:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: -45px;
  top: 14px;
  background-color: #00245a;
}
.coming-soon-area .soon-item span:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  right: -45px;
  top: 14px;
  background-color: #00245a;
}
.coming-soon-area .soon-item .coming-inner {
  padding-bottom: 30px;
  border-radius: 5px;
  padding-top: 20px;
  margin-bottom: 30px;
  background-color: #00245a;
}
.coming-soon-area .soon-item .coming-inner h3 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.coming-soon-area .soon-item .coming-inner p {
  color: #fff;
  margin-bottom: 0;
}

/*----- End Coming Soon CSS -----*/
/*----- Rules CSS -----*/
.rules-area {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.rules-area .rules-item img {
  margin-bottom: 30px;
}
.rules-area .rules-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00245a;
}
.rules-area .rules-item p {
  margin-bottom: 30px;
}
.rules-area .rules-item p:last-child {
  margin-bottom: 0;
}

/*----- End Rules CSS -----*/
/*----- Go Top CSS -----*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 0;
  color: #ffffff;
  background-color: #f26522;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  border-radius: 50%;
  border: 1px solid #f26522;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.6s;
  font-size: 25px;
  line-height: 45px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top.active {
  right: 1%;
  transform: translateY(-1%);
  opacity: 1;
  visibility: visible;
}
.go-top:hover, .go-top:focus {
  color: #ffffff;
  border: 1px solid #00245a;
  background-color: #00245a;
}
.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

/*----- End Go Top CSS -----*/
/* Preloader removed - page loads normally */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #00245a;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .mean-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .mean-nav.active {
        display: block;
    }
    
    .mean-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mean-nav ul li {
        border-bottom: 1px solid #eee;
    }
    
    .mean-nav ul li a {
        display: block;
        padding: 15px 20px;
        color: #00245a;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .mean-nav ul li a:hover {
        background-color: #f8f9fa;
    }
}

/*----- End Go Top CSS -----*/
/*----- Preloader CSS Removed - Page loads normally -----*/
/*----- Buy Now Btn -----*/
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #fff;
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}

/* Clients Carousel Styling */
.clients-area {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.clients-slider {
    margin-top: 40px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 10px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logo {
        height: 60px;
        padding: 10px;
    }
    
    .client-logo img {
        max-height: 40px;
    }
}

/* Project Overlay Styles */
.projects-item .top {
    position: relative;
    overflow: hidden;
}

.projects-item .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 36, 90, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.projects-item:hover .project-overlay {
    opacity: 1;
}

.projects-item .project-overlay .project-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.projects-item:hover .project-overlay .project-content {
    transform: translateY(0);
}

.projects-item .project-overlay .project-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.projects-item .project-overlay .project-content p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.projects-item .project-overlay .project-content .project-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.projects-item .project-overlay .project-content .project-meta span {
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.projects-item .project-overlay .project-content .project-meta span i {
    font-size: 14px;
    color: #f26522;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.projects-item .project-overlay .project-content .view-project {
    display: inline-block;
    background: #f26522;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.projects-item .project-overlay .project-content .view-project:hover {
    background: #fff;
    color: #f26522;
    transform: translateY(-2px);
}

/* Responsive adjustments for project overlays */
@media (max-width: 768px) {
    .projects-item .project-overlay {
        padding: 15px;
    }
    
    .projects-item .project-overlay .project-content h4 {
        font-size: 18px;
    }
    
    .projects-item .project-overlay .project-content p {
        font-size: 13px;
    }
    
    .projects-item .project-overlay .project-content .project-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Ensure mobile navigation is properly displayed */
@media only screen and (max-width: 991px) {
    .mobile-nav {
        display: block !important;
        position: relative;
        background: #00245a;
        padding: 15px 0;
    }
    
    .mobile-nav .logo {
        text-decoration: none;
        position: absolute;
        top: 15px;
        z-index: 999;
        left: 15px;
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 20px;
    }
    
    .mobile-nav .logo img {
        max-width: 120px;
        height: auto;
    }
    
    .mobile-nav .navbar-toggler {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 999;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 8px;
        background: #00245a;
        border: 2px solid #f26522;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav .navbar-toggler:hover {
        background: #f26522;
        border-color: #00245a;
        transform: scale(1.05);
    }
    
    .mobile-nav .navbar-toggler span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    
    .mobile-nav .navbar-toggler:hover span {
        background-color: #00245a;
    }
    
    .mobile-nav .navbar-toggler.active {
        background: #f26522;
        border-color: #00245a;
    }
    
    .mobile-nav .navbar-toggler.active span {
        background-color: #00245a;
    }
    
    .mobile-nav .navbar-toggler.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-nav .navbar-toggler.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-nav .navbar-toggler.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .mobile-nav .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #00245a;
        z-index: 998;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .mobile-nav .navbar-collapse.show {
        display: block;
    }
    
    .mobile-nav .navbar-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-nav .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .mobile-nav .navbar-nav .nav-link {
        display: block;
        padding: 15px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav .navbar-nav .nav-link:hover,
    .mobile-nav .navbar-nav .nav-link.active {
        background-color: rgba(255,255,255,0.1);
        color: #f26522;
    }
    
    .main-nav {
        display: none !important;
    }
}

/* Hide mobile nav on larger screens */
@media only screen and (min-width: 992px) {
    .mobile-nav {
        display: none !important;
    }
    
    .main-nav {
        display: block !important;
    }
}

/* Consistent margin improvements for home page sections */
.feature-area + .about-area,
.about-area + .service-area,
.service-area + .skills-area,
.skills-area + .projects-area,
.projects-area + .team-area,
.team-area + .video-area,
.video-area + .testimonials-area,
.testimonials-area + .blog-area {
  margin-top: 0;
}

/* Ensure consistent container margins */
.container,
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Ensure consistent row margins */
.row {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 0;
  margin-bottom: 0;
}

.row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Text Overlap Prevention - Comprehensive Fixes */

/* Navigation text overlap prevention */
.main-nav nav .navbar-nav .nav-item a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  display: block;
  padding: 8px 12px;
  position: relative;
}

/* Additional navigation fixes */
.main-nav nav .navbar-nav .nav-item {
  position: relative;
  margin: 0 5px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  min-width: 200px;
  max-width: 300px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 8px 15px;
  display: block;
}

.side-nav ul li .dropdown-toggle span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  display: block;
}

/* Button text overlap prevention */
.common-btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 120px;
  text-align: center;
}

.common-btn i {
  margin-right: 8px;
  flex-shrink: 0;
}

/* Feature item text overlap prevention */
.feature-item .right h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}

.feature-item .right p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
}

/* Service item text overlap prevention */
.service-item h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}

.service-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 4.2em;
}

/* Project item text overlap prevention */
.projects-item .bottom h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

.projects-item .project-overlay .project-content h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.projects-item .project-overlay .project-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
}

/* Team item text overlap prevention */
.team-item .bottom h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

/* Blog item text overlap prevention */
.blog-item .bottom h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}

.blog-item .bottom p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 4.2em;
}

/* Footer text overlap prevention */
.footer-item .footer-logo p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 4.2em;
}

.footer-item .footer-company ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header contact info text overlap prevention */
.header-top-area .right .contact-info li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  display: block;
}

/* Section title text overlap prevention */
.section-title h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

.section-title p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
}

/* Banner content text overlap prevention */
.banner-content h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}

.banner-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
}

/* Mobile navigation text overlap prevention */
@media only screen and (max-width: 991px) {
  .mobile-nav .navbar-nav .nav-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 12px 15px;
  }
  
  .mobile-nav .navbar-toggler {
    min-width: 40px;
    min-height: 40px;
  }
}

/* Responsive text overlap prevention */
@media (max-width: 768px) {
  .common-btn {
    min-width: 100px;
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .feature-item .right h3,
  .service-item h3,
  .projects-item .bottom h3,
  .team-item .bottom h3,
  .blog-item .bottom h3 {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .banner-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .common-btn {
    min-width: 80px;
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .feature-item .right h3,
  .service-item h3,
  .projects-item .bottom h3,
  .team-item .bottom h3,
  .blog-item .bottom h3 {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 20px;
  }
  
  .banner-content h1 {
    font-size: 24px;
  }
}

/* Projects Area Text Overlap Prevention - Specific Fixes */

.projects-area .section-title h2 {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 15px !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.projects-area .section-title p {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  line-height: 1.4 !important;
  max-height: 2.8em !important;
  word-wrap: break-word !important;
  margin-bottom: 30px !important;
}

.projects-item .bottom {
  padding: 20px !important;
  background: #fff !important;
  position: relative !important;
  z-index: 1 !important;
  min-height: 100px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.projects-item .bottom span {
  display: inline-block !important;
  background: #f26522 !important;
  color: #fff !important;
  padding: 5px 15px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 10px !important;
  align-self: flex-start !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

.projects-item .bottom h3 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #00245a !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.projects-item .bottom h3 a {
  color: #00245a !important;
  text-decoration: none !important;
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transition: color 0.3s ease !important;
}

.projects-item .bottom h3 a:hover {
  color: #f26522 !important;
}

/* Responsive fixes for projects area */
@media (max-width: 768px) {
  .projects-area .section-title h2 {
    font-size: 24px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .projects-item .bottom h3 {
    font-size: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .projects-item .bottom span {
    font-size: 11px !important;
    padding: 4px 12px !important;
  }
}

@media (max-width: 576px) {
  .projects-area .section-title h2 {
    font-size: 20px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .projects-item .bottom h3 {
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .projects-item .bottom span {
    font-size: 10px !important;
    padding: 3px 10px !important;
  }
  
  .projects-item .bottom {
    padding: 15px !important;
    min-height: 80px !important;
  }
}

/* Ensure proper container spacing */
.projects-area .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.projects-area .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.projects-area .row > [class*="col-"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-bottom: 30px !important;
}

/* Fix for any remaining text overflow */
.projects-item {
  overflow: hidden !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.projects-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.projects-item .top {
  position: relative !important;
  overflow: hidden !important;
}

.projects-item .top img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.projects-item:hover .top img {
  transform: scale(1.05) !important;
}

/* Footer Text Overlap Prevention - Comprehensive Fixes */

.footer-area {
  background: #00245a !important;
  color: #fff !important;
  position: relative !important;
  overflow: hidden !important;
}

.footer-item {
  margin-bottom: 30px !important;
  position: relative !important;
}

/* Footer Logo Section */
.footer-item .footer-logo {
  position: relative !important;
}

.footer-item .footer-logo .logo {
  display: block !important;
  margin-bottom: 20px !important;
  max-width: 100% !important;
}

.footer-item .footer-logo .logo img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

.footer-item .footer-logo p {
  color: #fff !important;
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  max-height: 4.8em !important;
  word-wrap: break-word !important;
}

.footer-item .footer-logo span {
  display: block !important;
  color: #f26522 !important;
  font-weight: 600 !important;
  margin-bottom: 15px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.footer-item .footer-logo ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.footer-item .footer-logo ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-item .footer-logo ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: #f26522 !important;
  color: #fff !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 18px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.footer-item .footer-logo ul li a:hover {
  background: #fff !important;
  color: #f26522 !important;
  transform: translateY(-2px) !important;
}

/* Footer Links Section */
.footer-item .footer-links h3,
.footer-item .footer-company h3 {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
}

.footer-item .footer-links ul,
.footer-item .footer-company ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-item .footer-links ul li,
.footer-item .footer-company ul li {
  margin-bottom: 12px !important;
  padding: 0 !important;
  position: relative !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
}

.footer-item .footer-links ul li:last-child,
.footer-item .footer-company ul li:last-child {
  margin-bottom: 0 !important;
}

.footer-item .footer-links ul li a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding: 2px 0 !important;
}

.footer-item .footer-links ul li a:hover {
  color: #f26522 !important;
}

/* Footer Company Info */
.footer-item .footer-company ul li {
  color: #fff !important;
  line-height: 1.6 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.footer-item .footer-company ul li span {
  color: #f26522 !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
}

.footer-item .footer-company ul li a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
}

.footer-item .footer-company ul li a:hover {
  color: #f26522 !important;
}

/* Copyright Area */
.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 30px !important;
  margin-top: 30px !important;
}

.copyright-area .newsletter-form {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

.copyright-area .newsletter-form .form-control {
  flex: 1 !important;
  min-width: 200px !important;
  padding: 12px 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 5px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.copyright-area .newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.copyright-area .newsletter-form .common-btn {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  min-width: 120px !important;
  padding: 12px 20px !important;
}

.copyright-area .copyright-item {
  text-align: right !important;
}

.copyright-area .copyright-item p {
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
}

.copyright-area .copyright-item p a {
  color: #f26522 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.copyright-area .copyright-item p a:hover {
  color: #fff !important;
}

/* Responsive Footer Fixes */
@media (max-width: 768px) {
  .footer-item .footer-logo p {
    -webkit-line-clamp: 2 !important;
    max-height: 3.2em !important;
  }
  
  .footer-item .footer-links h3,
  .footer-item .footer-company h3 {
    font-size: 18px !important;
  }
  
  .footer-item .footer-links ul li,
  .footer-item .footer-company ul li {
    font-size: 14px !important;
  }
  
  .copyright-area .newsletter-form {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .copyright-area .newsletter-form .form-control {
    min-width: 100% !important;
  }
  
  .copyright-area .copyright-item {
    text-align: center !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 576px) {
  .footer-item .footer-logo p {
    -webkit-line-clamp: 2 !important;
    max-height: 3.2em !important;
    font-size: 14px !important;
  }
  
  .footer-item .footer-links h3,
  .footer-item .footer-company h3 {
    font-size: 16px !important;
  }
  
  .footer-item .footer-links ul li,
  .footer-item .footer-company ul li {
    font-size: 13px !important;
  }
  
  .footer-item .footer-logo ul {
    gap: 8px !important;
  }
  
  .footer-item .footer-logo ul li a {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }
  
  .copyright-area .newsletter-form .common-btn {
    min-width: 100px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
  }
}

/* Ensure proper container spacing */
.footer-area .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.footer-area .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.footer-area .row > [class*="col-"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Fix for any remaining text overflow */
.footer-area * {
  box-sizing: border-box !important;
}

.footer-area h1, .footer-area h2, .footer-area h3, .footer-area h4, .footer-area h5, .footer-area h6,
.footer-area p, .footer-area span, .footer-area a, .footer-area li, .footer-area div {
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/*-- Rules/User Agreement --*/
.rules-area {
  padding: 100px 0;
}

.rules-item {
  text-align: left;
}

.rules-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
}

.rules-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00245a;
  font-weight: 600;
}

.rules-item h3:first-of-type {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f26522;
}

.rules-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.rules-item ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.rules-item ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 8px;
  list-style-type: disc;
}

.rules-item ul li:last-child {
  margin-bottom: 0;
}

.rules-item p strong {
  color: #00245a;
  font-weight: 600;
}

/*-- User Agreement Modal --*/
.user-agreement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.user-agreement-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #00245a 0%, #f26522 100%);
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.agreement-content h4 {
    color: #00245a;
    font-size: 18px;
    margin: 20px 0 15px;
    font-weight: 600;
}

.agreement-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.agreement-content p strong {
    color: #00245a;
    font-weight: 600;
}

.agreement-content ul {
    margin: 15px 0 20px 20px;
    padding: 0;
}

.agreement-content ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
    list-style-type: disc;
}

.agreement-content a {
    color: #f26522;
    text-decoration: none;
    font-weight: 500;
}

.agreement-content a:hover {
    text-decoration: underline;
}

.agreement-actions {
    display: flex;
    gap: 15px;
    margin: 25px 0 20px;
    flex-wrap: wrap;
}

.agree-btn, .decline-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.agree-btn {
    background: linear-gradient(135deg, #f26522 0%, #e55a1a 100%);
    color: #fff;
}

.agree-btn:hover {
    background: linear-gradient(135deg, #e55a1a 0%, #d44f15 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

.decline-btn {
    background: #f8f9fa;
    color: #00245a;
    border: 2px solid #00245a;
}

.decline-btn:hover {
    background: #00245a;
    color: #fff;
    border-color: #00245a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 36, 90, 0.3);
}

.agreement-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #f26522;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-agreement-modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .agreement-actions {
        flex-direction: column;
    }
    
    .agree-btn, .decline-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .modal-header h3 {
        font-size: 18px;
    }
    
    .agreement-content p {
        font-size: 15px;
    }
    
    .agreement-content ul li {
        font-size: 14px;
    }
}

.statistics-area[style*="background: #000000"] .stat-item h3 .odometer {
  color: #1a1a1a;
  text-shadow: 0 2px 4px rgba(26, 26, 26, 0.1);
  filter: drop-shadow(0 1px 2px rgba(26, 26, 26, 0.2));
}

.statistics-area[style*="background: #000000"] .stat-item p {
  color: #000000;
  font-weight: 500;
}

.statistics-area[style*="background: #000000"] .stat-item {
  background: #000000;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #333333;
}

.statistics-area[style*="background: #000000"] .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: #555555;
}

.statistics-area[style*="background: #000000"] .stat-item h3 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

.statistics-area[style*="background: #000000"] .stat-item h3 .odometer {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.2));
}

.statistics-area[style*="background: #000000"] .stat-item p {
  color: #ffffff;
  font-weight: 500;
}