/* ------equipment--------- */
/* Dropdown Container */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 columns */
  text-align: left;
  gap: 15px; /* Space between grid items */
  background: #f9f9f9; /*Light background for dropdown*/
  padding: 15px;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  font-size: 1.0em;
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 100px;
  z-index: 1000;
  display: none;
  
}

/* Show Dropdown on Hover */
.has-children:hover .dropdown-grid {
  display: grid;
}

/* Dropdown Links */
.dropdown-grid li {
  list-style: none;
}

.dropdown-grid .nav-link {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 2px 5px;
  transition: background 0.3s;
}

.dropdown-grid .nav-link:hover {
  background: black;
  color: #fff;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .dropdown-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
}

/* --------equipments end--------- */

body {
  font-family: "Rubik", sans-serif;
  background-color: #fff;
  /* font-weight: bold; */
  height: 200vh;
  position: relative;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

body.offcanvas-menu:before {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

/* ------------------ */
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  margin-top: 10px;
  top: 70px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #2c5e9f;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  opacity: 1;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(50% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.row .mega-links li a:hover{
  color: #f2f2f2;
  /*background: #000000;*/
  /*border-radius: 5px;*/
}
.wrapper .btn{
  color: #000000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1024px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #a6a6a6;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height:fit-content;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #2c5e9f;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    color:#ffffff;
    background:  #2c5e9f;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    /*border-radius: 5px;*/
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility:hidden;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 147%;
    /*margin-bottom: 15px;*/
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.drop-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
}

.drop-menu li {
  position: relative;
}

.drop-menu li:hover > .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  left: 160px;
  top: 0;
  background-color: #f9f9f9;
  min-width: 160px;
}

li:hover .drop-menu {
  display: block;
}
/* -------------------- */

p {
  color: #b3b3b3;
  font-weight: 300;

}

h1, 
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.hero {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.site-navbar-wrap {
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
}

.site-navbar-wrap a {
  color: #fff;
}

.site-navbar-wrap .site-navbar-top {
  font-size: 0.8rem;
  background-color: #003366;
}

.site-navbar-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-navbar {
  margin-bottom: 0px;
  width: 100%;
}

.site-navbar .site-logo {
  font-weight: 200;
  line-height: 0;
  top: -7px;
  position: relative;
}

.site-navbar .site-logo a {
  font-weight: 200;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  font-weight: 400;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
  /* padding: 10px 5px; */
  /* border-left: 1px solid rgb(255 255 255); */
}

.site-navbar .site-navigation .site-menu>li>a {
  /* padding: 0px 10px;
  color: rgba(255, 255, 255, 0.851); */
  font-size: 15px;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu>li>a.active {
  color: #fff;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: #fff;
}

.site-navbar .site-navigation .site-menu>li:last-child {
  padding-right: 0;
}

.site-navbar .site-navigation .site-menu>li:last-child>a {
  padding-right: 0;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  /* padding-right: 20px;
  border-left: 1px solid rgb(255, 255, 255); */
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 0px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #ffffff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
  border-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
  width: 200%;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(7, 95, 149, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #3675b3;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active>a {
  color: #fff !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li:first-child>a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li:last-child>a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
  font-weight: 400;
  border-bottom: 1px solid rgb(1 1 1);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: white;
  color: #212529;
  background-color: #83a7d9;
  /* padding: 15px 10px; */
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 5px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: #ebeef0;
  color: #212529;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: #000000;
  background-color: #c3ddfe;
  padding: 8px 10px;
  border-left: 2px solid rgb(255, 255, 255);
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #dee2e6;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a.active,
.site-mobile-menu .site-nav-wrap a:hover {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li.active>a {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

/* .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
} */

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "Poppins", sans-serif;
  /* content: "\f078"; */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
  /* background-color: rgba(94, 119, 161, 0.675); */
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.sticky-wrapper+.site-blocks-cover {
  margin-top: 96px;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

/* .sticky-wrapper .site-navbar ul li.active a {
  color: #ffffff;
} */

.sticky-wrapper.is-sticky .site-navbar {
  background-color: #ffffff;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li {
  display: inline-block;
  /* padding: 10px 5px; */
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child {
  padding-right: 0;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child>a {
  padding-right: 0;
}

/* .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.has-children>a {
  padding-right: 20px;
} */

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
  /* padding: 5px 10px;
  color: rgba(30, 30, 30, 0.6); */
  font-size: 15px;
  /* border-left: 1px solid rgb(174, 174, 174); */
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a:hover {
  /* color: rgb(0, 0, 0) !important; */
  background: white;
  color: #212529;
  background-color: #83a7d9;
  padding: 8px 10px;
  border-left: 2px solid rgb(174, 174, 174);
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a.active {
  color: #121212 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.active a {
  color: rgb(18, 17, 17);
}

/*-----whatsapp---*/
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon img {
  width: 50%;
  height: 50%;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-icon img {
    width: 40%;
    height: 40%;
  }
}

  /* ----main----- */

  .flowchart-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(to right, #f0f8ff, #e6f7ff);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .flowchart-section h1 {
    font-size: 2rem;
    color: #0066cc; /* Custom color for the heading */
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adds a slight shadow for emphasis */
  }
  
  .flowchart-section p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
  }
  
  /*========= Hero =========*/

   body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
        }

        /* Hero Section Styling */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 75vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #f4f4f4;
            background-image: url('./../images/splash-edited.png');
             background-size: cover;
            background-position: center;
        }

        /* Left Side: Text Content */
        .hero-content {
            flex: 1;
            padding: 2rem;
            z-index: 2;
            text-align: left;
        }

        .hero-heading {
            font-size: 3rem;
            font-weight: bold;
            margin-top: 20px;
            color: navy;
        }

        .hero-subheading {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .hero-btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }

        /* Right Side: Custom Half-Circle Shape */
        .hero-shape {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-image: url('./images/service-man.jpg'); /* Replace with your image path */
            clip-path: ellipse(100% 70% at 100% 50%);
            animation: slideBackground 12s infinite;
        }

        /* Background Animation */
        @keyframes slideBackground {
            0% {
                background-image: url('./../images/service-man.jpg');
            }
            33% {
                background-image: url('./../images/engineers-service.jpg');
            }
            66% {
                background-image: url('./../images/service-image.jpg');
            }
            100% {
                background-image: url('./../images/reading-instruction.jpg');
            }
        }

/* Media Queries for Responsiveness */
/* For Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .hero-content-02 {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .hero-heading-03 {
        font-size: 3.5rem;
        text-align: left !important;
    }

    .hero-subheading-04 {
        font-size: 1.5rem;
        text-align: left !important;
    }

    .hero-shape-05 {
        width: 100%;
        height: 100%;
        clip-path: ellipse(65% 90% at 100% 50%);
    }
}

/* For Medium Screens (Tablets: 768px to 1200px) */
@media (max-width: 1200px) {
    .hero-01 {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        height: 500px;
        padding: 1.5rem;
    }

    .hero-content-02 {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .hero-heading-03 {
        font-size: 2.5rem;
        text-align: left !important;
    }

    .hero-subheading-04 {
        font-size: 1.2rem;
        text-align: left !important;
    }

    .hero-shape-05 {
        width: 100%;
        height: 100%;
        clip-path: ellipse(65% 90% at 100% 50%);
    }
}

/* For Small Screens (Phones: 480px to 768px) */
@media (max-width: 768px) {
    .hero-01 {
        flex-direction: column;
        height: auto;
        height: 500px;
        padding: 1rem;
    }

    .hero-content-02 {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .hero-heading-03 {
        font-size: 2rem;
        text-align: left !important;
    }

    .hero-subheading-04 {
        font-size: 1rem;
        text-align: left !important;
    }

    .hero-shape-05 {
        width: 100%;
        height: 100%;
        clip-path: ellipse(65% 90% at 100% 50%);
    }

    .hero-shape{
      background-image: url(./../images/service-image.jpg);
      width: 100%;
      height: 100%;
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero-content{
      margin-top: 100px;
      background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-heading{
      color: whitesmoke;
      align-items: flex-start;
    }

    .hero-subheading{
      color: whitesmoke;
    }
}

/* For Extra Small Screens (Phones: 480px and below) */
@media (max-width: 480px) {
    .hero-01 {
        flex-direction: column;
        height: auto;
        padding: 0.5rem;
        height: 500px;
    }

    .hero-shape{
      background-image: url(./../images/service-image.jpg);
      width: 100%;
      height: 100%;
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero-content{
      margin-top: 100px;
      background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-heading{
      color: whitesmoke;
      align-items: flex-start;
    }

    .hero-subheading{
      color: whitesmoke;
    }

    /* .hero-content{
          background: rgba(0, 0, 0, 0.6); 
    } */

    .hero-content-02 {
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .hero-heading-03 {
        font-size: 1.8rem;
        text-align: left !important;
    }

    .hero-subheading-04 {
        font-size: 0.9rem;
        text-align: left !important;
    }

    /* .hero-shape-05 {
        width: 100%;
        height: 100%;
        clip-path: ellipse(60% 90% at 100% 50%);
    } */
}

/*======== Services Cards==============*/

.service-icon {
      width: 56px;
      height: 56px;
      display: inline-block;
      background-color: #007bff;
      border-radius: 50%;
      color: white;
      text-align: center;
      line-height: 56px;
      font-size: 28px;
    }

/* Initial state for animations */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state when in viewport */
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
  /* animation: bounce-in 0.8s cubic-bezier(0.25, 1.25, 0.5, 1.25); */
}

/* Fade-in effect */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Slide-up effect */
@keyframes slide-up {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-card .card-body {
    position: relative;
}

   @media (max-width: 576px) {
  /* Apply flexbox to the row for proper alignment */
  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .col-sm-6 {
    flex: 1 1 100%; /* Stack each card vertically */
  }

  /* Set the order for each card */
  .col-sm-6:nth-child(1) {
    order: 1; /* Card 1 */
  }

  .col-sm-6:nth-child(2) {
    order: 2; /* Card 2 */
  }

  .col-sm-6:nth-child(4) {
    order: 3; /* Card 4 */
  }

  .col-sm-6:nth-child(3) {
    order: 4; /* Card 3 */
  }

  .col-sm-6:nth-child(5) {
    order: 5; /* Card 5 */
  }

  .col-sm-6:nth-child(6) {
    order: 6; /* Card 6 */
  }
}

/* ============== Infrastructure ================= */

.structure{
  padding: 30px 90px 30px 90px;
  
}

.str-img-001{
  background: center no-repeat cover;
  border: 21x solid black;
  border-radius: 10px;
}
.str-img-002{
  background: center no-repeat cover;
  position: absolute;
  margin-top: -260px;
  margin-left: 600px;
  border: 10px solid white ;
}

.infra-headline{
  text-align: left;
  color: navy;
  font-size: 25px;
  font-weight: bold;
  padding-top: 20px;
}

.infra-content{
  /* line-height: 0.2rem; */
  /* font-size: 5px; */
  color: #212529;
  text-align: justify;
}

.last-sec{
  display: flex;
}

.lab-img-002{
  position: absolute;
  margin-left: -305px;
  margin-top: 75px;
  border: 7px solid white;
}

.lab{
  padding-top: 50px;
  border-radius: 10px;
  border: 1px solid white;
}

#metrology-lab{
  padding-left: 30px;
  margin-top: 30px;
}

.right-section-lab{
  flex: 1;
}

/* Mobile Devices (up to 576px) */
@media (max-width: 576px) {
  .structure {
    padding: 15px;
  }

  .str-img-001 {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px;
  }

   .str-img-002 {
    position: relative;
    margin: -130px auto 0 auto; /* Center the image inside the larger one */
    display: block;
    width: 60%; /* Adjust size */
    height: auto;
  }

  .infra-headline {
    font-size: 18px;
    padding-top: 10px;
  }

  .infra-content {
    font-size: 16px;
    line-height: 1.4;
  }

  .last-sec {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .lab {
    width: 100%;
    height: auto;
  }

  .lab-img-002 {
    position: relative;
    margin: -150px auto 0 auto; /* Center the image inside the larger one */
    width: 60%; /* Adjust size */
    height: auto;
    display: block;
  }

  .right-section-lab {
    padding: 10px;
  }
}

/* Tablets (576px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .structure {
    padding: 20px 50px;
  }

  .str-img-001 {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .str-img-002 {
    position: relative;
    margin: 20px auto;
    width: 70%;
    height: auto;
  }

  .lab-img-002 {
    position: relative;
    margin: 20px auto;
    width: 60%;
    height: auto;
  }

  .infra-headline {
    font-size: 20px;
    padding-top: 15px;
  }

  .infra-content {
    font-size: 18px;
    line-height: 1.5;
  }

  .last-sec {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .lab {
    width: 100%;
    height: auto;
  }

  .right-section-lab {
    padding: 15px;
  }
}

/* Laptops (768px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  .structure {
    padding: 30px 60px;
  }

  .str-img-001 {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* .str-img-002 {
    position: absolute;
    margin-top: -180px;
    margin-left: 400px;
    width: 40%;
    height: auto;
  } */

  /* .lab-img-002 {
    position: absolute;
    margin-left: -250px;
    margin-top: 50px;
    width: 250px;
    height: auto;
  } */

  .infra-headline {
    font-size: 22px;
    padding-top: 15px;
  }

  .infra-content {
    font-size: 18px;
    line-height: 1.6;
  }

  .last-sec {
    flex-direction: row;
    align-items: flex-start;
  }

  .lab {
    width: 50%;
    height: auto;
  }

  .right-section-lab {
    padding-left: 20px;
  }
}

/* Desktops (Above 1200px) */
@media (min-width: 1201px) {
  .structure {
    padding: 30px 90px;
  }

  .str-img-001 {
    width: 100%;
    height: 490px;
    border-radius: 10px;
  }

  .infra-headline {
    font-size: 25px;
    padding-top: 20px;
  }

  .infra-content {
    font-size: 20px;
    line-height: 1.8;
  }

  .last-sec {
    flex-direction: row;
  }

  .lab {
    width: 50%;
    height: 700px;
  }

  .right-section-lab {
    padding-left: 30px;
  }
}

/* ========== Media Queries for Map ================= */
@media screen and (max-width: 768px) {
  .map {
    height: auto; /* Maintain aspect ratio */
    max-height: 300px; /* Reduce height for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .map {
    height: auto; /* Ensure the image resizes proportionally */
    max-height: 250px; /* Further reduce height for very small screens */
  }
}

@media screen and (max-width: 320px) {
  .map {
    height: auto;
    max-height: 200px; /* Optimize for extra small screens */
  }
}

/* ================== Counter =================== */
.counter{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 200px;
  background-color: lightblue;
  flex-wrap: wrap;
}

.counter-value{
  font-size: 50px;
  font-weight: bold;
  color: navy;
  opacity: 0; 
  transition: opacity 0.5s ease-in-out;
}

 .column-00 {
    text-align: center;
    flex: 1; /* Ensures equal spacing */
    min-width: 180px; /* Prevents columns from becoming too small */
  }

.column-00 p{
  font-size: 20px;
  color: black;
}

/* 📌 Media Query for Large Screens (Above 1200px) */
@media (min-width: 1200px) {
  .counter {
    height: 250px;
  }

  .counter-value {
    font-size: 60px;
  }

  .column-00 p {
    font-size: 22px;
  }
}

/* 📌 Media Query for Tablets (768px - 1199px) */
@media (max-width: 1199px) {
  .counter {
    flex-wrap: wrap;
    height: auto;
    padding: 30px 0;
  }

  .column-00 {
    flex: 0 1 45%; 
    margin-bottom: 20px;
  }

  .counter-value {
    font-size: 45px;
  }

  .column-00 p {
    font-size: 18px;
  }
}

/* 📌 Media Query for Mobile Devices (Below 768px) */
@media (max-width: 768px) {
  .counter {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    text-align: center;
    padding: 20px;
  }

  .column-00 {
    width: 100%;
  }

  .counter-value {
    font-size: 40px;
  }

  .column-00 p {
    font-size: 16px;
  }
}
/* @media (max-width: 768px) {
  .counter {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  .column-00 {
    width: 100%;
    margin-bottom: 15px;
  }

  .counter-value {
    font-size: 40px;
  }

  .column-00 p {
    font-size: 16px;
  }
} */

/* 📌 Media Query for Small Mobile Devices (Below 480px) */
@media (max-width: 480px) {
  .counter {
    grid-template-columns: 1fr; 
  }

  .counter-value {
    font-size: 35px;
  }

  .column-00 p {
    font-size: 14px;
  }
}
/* @media (max-width: 480px) {
  .counter-value {
    font-size: 35px;
  }

  .column-00 p {
    font-size: 14px;
  }
} */


/* =========== O&M AMC Services ================== */

.service-1-headline, .service-2-headline{
  font-size: 25px;
  font-weight: bold;
  color: navy;
  margin-top: 20px;
}

.onm-service{
  display: flex;
  background-image: url(./../images/settings-shape.png);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: right;
  overflow: hidden;
  height: auto;
} 

.service-1-content{
  flex: 1;
  padding-left: 10%;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.5s ease-in-out;
}

.service-2-content{
  flex: 1;
  padding-left: 10%;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.5s ease-in-out;
}

.service-1-img{
  padding: 30px 30px 30px 170px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.5s ease-in-out;
}

.onm-sublist ul li::before, .amc-sublist ul li::before{
  background-image: url(./../images/setting-logo.jpg);
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  margin-left: -20px;
  margin-top: 15px;
}

.onm-sublist, .amc-sublist{
  line-height: 4rem;
}
.onm-sublist ul li, .amc-sublist ul li{
  list-style: none;
}

.onm-sublist ul li span, .amc-sublist ul li span{
  margin-left: 50px;
  display: block;
}

.service-2-img{
  margin: 0 80px 0 0;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.5s ease-in-out;
}

.amc-service{
   background-image: url(./../images/settings-shape.png);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: left;
  overflow: hidden;
  height: auto;
}

/* Animation Trigger (JS Adjustments Applied) */
.fade-in {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.slide-in-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.slide-in-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Media Queries */
@media screen and (max-width: 480px) {
  .onm-service, .amc-service {
    flex-direction: column;
    align-items: center;
    background-size: 150px;
    background-position: center;
    padding: 20px;
  }

  .amc-service{
    margin-top: -30px;
  }

  .service-1-img, .service-2-img {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .service-1-img img, .service-2-img img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .service-1-content, .service-2-content {
    padding: 0;
    margin-top: 20px;
  }

  .service-1-content{
    margin-left: -30px !important;
  }

  .service-2-content{
    margin-left: -40px;
  }

  /* .onm-list-text, .amc-list-text{
    margin-top: 10px;
  } */

  .service-1-headline, .service-2-headline{
    font-size: 20px !important;
  }

  .onm-sublist ul li::before, .amc-sublist ul li::before {
    background-size: 20px;
    
  }

  .onm-sublist ul li span, .amc-sublist ul li span {
    margin-left: 30px;
    
  }

  .onm-sublist, .amc-sublist {
    line-height: 2.5rem;
    font-size: 14px;
  }
}


@media (max-width: 576px) {
  /* Tablet and Smaller Screens */

  .onm-service,
  .amc-service {
    background-image: none; /* Disable background images on small screens */
    flex-direction: column; /* Stack elements vertically */
  }

  /* Reorder elements for mobile */
  .onm-service {
    flex-direction: column; 
  }

  .service-1-content{
    position: relative;
    left: 40px;
    font-size: 25px;
  }

  .service-1-headline, .service-2-headline{
    font-size: 30px;
  }

  .service-2-content{
    margin-right: -2px;
    font-size: 25px;
  }

  .amc-service {
    flex-direction: column-reverse; /* Reverse the order of image and content */
  }

  .service-1-img,
  .service-2-img {
    padding: 20px;
    margin: 0 auto; /* Center images horizontally */
  }

  .service-1-content,
  .service-2-content {
    padding-left: 20px; 
  }

  .onm-sublist ul li::before,
  .amc-sublist ul li::before {
    margin-left: -10px; /* Adjust list icon position */
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .onm-service{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -60px;
  }

  .amc-service{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .service-2-img{
    margin-left: 80px;
  }

  .service-2-content{
    position: relative;
    left: -120px;
    margin-top: 50px;
  }

  .service-1-headline, .service-2-headline{
    font-size: 33px;
  }

  .onm-sublist, .amc-sublist{
    font-size: 26px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .service-1-img{
    margin-left: -80px;
  }

  .service-1-content{
    margin-left: -50px;
  }
  
  .service-2-content{
    position: relative;
    left: -70px;
  } 
}

@media (min-width:1424px) and (max-width:1800px) {
  .service-1-content{
    margin-left: 100px;
  }
}

/* @media (min-width: 1024px) {
  .service-1-img, .service-2-img{
    width: 450px;
    height: 380px;
  }

  .service-1-img{
    margin-left: 80px;
  }

  .service-1-content{
    margin-left: 250px;
  }

  .service-2-content{
    position: relative;
    left: 50px;
  }

  .amc-service{
    margin-top: 30px;
  }

  .service-2-img{
    position: relative;
    left: -80px;
  }
} */

/* ================WHY US==================================== */
.why-choose-infotech{
  background-image: url(./../images/pouring.png);
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 10px;
  
}

.whyus-content{
  line-height: 10px;
  margin-left: 65px;
   color: #212529;
}

.why-infotech ul li{
  list-style: none;
  margin-left: 70px;
}

.why-us{
  font-size: 25px;
  color: navy;
  font-weight: bold;
  padding-left: 100px;
}

.why-infotech{
  margin-top: 80px;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 480px) {
  .why-choose-infotech {
    background-image: none;
    margin-bottom: 250px;
  }

  .why-us {
    font-size: 20px !important;
    text-align: center;
    margin-left: -7px;
    margin-right: 5px;
    /* margin-right: 5px; */
  }

  .why-infotech {
    margin-top: 40px;
  }

  .why-infotech ul {
    padding: 0;
  }

  .why-us ul li{
    margin-left: -40px;
  }

  .why-infotech ul li img {
    width: 45px;
    height: 45px;
  }

  .whyus-headline {
    font-size: 1rem;
    font-weight: bold;
  }

  .whyus-content {
    line-height: 1.5rem;
  }

  .whyus-content br {
    display: none; 
  }

  .why-infotech ul li p {
    margin-bottom: 20px;
  }
}


@media (max-width: 768px) { 
  .why-choose-infotech {
    background-size: 500px; /* Cover the entire viewport */
    background-position: 300px 170px; 
  }

  .why-infotech ul li {
    margin-left: 20px; 
  }

  .why-us {
    font-size: 30px; 
    margin-left: -70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .whyus-content {
    margin-left: 70px; 
    font-size: 20px; 
    line-height: 2rem;
    color: black;
   
  }
}

/* @media (max-width: 480px) {
  .why-infotech ul li{
    margin-top: 30px;
  }
  .why-infotech ul {
    flex-direction: column; 
    align-items: center;
  }

  .why-infotech ul li {
    margin-bottom: 20px; 
  }
} */

@media (min-width: 769px) and (max-width:992px) { 
  .why-us{
    font-size: 26px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whyus-headline{
    font-size: 24px;
  }

  .whyus-content{
    font-size: 20px;
    line-height: 2.5rem;
  }

  .why-choose-infotech{
    background-size: 500px;
  }
}

@media (min-width: 993px) and (max-width:1200px) { 
   .why-us{
    font-size: 30px;
    text-align: center;
     display: flex;
    align-items: center;
    justify-content: center;
  }

  .whyus-content{
    font-size: 20px;
    line-height: 2.5rem;
  }

  .why-choose-infotech{
    background-size: 500px;
  }
}

@media (min-width:1200px){
  .why-us{
    font-size: 25px;
  }

  .whyus-content{
    font-size: 20px;
  }

  .why-infotech ul li{
    margin-top: 30px;
  }
}

/* -----cards---- */

  .ezy__service14 {
	/* Bootstrap variables */
	--bs-body-color: #252d39;
	--bs-body-bg: rgb(255, 255, 255);

	/* Easy Frontend variables */
	--ezy-theme-color: rgb(13, 110, 253);
	--ezy-theme-color-rgb: 13, 110, 253;
	--ezy-item-color: #123190;
	--ezy-item-bg: #ffffff;
	--ezy-popup-color: #fff;

	background-color: var(--bs-body-bg);
	overflow: hidden;
	padding: 60px 0;
}

@media (min-width: 768px) {
	.ezy__service14 {
		padding: 100px 0;
	}
}

/* Gray Block Style */
.gray .ezy__service14,
.ezy__service14.gray {
	/* Bootstrap variables */
	--bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__service14,
.ezy__service14.dark-gray {
	/* Bootstrap variables */
	--bs-body-color: #ffffff;
	--bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block Style */
.dark .ezy__service14,
.ezy__service14.dark {
	/* Bootstrap variables */
	--bs-body-color: #ffffff;
	--bs-body-bg: rgb(22, 34, 49);
}

.ezy__service14-heading {
	font-weight: bold;
	font-size: 25px;
	line-height: 25px;
	color: var(--bs-body-color);
}

@media (min-width: 768px) {
	.ezy__service14-heading {
		font-size: 45px;
		line-height: 45px;
	}
}

.ezy__service14-sub-heading {
	font-size: 18px;
	line-height: 25px;
	color: var(--bs-body-color);
	opacity: .8;
}

.ezy__service14-card {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: background-color .15s ease-in-out;
	height: 100%;
}

.ezy__service14-popup-card {
	border-radius: 20px;
	color: var(--ezy-popup-color);
	transform: scale(.9);
	background-color: rgba(var(--ezy-theme-color-rgb), .5);
	backdrop-filter: blur(8px);
	opacity: 0;
	transition: box-shadow .25s ease-in-out, opacity .25s ease-in-out, transform .25s ease-in-out;
}

.ezy__service14-card:hover .ezy__service14-popup-card,
.ezy__service14-card.active .ezy__service14-popup-card {
	transform: scale(1);
	opacity: 1;
}

.ezy__service14-title {
	color: var(--ezy-popup-color);
}

.ezy__service14-content {
	color: var(--ezy-popup-color);
	opacity: .8;
}
  
  
    /*==================== 
      Footer 
  ====================== */
  
  /* Main Footer */
  footer .main-footer{	padding: 20px 0;	background: #252525;}
  footer ul{	padding-left: 0;	list-style: none;}
  
  /* Copy Right Footer */
  .footer-copyright {	background: #222;	padding: 5px 0;}
  .footer-copyright .logo {    display: inherit;}
  .footer-copyright nav {    float: right;    margin-top: 5px;}
  .footer-copyright nav ul {	list-style: none;	margin: 0;	padding: 0;}
  .footer-copyright nav ul li {	border-left: 1px solid #505050;	display: inline-block;	line-height: 12px;	margin: 0;	padding: 0 8px;}
  .footer-copyright nav ul li a{	color: #969696;}
  .footer-copyright nav ul li:first-child {	border: medium none;	padding-left: 0;}
  .footer-copyright p {	color: #969696;	margin: 2px 0 0;}
  
  /* Footer Top */
  .footer-top{	background: #252525;	padding-bottom: 30px;	margin-bottom: 30px;	border-bottom: 3px solid #222;}
  
  /* Footer transparent */
  footer.transparent .footer-top, footer.transparent .main-footer{	background: transparent;}
  footer.transparent .footer-copyright{	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ;}
  
  /* Footer light */
  footer.light .footer-top{	background: #f9f9f9;}
  footer.light .main-footer{	background: #f9f9f9;}
  footer.light .footer-copyright{	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) ;}
  
  /* Footer 4 */
  .footer- .logo {    display: inline-block;}
  
  /*==================== 
      Widgets 
  ====================== */
  .widget{	padding: 20px;	margin-bottom: 40px;}
  .widget.widget-last{	margin-bottom: 0px;}
  .widget.no-box{	padding: 0;	background-color: transparent;	margin-bottom: 40px;
      box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none;}
  .widget.subscribe p{	margin-bottom: 18px;}
  /* .widget li a{	color: #ff8d1e;}
  .widget li a:hover{	color: #4b92dc;} */
  .widget-title {margin-bottom: 20px;}
  .widget-title span {background: #839FAD none repeat scroll 0 0;display: block; height: 1px;margin-top: 25px;position: relative;width: 20%;}
  .widget-title span::after {background: inherit;content: "";height: inherit;    position: absolute;top: -4px;width: 50%;}
  .widget-title.text-center span,.widget-title.text-center span::after {margin-left: auto;margin-right:auto;left: 0;right: 0;}
  .widget .badge{	float: right;	background: #7f7f7f;}
  
  .typo-light h1, 
  .typo-light h2, 
  .typo-light h3, 
  .typo-light h4, 
  .typo-light h5, 
  .typo-light h6,
  .typo-light p,
  .typo-light div,
  .typo-light span,
  .typo-light small{	color: #fff;}
  
  ul.social-footer2 {	margin: 0;padding: 0;	width: auto;}
  ul.social-footer2 li {display: inline-block;padding: 0;}
  ul.social-footer2 li a:hover {background-color:#ff8d1e;}
  ul.social-footer2 li a {display: block;	height:30px;width: 30px;text-align: center;}
  .btn{background-color: #ff8d1e; color:#fff;}
  .btn:hover, .btn:focus, .btn.active {background: #4b92dc;color: #fff;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 250ms ease-in-out 0s;
  -moz-transition: all 250ms ease-in-out 0s;
  -ms-transition: all 250ms ease-in-out 0s;
  -o-transition: all 250ms ease-in-out 0s;
  transition: all 250ms ease-in-out 0s;
  
  }
  
  
  