/*----------------------------------------------------
	SITE MAIN STRUCTURE
------------------------------------------------------*/

.site_wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
}
.container_full {
  width: 100%;
  float: left;
  margin: auto;
  padding: 0px 50px 0px 50px;
}

.container {
  width: 1280px;
  margin: auto;
}

#logo5 {
  float: left;
  display: block;
  width: 100%;
  min-height: 75px;
  margin-top: 0px;
  position: relative;
  text-indent: -999em;
  background: url(../images/logo5.png) no-repeat left top;
}

/* header area adinationals */
.logo {
  float: left;
  width: 50%;
  margin-top: 0px;
  padding: 0px 0px;
}

.menu_main {
  float: right;
  width: 50%;
  z-index: 9999;
  text-align: right;
  padding-top: 12px;
}
.menu_main i {
  text-align: right;
  color: #fff;
  font-size: 32px;
}
/* scroll up */
.scrollup {
  width: 40px;
  height: 40px;
  opacity: 1;
  position: fixed;
  bottom: 22px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  background: url(../images/scroll-top-arrow.png) no-repeat left top;
  z-index: 9001;
}
.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
  z-index: 9999;
}
.cd-panel::after {
  /* overlay layer */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-panel.cd-panel--is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
  z-index: 9999;
}
.cd-panel.cd-panel--is-visible::after {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}
.cd-panel__header {
  position: fixed;
  width: 90%;
  height: 50px;
  line-height: 50px;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
  /*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);*/
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.cd-panel__header h1 {
  padding-left: 7%;
  font-size: 20px;
  margin: 10px 0px 0px 0px;
  color: #0078bf;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-weight: 500;
}
.cd-panel--from-right .cd-panel__header {
  right: 0;
}
.cd-panel--from-left .cd-panel__header {
  left: 0;
}
.cd-panel--is-visible .cd-panel__header {
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (min-width: 768px) {
  .cd-panel__header {
    width: 70%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel__header {
    width: 28%;
  }
}
.cd-panel__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-panel__close::before,
.cd-panel__close::after {
  /* close icon created in CSS */
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 20px;
  background-color: #fff;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-panel__close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-panel__close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-panel__close:hover {
  background-color: #424f5c;
}
.cd-panel__close:hover::before,
.cd-panel__close:hover::after {
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cd-panel__close:hover::before {
  -webkit-transform: rotate(220deg);
  -ms-transform: rotate(220deg);
  transform: rotate(220deg);
}
.cd-panel__close:hover::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-panel--is-visible .cd-panel__close::before {
  -webkit-animation: cd-close-1 0.6s 0.3s;
  animation: cd-close-1 0.6s 0.3s;
}
.cd-panel--is-visible .cd-panel__close::after {
  -webkit-animation: cd-close-2 0.6s 0.3s;
  animation: cd-close-2 0.6s 0.3s;
}
@-webkit-keyframes cd-close-1 {
  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes cd-close-1 {
  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes cd-close-2 {
  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes cd-close-2 {
  0%,
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.cd-panel__container {
  position: fixed;
  width: 90%;
  height: 100%;
  top: 0;
  background: #000;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.cd-panel--from-right .cd-panel__container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cd-panel--from-left .cd-panel__container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cd-panel--is-visible .cd-panel__container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
@media only screen and (min-width: 768px) {
  .cd-panel__container {
    width: 70%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel__container {
    width: 100%;
  }
}
.cd-panel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px 7%;
  overflow: auto;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}

.cd-panel__content h4 {
  font-size: 1.2rem;
  color: #f23801;
  line-height: 1.4;
  margin: 1.5em 0 1.2em;
  text-align: left;
  font-weight: 600;
}

.cd-panel__content h5 {
  font-size: 1.2rem;
  color: #f23801;
  line-height: 1.4;
  margin: 1.5em 0 1.2em;
  text-align: left;
  font-weight: 600;
}
.cd-panel__content p i {
  font-size: 2.5rem;
  color: #14133b;
  float: left;
  padding-right: 18px;
  padding-bottom: 15px;
}

.cd-panel__content p {
  font-size: 0.95rem;
  color: #14133b;
  margin: 1em 0;
  text-align: left;
  font-weight: 600;
}
.cd-panel__content p span {
  float: left;
  padding-top: 8px;
}
.cd-panel__content p:first-of-type {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .cd-panel__content p {
    font-size: 0.95rem;

    text-align: left;
    font-weight: 600;
  }
}
.register-submit {
  margin: 10px 0px 0px 0px !important;
  padding: 12px 0px;
  border-radius: 0px;
  width: 100% !important;
  max-width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #1f479f;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #fff;
  border: 0px;
}
.register-submit:hover {
  background: #027acd;
  color: #fff;
}

.enquiry-form label {
  float: left;
  width: 100%;
  font-weight: normal;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 6px;
}

.enquiry-form input {
  float: left;
  width: 100%;
  padding: 7px 12px;
  border: 1px solid #e3e3e3;
  margin-bottom: 18px;
}

.enquiry-form textarea {
  float: left;
  width: 100%;
  padding: 7px 12px;
  border: 1px solid #e3e3e3;
  margin-bottom: 18px;
}

.menu-left {
  width: 50%;
  float: left;
  border-right: 1px solid #434343;
  padding-top: 7%;
  height: 100%;
}

.menu-left ul {
}

.menu-left ul li {
  width: 100%;
  float: left;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

.menu-left ul li a {
  color: #fff;
  text-decoration: none;
}

.menu-left ul li a:hover {
  color: #e22d2c;
  /* padding-left: 0px; */
}

.menu-left ul li span {
  font-size: 16px;
  font-weight: 700;
  color: #767676;
}

.menu-right {
  width: 50%;
  float: left;
  padding-left: 150px;
  padding-top: 7%;
}

.menu-right h4 {
  color: #e22d2c;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.menu-right ul li {
  float: left;
  padding-right: 15px;
  color: #fff;
}


.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding-left: 40px;
  padding-top: 10px;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 18px;
}
/* .dropdown-content a:hover {
  padding-left: 40px;
} */
.dropdown:hover .dropdown-content {
  display: block;
}





.menu-right p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 15px;
}
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
}

.viewport-header {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  /*background: rgba(0,0,0,0.6); */
}

.viewport-header h1 {
  font-family: "Dosis", sans-serif;
  color: #fff;
  text-transform: uppercase;

  line-height: 1.6;
  font-weight: 800;
  font-size: 70px;
  text-align: center;
  letter-spacing: 2px;
}

.viewport-header h1 span {
  display: block;
  font-family: "Playfair Display", serif;
  color: #ffcc00;
  font-size: 90px;
}

/*.content video {
  width: 100%;
  display: block;
}
.content:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}*/

/*video {
  object-fit: cover;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.header12{
  position: relative;
  color: white;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}*/

.about-section {
  background-color: #fff;
  padding: 80px 0 100px;
}

.about-section h1 {
  font-family: "Gilda Display", serif;
  text-align: center;
  color: #000;
  font-size: 44px;
  line-height: 69px;
}

.count-ani {
  padding: 60px 0 50px;
  text-align: center;
  font-family: "Gilda Display", serif;
}

.count-ani p {
  color: #000;
  font-size: 20px;
  font-family: "Gilda Display", serif;
  margin-top: 25px;
}

.count-ani span {
  color: #000;
  font-size: 52px;
  font-weight: 500;
}

.solutions-section {
  background-color: #00082e;
  padding: 70px 0 40px;
}

.solutions-section-left {
  width: 20%;
  float: left;
  margin-right: 10%;
}

.solutions-section-left h2 {
  font-family: "Gilda Display", serif;
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  line-height: 55px;
  margin-bottom: 0px;
}

.solutions-section-center {
  width: 40%;
  float: left;
  margin-right: 15%;
}

.solutions-section-center p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.8px;
  padding-top: 10px;
  text-align: left;
}

.solutions-section-right {
  width: 15%;
  float: left;
}

.solutions-section-right .solutions-btn {
  border: 1px solid #fff;
  border-radius: 50%;
  color: #000;
  font-size: 26px;
  line-height: 58px;
  letter-spacing: 0.5px;
  font-family: "Roboto", sans-serif;
  height: 75px;
  width: 75px;
  text-align: center;
  display: inline-block;
  padding-top: 16px;
  margin-top: 17px;
  background-color: #fff;
}
.solutions-section-right a:hover .solutions-btn {
  border: 1px solid #e22d2c;
  background-color: #e22d2c;
  color: #fff;
}
.solutions-section-right a:hover .solutions-btn img {
  transform: rotate(43deg);
  filter: brightness(0) invert(1);
}

.product-section {
  background-color: #fff;
  padding: 100px 0 65px;
}

.product-section-left {
  width: 20%;
  float: left;
  margin-right: 10%;
}

.product-section-left h2 {
  font-family: "Playfair Display", serif;
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 0px;
}

.product-section-center {
  width: 40%;
  float: left;
  margin-right: 15%;
}

.product-section-center p {
  font-family: "Roboto", sans-serif;
  color: #afafaf;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
  padding-top: 10px;
  text-align: justify;
}

.product-section-right {
  width: 15%;
  float: left;
}

.product-section-right .product-btn {
  border: 1px solid #f37330;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Roboto", sans-serif;
  height: 82px;
  width: 82px;
  text-align: center;
  display: inline-block;
  padding-top: 16px;
  margin-top: 6px;
  background-color: #f37330;
}

.product-section-right .product-btn:hover {
  border: 1px solid #dc5813;
  background-color: #f37330;
  color: #000;
}

.product-text-left {
  width: 24%;
  float: left;
  margin-right: 16%;
  margin-top: 100px;
}

.product-text-left img {
  width: 82%;
}

.product-text-left h6 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-style: italic;
  margin-bottom: 30px;
}
.product-text-left h6 span {
  color: #e31e24;
  font-style: italic;
  font-size: 13px;
  line-height: 0.8em;
}

.product-text-left h2 {
  color: #202c39;
  font-family: "Playfair Display", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.2em;
}
.product-text-left h2 span {
  color: #c5c8cc;
  font-style: italic;
}

.product-text-left p {
  color: #202c39;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 25px;
  padding: 30px 0 40px;
}

.product-text-left a {
  color: #000824;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  text-decoration: underline;
}

.product-text-right {
  width: 60%;
  float: left;
  margin-right: 0%;
}

.product-box {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  padding-top: 54px;
  padding-bottom: 34px;
  display: inline-block;
  color: #000;
}

.product-box:hover {
  background-color: #f9f9f9;
  padding-top: 54px;
  padding-bottom: 34px;
  padding-right: 35px;
  padding-left: 35px;
  transition: ease-in-out 0.5s !important;
  cursor: pointer;
}

.product-box h2 {
  font-size: 24px;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #202c39;
}

.product-box p {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 25px;
}

.product-box-1 {
  width: 5%;
  float: left;
  margin-right: 5%;
  padding-top: 15px;
}

.product-box-1 h2 {
  font-size: 32px;
  font-family: "Gilda Display", serif;
}

.product-box-2 {
  width: 30%;
  float: left;
  margin-right: 7%;
}

.product-box-3 {
  width: 45%;
  float: left;
  margin-right: 3%;
}

.product-box-4 {
  width: 5%;
  float: left;
}

.product-box-4 i {
  border-radius: 50%;
  color: #202c39;
  font-size: 20px;
  height: 60px;
  width: 60px;
  background-color: #f9f9f9;
  display: block;
  line-height: 60px;
  text-align: center;
}

.product-box:hover .product-box-4 i {
  background-color: #e31e24;
  color: #fff;
}

/* featured section 12 */
.featured_section12 {
  float: left;
  width: 100%;
  padding: 120px 0px 100px 0px;
  text-align: center;
  background: #00082e url(../images/pattern1.jpg) repeat left top;
}

.featured_section12 h6 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-style: italic;
  margin-bottom: 30px;
}
.featured_section12 h6 span {
  color: #e31e24;
  font-style: italic;
  font-size: 13px;
  line-height: 0.8em;
}

.featured_section12 h2 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 80px;
}
.featured_section12 h2 span {
  color: #c5c8cc;
  font-style: italic;
}

.featured_section12.two {
  background: #00082e;
}
.featured_section12 .peosays {
  width: 100%;
  margin: 0 auto;
}
.featured_section12 .peosays .box {
  float: left;
  width: 100%;
  background: transparent;
  /*border: 1px solid #eee;*/
  /* border-right: 1px solid #eee;*/
  border-radius: 3px;
  text-align: left;
  padding: 0px 40px 0px 20px;

  line-height: 30px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.featured_section12 .peosays .who {
  float: left;
  width: 100%;
  text-align: left;
  padding: 40px 0px 18px 0px;
  background: url(../images/down-arrow.png) no-repeat 45px top;
  margin-top: -2px;
  font-size: 12px;
  color: #fff;
}
.featured_section12 .peosays .who img {
  border-radius: 100%;
  float: left;
  margin-right: 18px;
}
.featured_section12 .peosays .who strong {
  font-size: 14px;
  color: #fff;
  display: block;
  line-height: 16px;
  font-weight: 600;
  margin-top: 5px;
}

.brands-section {
  padding: 120px 0 70px;
}

.brands-section h6 {
  color: #202c39;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}
.brands-section h6 span {
  color: #e31e24;
  font-style: italic;
  font-size: 13px;
  line-height: 0.8em;
}

.brands-section h2 {
  color: #202c39;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 80px;
  font-style: italic;
  text-align: center;
}
.brands-section h2 span {
  color: #c5c8cc;
  font-style: italic;
}

.blog-section {
  padding: 80px 0;
}

.blog-section h6 {
  color: #202c39;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}
.blog-section h6 span {
  color: #e31e24;
  font-style: italic;
  font-size: 13px;
  line-height: 0.8em;
}

.blog-section h2 {
  color: #202c39;
  font-family: "Playfair Display", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 80px;
  font-style: italic;
  text-align: center;
}
.blog-section h2 span {
  color: #c5c8cc;
  font-style: italic;
}
.blog-box {
  width: 30%;
  float: left;
  margin-right: 5%;
}

.blog-box:last-child {
  margin-right: 0%;
}

.blog-box img {
  padding-bottom: 15px;
}

.blog-box h5 {
  color: #e22d2c;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.blog-box h3 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  padding-bottom: 21px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 15px;
}

.read-more {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.read-more i {
  color: #e22d2c;
  font-weight: 600;
}

.footer {
  background: #001f3f;
}

.footer-left {
  width: 38%;
  float: left;
  margin-right: 6%;
  border-right: 1px solid #234151;
  padding-right: 5%;
  min-height: 495px;
}

.footer-right {
  width: 56%;
  float: left;
  margin-right: 0%;
}

.footer-about {
  padding-top: 80px;
}

.footer-about h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 30px;
  /* font-style: italic; */
  text-align: left;
}

.footer-about p {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.8px;
  line-height: 29px;
  padding-bottom: 25px;
}

.footer-about a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  text-decoration: underline;
}

.footer-quicklinks {
  padding-top: 80px;
  border-bottom: 1px solid #234151;
}

.footer-quicklinks h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 20px;
  /* font-style: italic; */
  text-align: left;
}

.footer-quicklinks p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.8px;
  line-height: 29px;
}

.footer-links-1 {
  width: 25%;
  float: left;
  margin-right: 5%;
  margin-bottom: 30px;
}

.footer-links-2 {
  width: 27%;
  float: left;
  margin-right: 5%;
  margin-bottom: 30px;
}

.footer-links-3 {
  width: 38%;
  float: left;
  margin-right: 0%;
  margin-bottom: 30px;
}

.footer-links-3 h4 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 25px;
  /* font-style: italic; */
  text-align: left;
}
.footer-links-3 h6 {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.8px;
  line-height: 21px;
}

.input-box {
  width: 100%;
  background: #0d2a49;
  border-radius: 7px;
  padding: 5px 20px;
}

.input-box input {
  width: 100%;
  height: 36px;
  background: transparent;
  border: 0;
}

.input-box {
  position: relative;
  color: #454545;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}
.input-box input::placeholder {
  font-family: "Poppins", sans-serif;
}
.input-box .fa-paper-plane-o {
  position: absolute;
  top: 11px;
  right: 21px;
  color: #fff;
}

.copyrights {
  padding-top: 20px;
  display: ruby-text;
}

.copyrights p {
  color: #454545;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.copyrights-left {
  width: 40%;
  float: left;
  margin-bottom: -8px;
}

.copyrights-left ul li {
  float: left;
  padding-right: 15px;
  color: #fff;
}

.copyrights-right {
  width: 60%;
  float: left;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.about-banner {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  color: #fff;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.about-banner .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-custom {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb-custom .active {
  color: #00d0a2; /* teal active text */
}

h1.about-title {
  font-weight: 800;
  font-size: 3rem;
  text-align: center;
  color: #fff;
  width: 753px;
  line-height: 52px;
  margin: 0 auto;
  padding-top: 76px;
}

@media (max-width: 576px) {
  h1.about-title {
    font-size: 2rem;
  }
}
.banner-area.banner-area-two {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  background-color: #090218;
}
.banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-top: 220px;
  padding-bottom: 100px;
}
.banner-area.banner-area-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: FocuS 1s linear 1s infinite;
}
.d-table {
  width: 100%;
  height: 100%;
}
.banner-area.banner-area-two .banner-text {
  margin-top: 100px;    padding-left: 35px;
}
.banner-area .banner-text {
  position: relative;
  max-width: 690px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: -8px;
}
.banner-area .banner-text span {
  color: #ffffff;
    font-size: 20px;
    display: block;
    margin-bottom: 17px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}
.banner-area.banner-area-two .banner-text h1 {
      font-size: 51px;
    font-family: "Playfair Display", serif;
    line-height: 1.5;
}
.banner-area .banner-text h1 {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.1;
}
.banner-area .banner-text p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 35px;
}
.default-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #d80650;
}
.default-btn.active {
  margin-left: 20px;
  color: #0e0129;
  background-color: #ffffff;
}
.banner-area.banner-area-two .banner-site-img.four {
  top: -5px;
}
.banner-area.banner-area-two .banner-site-img {
  position: relative;
  top: 60px;
  width: 100%;
}
.d-table-cell {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}
/*
Focus Area Style
======================================================*/
@keyframes FocuS {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.brands-section.service-section h2 {
      font-size: 54px;
    text-align: center;
    margin-bottom: 50px;
}
.brands-section.service-section span {
    background-image: url(../images/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: left bottom;
    color: #000!important
}
.brands-section.service-section {
  padding: 70px 0 70px;
}
.brands-section.service-section p {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
  padding-top: 10px;
  text-align: justify;
}
/* ─── Section Heading ─────────────────────────────────────────────── */
.section-header h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}
.section-header p {
 font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    letter-spacing: 0.5px;
    width: 80%;
    margin: 0 auto;
}

/* ─── Tool Card ───────────────────────────────────────────────────── */
.tool-card {
  /*background: #162033;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 3rem 2rem;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 10px / 80px;*/
  /* /* border-radius: 5px 56px 5px; */
  text-align: left;
}

.tool-card i {
  font-size: 58px;
  margin-bottom: 1.75rem;
  color: #635bff;
  display: block;
  text-align: left;
}
.tool-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: #000;
  text-align: left;
      font-family: "Playfair Display", serif;
}
.tool-card p {
      color: #000;
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}
.tool-card a {
  font-weight: 600;
  color: #6c8bff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}
.tool-card a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
}
.tool-card a:hover::after {
  transform: translateX(4px);
}

.secure-icon{
  display: block;
    width: 80px;
    height: 80px;
    line-height: 95px;
    background: #ffe9e9;
    border-radius: 50%;
    font-size: 30px;
    color: #ca010f;
    transition: 0.4s;
    margin-bottom: 25px;
    text-align: center;
   
  }

.secure-icon img{
      width: 50%;
     /*filter: brightness(0%);*/
  }

.secure-printing-box {
    width: 30%;
    float: left;
    margin-right: 5%;
    margin-bottom: 20px;
    transition: 0.4s;
  }
.secure-printing-box:hover {
    transform: translateY(-10px);
  }
.secure-printing-box:nth-child(3n+3) {
    margin-right: 0%;
}

.secound-section {
  background: #f8f5ef;
  color: #fff;
  line-height: 1.6;
}
.section-header h1 {
       font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 42px;
    line-height: 64px;
    margin: 0 auto;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 78%;
}

.section-header h1 span {
  color: #ff9c9c;
  font-style: italic;
}

.section-header h1:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e22d2c;
}
.our-security {
  padding: 100px 0 100px;
}

.security-content-item {
  margin-bottom: 40px;
  width: 100% !important;
}

.security-content-item:last-child {
  margin-bottom: 0;
}

.security-content-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}

.security-content-item p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
}

.security-image {
  margin-bottom: 40px;
}

.security-image figure {
  display: block;
  border-radius: 30px;
}

.security-image img {
  width: 100%;
  aspect-ratio: 1 / 0.51;
  object-fit: cover;
  /* border-radius: 30px; */
  border-radius: 5px 63px 5px;
}

.security-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
}

.security-list-item {
  width: calc(50% - 20px);
  background: url(https://html.awaikenthemes.com/proshield/images/icon-check.svg)
    no-repeat;
  background-size: 26px auto;
  background-position: top left;
  padding-left: 35px;
}

.security-list-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}

.security-list-item p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
}
.section-three h2 {
  font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 44px;
    line-height: 70px;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
    text-align: left;
    margin-bottom: 50px;
}
/*.section-three h2 span {
  color: #c5c8cc;
  font-style: italic;
}*/
.section-three span {
    background-image: url(../images/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: left bottom;
}

.section-three p {
        margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
    letter-spacing: 0.5px;
    padding-top: 20px;
}
/* section-four-styles */
.featured-imagebox {
    z-index: 1;
    background-color: #fff;
    width: 100%;
    float: left;
    position: relative;
    height: 100%;
}
.featured-thumbnail {
    position: relative;
    background-color: #fff;
    padding: 42px 30px 40px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .15);
    height: 100%;
}
.featured-thumbnail:before {
    content: "";
    position: absolute;
    z-index: 1;
    background-color: rgba(25, 175, 250, .6);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.featured-content {
    position: relative;
    z-index: 1;
}
.elementor-cta__number {
    line-height: 120px;
    -webkit-text-stroke-color: #e6e6e6;
    -webkit-text-stroke: 1px rgba(0, 0, 0, .15);
    font-size: 120px;
    line-height: 1;
    font-weight: 800;
    color: transparent;
}
.featured-title {
    padding-bottom: 10px;
}

.featured-title h3 {
    color: #0a1624;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 12px;
    line-height: 25px;
    letter-spacing: 0.3px;
}
.featured-desc {
    margin-bottom: 0px;
}
.featured-desc p {
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
}
.featured-thumbnail:after {
    position: absolute;
    bottom: -11px;
    right: -11px;
    content: "";
    transform: rotate(0);
    -webkit-transform: rotate(0);
    border: solid;
    border-width: 1px 0 0 1px;
    display: inline-block;
    padding: 5px;
    -webkit-transition: all .9s ease-out;
    -moz-transition: all .9s ease-out;
    transition: all .9s ease-out;
    border-color: rgba(0, 0, 0, .15);
}

.featured-imagebox:hover .featured-thumbnail {
    color: #fff;
    background-color: unset;
    z-index: 2;
}

.featured-imagebox:hover .featured-thumbnail:before {
    opacity: 1;
}

.featured-imagebox:hover .featured-desc p {
    color: #fff;
}
.featured-imagebox:hover .featured-title h3 {
    color: #fff;
}









.services-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #0a0f1d;
}

.services-section h2 {
  font-family: "Playfair Display", serif;
    color: #fff;
    font-weight: 400;
    font-size: 42px;
    line-height: 70px;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
}
.services-section h2 span {
  color: #ff9c9c;
  font-style: italic;
}

.services-section .subheading {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
}

.service-card {
  background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.service-card:hover {
  background-color: #ffeded;
  transform: translateY(-8px);
}

.service-icon img {
  width: 100%;
  margin-bottom: 20px;
  object-fit: cover;
  height: 250px;
}
.secound-section .service-icon img {
  width: 100%;
  margin-bottom: 20px;
  object-fit: contain;
  height: 70px;
}
.service-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #e22d2c;
  text-align: left;
}

.service-desc {
  font-size: 0.95rem;
  color: #c9cbd2;
  margin-bottom: 25px;
}
.service-desc p {
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 29px;
    text-align: left;
    letter-spacing: 0.5px;
}

/* Dotted pattern using radial gradients */
.dotted-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  z-index: 0;
  pointer-events: none;
}

.container.position-relative {
  z-index: 1;
}

/* section-five */
.section-five {
  padding: 40px 0 0;
  position: relative;
  background: #f8f5ef;
  overflow: hidden;
}

.section-five .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-five .section-title span {
  font-style: italic;
    color: #ff9c9c;
}
.section-five p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

.section-five .section-title .badge {
  background-color: #e5f1ff;
  color: #007bff;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 5px;
  font-weight: 600;
}



.section-five .section-title h2 {
  font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 42px;
    line-height: 70px;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
}
.section-six h2 {
      font-family: "Playfair Display", serif;
    color: #fff;
    font-weight: 400;
    font-size: 42px;
    line-height: 70px;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
}
.section-six h2 span {
  font-style: italic;
  color: #ff9c9c;
}
.section-six {
      padding: 60px 0 90px;
}
.section-six p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
      font-size: 16px;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
}

.section-five .service-box {
  background: linear-gradient(135deg, #a9a3a3, #4c4646);
  /* border-radius: 12px; */
  border-radius: 12px / 50px;
  text-align: center;
  padding: 50px 25px 40px;
  position: relative;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 1;
  min-height: 363px;
  transform: perspective(750px) translate3d(0px, 0px, -250px) rotateX(27deg)
    scale(0.9, 0.9);
  border-radius: 20px;
  border: 5px solid #e6e6e6;
  box-shadow: 0 70px 40px -20px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease-in-out transform;

  &:hover {
    transform: translate3d(0px, 0px, -250px);
  }
}

.section-five .icon-wrapper {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a9a3a3, #4c4646);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  transform: translateX(-50%) rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-five .icon-wrapper i,
.section-five .icon-wrapper span {
  font-size: 20px;
  transform: rotate(-45deg);
  font-weight: 600;
}

.section-five .service-title {
  margin-top: 40px;
  font-weight: 700;
  font-size: 23px;
  color: #fff;
  margin-bottom: 12px;
}

.section-five .service-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin: 10px auto;
}

.section-five .read-more:hover {
  text-decoration: underline;
}

/* Background elements (optional styling) */
.section-five .background-elements {
  position: absolute;
  right: 0;
  top: 30px;
  width: 100%;
  height: 100%;
  background-image: url("https://modinatheme.com/html/zotech/assets/img/shape/shape-24.png"); /* Add your dotted pattern or background image if needed */
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.05;
  z-index: 0;
}
.service-4 .shape-1 {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}
/* end-styles-section-five */

.packaging-overview-table {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 50px;
}

.packaging-overview-table h2 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-size: 36px;
  font-family: "Playfair Display", serif;
}
.packaging-overview-table td strong {
  font-size: 17px;
  color: #00082ee6;
}

.packaging-overview-table thead {
  background: linear-gradient(135deg, #e22d2c, #000000);
  color: #fff;
}

.packaging-overview-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.packaging-overview-table tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.3s;
}

.packaging-overview-table td,
.packaging-overview-table th {
  vertical-align: middle !important;
}

/* section-six-styles */
.second-services-area .sticky {
  position: sticky;
  top: 110px;
}
.second-services-area .services-post {
  padding: 0 50px;
}
.second-services-area .services-post .service-warp {
  max-width: 550px;
}
.second-services-area .services-post .service-warp ul {
  margin-bottom: 20px;
}
.second-services-area .services-post .service-warp ul li {
  display: inline-block;
  margin-right: 10px;
}
.second-services-area .services-post .service-warp ul li:last-child {
  margin-right: 0;
}
.second-services-area .services-post .service-warp ul li.number {
  width: 30px;
  border-radius: 100px;
  height: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  background-color: #0ec9ac;
}
.second-services-area .services-post .service-warp ul li span {
  font-size: 18px;
  font-weight: 400;
}
.second-services-area .services-post .service-warp h3 {
      font-size: 30px;
    margin-bottom: 20px;
    line-height: 43px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #ff9c9c !important;
}
.second-services-area .services-post .service-warp p {
  font-size: 16px;
    color: #ddd;
    letter-spacing: .5px;
}
.bg-04182F {
  background-color: #04182f;
}
.section-six .service-image img {
  object-fit: cover;
  width: 100%;
  height: 350px;
  border-radius: 20px;
}

/* end-section-six-styles */

.section-journey {
  padding: 70px 0 70px;
}

.section-journey h2 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 42px;
    line-height: 70px;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
}

.section-journey h2 span {
    color: #ff9c9c;
    font-style: italic;
}

.section-journey h3 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
}

.section-journey h3 i{   
    font-size: 34px;
    color: #a7a7a7;
    padding-right: 15px;
  }

  .section-journey h3 img{   
        float: left;
    margin-right: 15px;
  }

.section-journey p {
    font-family: 'Poppins', serif;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.image-mask {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  background-image: url("../images/innovative-educational-img.jpg");
  background-size: cover;
  background-position: center;
  mask-image: url("https://valom-nextjs.vercel.app/assets/img/others/goal-img-mask1-1.png");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("https://valom-nextjs.vercel.app/assets/img/others/goal-img-mask1-1.png");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  border: 2px solid #c7edf0;
  border-radius: 30px;
  background-size: cover;
  height: 51vh;
}
.img-bg-shape {
  position: absolute;
  width: 518px;
  height: 393px;
  background: linear-gradient(
    23.98deg,
    #128982 15%,
    rgba(186, 226, 226, 0.02) 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  left: -22px;
  right: 0;
  top: 20px;
}
.main-title {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-top: 15px;
  line-height: 1.4;
  margin-bottom: 50px;
  font-family: "Playfair Display";
}
.main-title span {
  color: #c5c8cc;
  font-style: italic;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-icon {
  /* background-color: #00867d; */
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.feature-title {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}

.feature-text {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 30px;
  }
}
.ttm-row.services-sectionn {
  padding: 50px 0 50px;
}
.ttm-bg {
  position: relative;
}
.ttm-bg.ttm-bgimage-yes > .ttm-bg-layer,
.ttm-bg.ttm-col-bgimage-yes .ttm-bg-layer-inner {
  opacity: 0.87;
}
.bg-img1 {
  background-image: url(../images/conclusion-bg-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ttm-bg-layer {
  background-color: #0b0c26;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.ttm-bg-layer {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.featured-icon-box.style3 {
  padding: 49px 25px 36px;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}
.mb-30 {
  margin-bottom: 30px !important;
}
.featured-icon-box.style3::before {
  border-color: #ffffff !important;
}
.featured-icon-box.style3:before {
  border-top: 2px dashed;
  border-bottom: 2px dashed;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.featured-icon-box.style3:after,
.featured-icon-box.style3:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.55s, transform 0.55s;
}
.featured-icon-box.style3:after {
  border-left: 2px dashed;
  border-right: 2px dashed;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.featured-icon-box.style3:after,
.featured-icon-box.style3:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.55s, transform 0.55s;
}
.featured-icon-box.style3:after {
  border-color: #ffffff !important;
}
.featured-icon-box.style3:hover {
  border-color: transparent;
}
.featured-icon-box.style3:hover:after,
.featured-icon-box.style3:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.services-sectionn.section-seven h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-top: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}
.services-sectionn.section-seven h2 span {
  color: #c5c8cc;
  font-style: italic;
}
.services-sectionn.section-seven p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
}
.featured-title h5 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}
.featured-icon-box .ttm-icon {
  margin-bottom: 0px;
}
.ttm-icon.ttm-icon_element-size-lg {
  height: 62px;
  width: 62px;
  line-height: 62px;
}
.ttm-icon.ttm-icon_element-size-lg i {
  font-size: 45px;
}
.ttm-icon i {
  display: inline-block;
  position: absolute;
  top: 49px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #e22d2c;
}
.cta-section .about-section {
  padding: 50px 0 50px;
}
.packaging-overview-table {
  background: linear-gradient(135deg, #f8fafc 60%, #eaf2fb 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(2, 19, 39, 0.1);
  padding: 2rem 1rem 2.5rem 1rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: visible;
}
.packaging-overview-table h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #021327;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(34, 45, 60, 0.07);
  position: relative;
  z-index: 2;
}
.packaging-overview-table h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e22d2c 60%, #021327 100%);
  border-radius: 2px;
  margin: 16px auto 0 auto;
  opacity: 0.8;
}
.packaging-overview-table .table {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(2, 19, 39, 0.07);
  overflow: hidden;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}
.packaging-overview-table .table thead th {
  background: linear-gradient(90deg, #021327 80%, #742121 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  text-align: center;
  vertical-align: middle;
  padding: 1.1rem 0.75rem;
  letter-spacing: 0.7px;
  text-shadow: 0 1px 4px rgba(34, 45, 60, 0.08);
  border-bottom: 3px solid #e22d2c;
}
.packaging-overview-table .table tbody td {
  background: #f8fafc;
  color: #222;
  font-size: 13px;
  border: none;
  padding: 1.2rem 0.75rem;
  vertical-align: middle;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.packaging-overview-table .table tbody tr {
  transition: background 0.2s, box-shadow 0.2s;
}
.packaging-overview-table .table tbody tr:hover {
  background: #eaf2fb;
  box-shadow: 0 2px 12px rgba(34, 45, 60, 0.06);
  z-index: 1;
}
.packaging-overview-table .table tbody td:first-child {
  font-weight: 800;
  color: #e22d2c;
  font-size: 1.08rem;
  letter-spacing: 0.7px;
  background: linear-gradient(90deg, #fff 70%, #ffeaea 100%);
  border-left: 4px solid #e22d2c;
  border-radius: 12px 0 0 12px;
}
.packaging-overview-table .table tbody td:last-child {
  border-radius: 0 12px 12px 0;
}
.packaging-overview-table .table tbody tr:not(:last-child) td {
  border-bottom: 1.5px dashed #dbeafe;
}
@media (max-width: 991px) {
  .packaging-overview-table {
    padding: 1.2rem 0.3rem 1.5rem 0.3rem;
  }
  .packaging-overview-table h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .packaging-overview-table h2 {
    font-size: 1.1rem;
  }
  .packaging-overview-table .table thead th,
  .packaging-overview-table .table tbody td {
    font-size: 0.93rem;
    padding: 0.7rem 0.4rem;
  }
  .packaging-overview-table .table tbody td:first-child,
  .packaging-overview-table .table tbody td:last-child {
    border-radius: 8px;
  }
}
.hero-section.ai2 {
  background: url("../images/page-two-main-img.png") no-repeat center;
  background-size: cover;
      height: 100vh;
}
.welcome-content {
  position: relative;
  z-index: 1;
  margin-top: 200px;
}
.promo-section {
  margin-bottom: 20px;
}
.welcome-content h1 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  line-height: 75px;
}
.welcome-content p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}
.hero-section img {
  max-width: 100%;
  margin-top: 60px;
}
.about.style-6 {
  position: relative;
  padding: 100px 0 100px;
}
.about.style-6 .bubbles {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}
.about.style-6 .bubbles {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}
.about.style-6 .section-head h2 {
    color: #202c39;
    font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 24px;
}
.about.style-6 .section-head h2 span {
    background-image: url(../images/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: left bottom;
    color: #000 !important;
}
.about.style-6 .text p {
     font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 17px;
    font-weight: 300;
    line-height: 36px;
    padding-top: 10px;
    text-align: left;
}
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate-center {
  -webkit-animation: rotate-center 100s linear infinite both;
  animation: rotate-center 100s linear infinite both;
}
.hero-section-two {
  position: relative;
  background: url("../images/expertise.webp") no-repeat center
    center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-section-two p {
      font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.5px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
      font-family: "Playfair Display", serif;
    color: #fff;
    font-weight: 400;
    font-size: 52px;
    line-height: 86px;
    margin: 0 auto;
    margin-bottom: 24px;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    width: 78%;
}
.hero-content h1 span {
   color: #ff9c9c !important;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content .btn-discover {
    font-size: 14px;
    padding: 10px 24px;
  }
}

/* Background and text */

.visitors-section {
  background-color: #f9f4f4;
  padding: 60px 0 50px;
}

.visitors-section h6{
       font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 30px;
    letter-spacing: 0.8px;
    padding-bottom: 43px;
    font-style: italic;
    text-align: center;
    padding-top: 34px;
}

.security-printing{padding: 60px 0 50px;}

.security-printing h3{
   font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px;
}
.security-printing p{
   font-family: "Poppins", sans-serif ;
    color: #000;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 30px;
    letter-spacing: 0.8px;
    padding-bottom: 15px;
}
.industry-expertise h1 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 60px;
    line-height: 86px;
    margin: 0 auto;
    margin-bottom: 24px;
     letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 78%;
}

.industry-expertise h1 span {
  color: #ff9c9c;
 }

.industry-expertise h1:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e22d2c;
}

.industry-expertise p{
  font-family: "Poppins", sans-serif;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 36px !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
    width: 80%;
    margin: 0 auto;
}

.visitors-section h2 {
  color: #192042;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.visitors-section .highlight {
  color: #e22d2c;
}

.visitors-section p {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
  /* padding-top: 10px; */
}
.visitors-section strong {
  font-size: 20px;
  color: #192042;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.offset-printing .section-bg {
  /*background: radial-gradient(
      circle at 20% 20%,
      rgb(108 61 244 / 38%) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(108, 61, 244, 0.05) 0%,
      #00000017 40%
    );*/
  padding: 80px 0;
}

.offset-printing .section-title {
 font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px;
}
.offset-printing p {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.8px;
}
.offset-printing .highlight {
  color: #e22d2c;
}

.feature-box {
  border-right: 1px solid #ddd;
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: #f3f0ff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature-icon i {
  font-size: 25px;
  color: #6c3df4;
}

.offset-printing .last-feature {
  border-right: none;
}
.offset-printing h5 {
  font-size: 20px;
  color: #192042;
}

.clipped-image {
  /* clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); */
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .feature-box {
    border: none !important;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .clipped-image {
    clip-path: none;
    border-radius: 20px;
  }
}
.defense-solutions {
  padding: 80px 0 80px;
  background-color: #f8f5ef;
}
.defense-solutions h2 {
  font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px;
}
.defense-solutions h2 span {
  color: #e22d2c;
}
.defense-solutions p {
  font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.8px;

  margin-bottom: 0;
  
}
.defense-solutions h3 {
  font-weight: bold;
  margin-top: 10px;
  color: #e22d2c;
}
.defense-solutions .feature-content {
  padding: 10px;
  background: #171d37;
  margin-top: -7px;
  min-height: 331px;
}
.defense-solutions .feature-content p {
  color: #fff;
}
.defense-solutions img {
  object-fit: cover;
  width: 100%;
  height: 250px;
}
.ccc-mot-procurement-section p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
.ccc-mot-procurement-section {
  background: #fff;
  padding: 60px 0 80px
}
.ccc-mot-procurement-section ul li {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
.ccc-mot-procurement-section h2 {
  font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 38px;
    line-height: 65px;
    margin: 0 auto;
    margin-bottom: 24px;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 85%;
}
.ccc-mot-procurement-section h2 span{
        background-image: url(../images/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: left bottom;
    color: #000 !important;
}

.ccc-mot-procurement-section img {
  object-fit: cover;
  width: 100%;
  height: 400px;
}
.integrated-consulting-services {
  background: linear-gradient(135deg, #faf8f8 0%, #efe9e9 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.integrated-consulting-services h2 {
font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 42px;
    line-height: 65px;
    margin: 0 auto;
    margin-bottom: 24px;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 66%;
}
.integrated-consulting-services h2 span {
  color: #ff9c9c;
}
.integrated-consulting-services p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
.integrated-consulting-services ul li {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
.integrated-consulting-services {
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  position: relative;
  z-index: 1;
}
.integrated-consulting-services .card {
  border-radius: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.integrated-consulting-services .card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30, 40, 90, 0.12);
}
.consulting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(30, 40, 90, 0.1);
}
.bg-gradient-red {
  background: linear-gradient(135deg, #e22d2c 60%, #ff6a5b 100%);
}
.bg-gradient-green {
  background: linear-gradient(135deg, #1abc9c 60%, #27ae60 100%);
}
.bg-gradient-yellow {
  background: linear-gradient(135deg, #f6c343 60%, #f9d976 100%);
  color: #fff;
}
.bg-gradient-blue {
  background: linear-gradient(135deg, #192042 60%, #4e54c8 100%);
}
.consulting-card {
  min-height: 340px;
  padding-bottom: 0;
}
.consulting-card ul li {
  font-size: 15px;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  position: relative;
}
.consulting-card ul li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e22d2c;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.consulting-card-green ul li:before {
  background: #1abc9c;
}
.consulting-card-yellow ul li:before {
  background: #f6c343;
}
.consulting-card-blue ul li:before {
  background: #192042;
}
.integrated-consulting-services .highlight {
  background: linear-gradient(90deg, #e22d2c 0%, #ff6a5b 100%);
  color: #fff !important;
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
}
@media (max-width: 991px) {
  .integrated-consulting-services .card {
    min-height: unset;
  }
}
@media (max-width: 767px) {
  .integrated-consulting-services .card {
    margin-bottom: 1.5rem;
  }
  .integrated-consulting-services .row.align-items-center {
    flex-direction: column-reverse;
  }
}
.integrated-bg-svg-1,
.integrated-bg-svg-2 {
  pointer-events: none;
}
.why-dh-sahar-section {
  background: #fff7f4;
  position: relative;
  overflow: hidden;
}
.why-dh-sahar-section p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 5px;
}
.why-dh-sahar-section .gradient-text {
  background: linear-gradient(90deg, #e22d2c 0%, #192042 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-dh-sahar-section .timeline-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}
.why-dh-sahar-section .timeline-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  position: relative;
}
.why-dh-sahar-section .timeline-icon {
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 1rem;
  box-shadow: 0 2px 8px rgba(30, 40, 90, 0.08);
  color: #fff;
}
.why-dh-sahar-section .bg-red {
  background: linear-gradient(135deg, #e22d2c 0%, #ff5e62 100%);
}
.why-dh-sahar-section .bg-blue {
  background: linear-gradient(135deg, #192042 0%, #3a4a7c 100%);
}
.why-dh-sahar-section .bg-yellow {
  background: linear-gradient(135deg, #f7b731 0%, #f9ca24 100%);
}
.why-dh-sahar-section .bg-green {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}
.why-dh-sahar-section .bg-purple {
  background: linear-gradient(135deg, #8e54e9 0%, #4776e6 100%);
}
.why-dh-sahar-section .timeline-list strong {
  color: #192042;
  font-weight: 700;
  font-size: 1.08rem;
}
.btn-gradient {
  background: linear-gradient(90deg, #e22d2c 0%, #192042 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #192042 0%, #e22d2c 100%);
  color: #fff;
}
@media (max-width: 991px) {
  .why-dh-sahar-section .why-dh-sahar-image {
    margin-bottom: 2rem;
  }
}

.transformation-section {
  position: relative;
  background: #f8f9fa;
  color: #2c3e50;
  padding: 0;
  min-height: 100vh;
  /* display: flex;
  align-items: center; */
  padding: 80px 0 80px;
}

.content-column {
  padding: 5rem;
  /*height: 100vh;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.image-column {
  padding: 0;
  /*height: 100vh;*/
  position: relative;
  background: url("../images/transform-your-business.jpg") no-repeat center
    center;
/*  background-size: cover;*/
}

.image-column::before {
  content: "";
  position: absolute;
      top: 91px;
    left: 0;
    width: 100%;
    height: 78%;
  background: linear-gradient(
    45deg,
    rgba(44, 62, 80, 0.9) 0%,
    rgba(231, 76, 60, 0.7) 100%
  );
  mix-blend-mode: multiply;
}

.transformation-section .section-header1 h2 {
  font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 42px;
    line-height: 65px;
    margin: 0 auto;
    margin-bottom: 24px;
    letter-spacing: .3px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    width: 66%;
}

.transformation-section .section-header1 h2  span{
  background-image: url(../images/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: left bottom;
    color: #000 !important;
}

.transformation-section .section-header1 p{
      color: #000 !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 36px !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
    width: 80%;
    margin: 0 auto;
}

/*.transformation-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #e74c3c;
  border-radius: 2px;
}*/

.transformation-section .highlight-text {
  color: #e74c3c;
  font-weight: 700;
}

/* .transformation-section .service-list {
  margin: 2.5rem 0;
} */

.transformation-section .service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.transformation-section .service-icon {
  color: #e74c3c;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.transformation-section .service-content h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.transformation-section .service-content p {
  color: #666;
  font-size: 0.95rem;
}

.transformation-section .cta-button {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  /* overflow: hidden; */
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.transformation-section .cta-button:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.transformation-section .cta-button i {
  margin-right: 8px;
}
.transformation-section p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 5px;
}
@media (max-width: 992px) {
  .transformation-section {
    flex-direction: column;
    min-height: auto;
  }

  .content-column,
  .image-column {
    height: auto;
    width: 100%;
    padding: 4rem 2rem;
  }

  .image-column {
    min-height: 400px;
  }

  .transformation-section .section-header h2 {
    font-size: 2.2rem;
  }
}

/* aviation-sector-styles */
.aviation-sector p {
  font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
}
.fs-20{font-size: 20px!important; line-height: 44px!important}

.aviation-sector ul  {
    padding-left: 1.2rem;
}

.aviation-sector ul li {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
}
/* .aviation-sector ul li::before {
  content: "\f101";
  color: #e22d2c;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  display: inline-block;
  margin-left: -2em;
  position: absolute;
} */
.aviation-sector .accordion-body ul li {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  position: relative;
}
.aviation-sector .accordion-body ul li::before {
  content: "\f0da";
    color: #e22d2c;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    display: inline-block;
    margin-left: -1.2em;
    position: absolute;
    font-size: 16px;
}
.aviation-sector.hero-section {
  background: linear-gradient(rgba(0, 84, 179, 0.8), rgba(0, 51, 102, 0.9)),
    url("../images/aviation-sector-main-img.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 155px 0 110px;
  text-align: center;
}
.aviation-sector .accordion-header button {
  color: #000;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
.aviation-sector.hero-section h1 {
  color: #fff;    font-family: "Playfair Display", serif;
}

.aviation-sector .section-title {
  color: #000;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 40px;
}

.aviation-sector .section-title span{background-image: url(../images/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: left bottom;
    color: #000 !important;}

.aviation-sector .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e22d2c;
}

.aviation-sector .service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}
.aviation-sector .service-card.bg_active {
  background: #181f42;
  color: #fff;
}
.aviation-sector .service-card.bg_active .card-title {
  color: #fff;
}
.aviation-sector .service-card.bg_active:hover {
  background: #181f42;
}
.aviation-sector .service-card.bg_active .card-text {
  color: #fff;
}

.aviation-sector .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.aviation-sector .service-card .card-body {
  padding: 30px;
}

.card-body h5{
      color: #e22d2c;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 8px;
    font-size: 18px;
}

.aviation-sector .service-card .card-icon {
  font-size: 2.5rem;
  color: #e22d2c;
  margin-bottom: 20px;
}

.aviation-sector .service-card .card-title {
  color: #003366;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding-bottom: 15px;
  font-size: 21px;
}

.aviation-sector .highlight-section {
  background-color: #f8f9fa;
  padding: 60px 0 80px;
}

.aviation-sector .feature-box {
  text-align: center;
  padding: 29px 20px 0;
  background: #192042;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: block;
}

.aviation-sector .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.aviation-sector .feature-box i {
  font-size: 2.5rem;
  color: #0056b3;
  margin-bottom: 20px;
}

.aviation-sector .feature-box h4 {
      color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding-bottom: 10px;
}
.aviation-sector .feature-box p {
  color: #fff;
}

.aviation-sector .cta-section {
  background: linear-gradient(rgba(0, 84, 179, 0.9), rgba(0, 51, 102, 0.9)),
    url("https://images.unsplash.com/photo-1556388158-158ea5ccacbd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.aviation-sector .cta-btn {
  background-color: #ff6b00;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.aviation-sector .cta-btn:hover {
  background-color: #e05d00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.aviation-sector .nav-pills .nav-link.active {
  background-color: #0056b3;
  color: #fff;
}

.aviation-sector .nav-pills .nav-link {
  color: #003366;
  font-weight: 500;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#sectors .fade {
  opacity: 5 !important;
}

#sectors img {
  width: 100%;
  object-fit: cover;
  height: 500px;
}


.tab-content h3{
  color: #000;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}

.why-avation h4{
  color: #000;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.tab-content h5{
  color: #000;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.tab-content img{border-radius: 20px !important;}



.parallax{background-repeat:no-repeat !important;background-attachment:fixed !important;background-size:cover !important;background-position:center !important;height:100%;width:100%}
.parallax img{/*width:100%;height:100%;*/object-fit:cover}

#OurServices .RitBox .box:hover img{
    filter:brightness(0) invert(1)
}

#OurServices {
    overflow: hidden;
    position: relative;
}
#OurServices::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #08322a;
    opacity: 0.7;
}
#OurServices #RoundShape {
    opacity: 0.302;
    fill: #24b24b;
    position: absolute;
    -webkit-animation-name: bubbleFloating;
    animation-name: bubbleFloating;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    top: -15px;
    right: 20px;
    z-index: 0;
    width: 135px;
}
@media only screen and (min-width: 468px) {
    #OurServices #RoundShape {
        left: 108px;
        right: auto;
        width: 170px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices #RoundShape {
        width: 205px;
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices #RoundShape {
        width: 280px;
    }
}
#OurServices .container {
    position: relative;
}
#OurServices .row {
    margin: 0px;
    padding: 0px;
}
#OurServices .LftBox {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 45px 0 15px 0;
    float: left;
}
@media only screen and (min-width: 468px) {
    #OurServices .LftBox {
        padding: 95px 35px 30px 0;
    }
}
@media only screen and (min-width: 768px) {
    #OurServices .LftBox {
        width: 285px;
    }
}
@media only screen and (min-width: 992px) {
    #OurServices .LftBox {
        width: 335px;
        padding: 145px 50px 50px 0;
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices .LftBox {
        width: 360px;
        padding: 145px 70px 50px 0;
    }
}
#OurServices .LftBox .head {
    color: #fff;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 15px;
    font-weight: 600;
}
@media only screen and (min-width: 468px) {
    #OurServices .LftBox .head {
        font-size: 40px;
        line-height: 38px;
        margin-bottom: 25px;
    }
}
@media only screen and (min-width: 768px) {
    #OurServices .LftBox .head {
        font-size: 44px;
        line-height: 42px;
        font-weight: 700;
    }
}
@media only screen and (min-width: 992px) {
    #OurServices .LftBox .head {
        font-size: 48px;
        line-height: 44px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices .LftBox .head {
               font-size: 41px;
        line-height: 53px;
        margin-bottom: 35px;
        font-family: "Marcellus", serif;
        letter-spacing: 0.8px;
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices .LftBox .head {
               font-size: 46px;
        line-height: 61px;
        font-family: "Marcellus", serif;
    }
}
#OurServices .LftBox .sub {
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
}
@media only screen and (min-width: 468px) {
    #OurServices .LftBox .sub {
        font-size: 22px;
        line-height: 28px;
    }
}
@media only screen and (min-width: 992px) {
    #OurServices .LftBox .sub {
        font-size: 25px;
        line-height: 32px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices .LftBox .sub {
               font-size: 18px;
        line-height: 38px;
        font-family: 'Poppins', sans-serif;
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices .LftBox .sub {
                font-size: 18px;
        line-height: 38px;
        font-family: 'Poppins', sans-serif
    }
}
#OurServices .RitBox {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0px;
    width: 100%;
    margin-bottom: 30px;float: left;
}
@media only screen and (min-width: 468px) {
    #OurServices .RitBox {
        margin-bottom: 65px;
    }
}
@media only screen and (min-width: 768px) {
    #OurServices .RitBox {
        margin-bottom: -1px;
        width: calc(100% - 285px);
        border-top: 0px;
    }
}
@media only screen and (min-width: 992px) {
    #OurServices .RitBox {
        width: calc(100% - 335px);
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices .RitBox {
        width: calc(100% - 360px);
    }
}
#OurServices .RitBox .box {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s;
    opacity: 1;
    padding: 25px 25px 45px;
}
@media only screen and (max-width: 468px) {
    #OurServices .RitBox .box {
        width: 100%;
    }
}
@media only screen and (min-width: 468px) {
    #OurServices .RitBox .box {
        padding: 40px 25px 45px;
        min-height: 260px;
    }
}
@media only screen and (min-width: 992px) {
    #OurServices .RitBox .box {
        min-height: 295px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices .RitBox .box {
        padding: 55px 30px 60px;
        min-height: 390px;
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices .RitBox .box {
                padding: 55px 30px 80px;
        min-height: 395px;
    }
}
#OurServices .RitBox .box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 0;
    background-color: #24b24b;
    transition: all 0.3s;
    z-index: 0;
}
#OurServices .RitBox .box .align {
    position: relative;
    z-index: 1;
}
#OurServices .RitBox .box .icon {
    margin-bottom: 20px;
    overflow: hidden;
}
@media only screen and (min-width: 468px) {
    #OurServices .RitBox .box .icon {
        margin-bottom: 30px;
    }
}
#OurServices .RitBox .box .icon svg {
    fill: #24b24b;
    transition: all 0.3s;
    width: 60px;
}
@media only screen and (min-width: 468px) {
    #OurServices .RitBox .box .icon svg {
        width: 70px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices .RitBox .box .icon svg {
        width: 80px;
    }
}
#OurServices .RitBox .box .serviceName {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;    font-family: "Marcellus", serif;
}
#OurServices .RitBox .box .serviceName-p {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    letter-spacing: 0.2px;
}
@media only screen and (min-width: 468px) {
    #OurServices .RitBox .box .serviceName {
        margin-bottom: 25px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices .RitBox .box .serviceName {
                font-size: 20px;
        line-height: 27px;
    }
}
#OurServices .RitBox .box .ReadMore {
    position: relative;
    z-index: 1;font-family: 'Poppins', sans-serif; color: #4fa120;
}
@media only screen and (min-width: 468px) {
    #OurServices .RitBox .box .ReadMore {
        position: absolute;
        left: 25px;
        bottom: 40px;
    }
}
@media only screen and (min-width: 1200px) {
    #OurServices .RitBox .box .ReadMore {
        left: 30px;
        bottom: 27px;
    }
}
@media only screen and (min-width: 1550px) {
    #OurServices .RitBox .box .ReadMore {
        bottom: 33px;
    }
}
#OurServices .RitBox .box:hover {
    border-color: #24b24b;
}
#OurServices .RitBox .box:hover::after {
    height: 100%;
}
#OurServices .RitBox .box:hover .icon svg {
    fill: #fff;
    -webkit-animation: hovicon 0.3s forwards;
    -moz-animation: hovicon 0.3s forwards;
    animation: hovicon 0.3s forwards;
}
#OurServices .RitBox .box:hover .ReadMore {
    color: #fff;
}
#OurServices .RitBox .box:hover .ReadMore svg {
    fill: #fff;
}
#OurServices .RitBox .box:hover .ReadMore:hover svg {
    filter: drop-shadow(-8px 0px 0px rgba(255, 255, 255, 0.85));
}

.table-responsive h2{
      font-size: 3rem;
    font-weight: 500;
    margin-bottom: 4rem;
    color: #fff;
    text-align: center;
    letter-spacing : 1.5px;
    text-shadow: 0 2px 8px rgba(34, 45, 60, 0.07);
    position: relative;
    z-index: 2;
    font-family: "Playfair Display", serif;
}

.table-responsive h2::after {
        content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e22d2c 60%, #ffffff 100%);
    border-radius: 2px;
    margin: 40px auto 0 auto;
    opacity: 0.8;

}

.table-heading1 {
    padding-right: 25px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    border-bottom: 1px solid #ffffff47;
        padding-bottom: 22px;
}


.table-text1 {
    padding-bottom: 17px;
    padding-top: 17px;
    padding-right: 25px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    background: transparent;
    border-bottom: 1px solid #ffffff47;
}

.belowbanner-box-1{background-color: #5bb286; width: 33.3333%; float: left;  
   
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;}

.belowbanner-box-2{background-color: #1f294c; width: 33.3333%; float: left;  
     
    }

.belowbanner-box-3{background-color: #f07c63; width: 33.3333%; float: left;  
    
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;}

.belowbanner-section{ 
    position: relative;}

.belowbanner-box {
    height: 280px;
    padding: 25px;
}
.belowbanner-box span {
        font-size: 30px;
    color: #f37330;
    float: left;
    margin-right: 25px;
    margin-bottom: 161px;
    margin-top: 4px;
}
.belowbanner-box h6 {
    font-family: 'Poppins', serif;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
.belowbanner-box h4 {
    font-family: 'Poppins', serif;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 10px;
}

.belowbanner-box p {
    font-family: 'Poppins', serif;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
   
}

.conclusion-section {background-color: #f8f5ef; padding: 100px 0 60px}

.conclusion-left{width: 37%; float: left; margin-right: 3%; background: #000000;
background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(9, 0, 60, 1) 100%); 
padding: 30px; border-radius: 15px;}

.conclusion-left h3{    
    font-family: "Playfair Display", serif;
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: .3px;
}
.conclusion-left h3 span{    
    color: #ff9c9c;
    font-style: italic;
}
.conclusion-left p{
  font-family: 'Poppins', serif;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 34px;
    letter-spacing: 0.5px;
}


.conclusion-right{width: 60%; float: left; margin-right: 0%}

.conclusion-box{
  width: 48%; float: left;
  margin-right: 4%;
  background-color: #fff; 
  padding: 25px;
  border-radius: 15px; 
  margin-bottom: 30px;
}

.conclusion-box:nth-child(2n+2){
  margin-right: 0%;
}

.conclusion-box i{ font-size: 34px;
    color: #a7a7a7; padding-bottom: 15px }

.conclusion-box h5{    
        font-family: "Playfair Display", serif;
    color: #000;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
}

.conclusion-box p{
  font-family: 'Poppins', serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.why-icon-box{width: 31%; float: left; margin-right:3.5%; margin-bottom: 50px; background-color: #fff;box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.05); min-height: 481px;}

.why-icon-box:last-child{ margin-right:0% }

.why-icon-section h6 {font-family: "Poppins", sans-serif; color: #0db14b; font-size: 18px; text-align: center;margin-bottom: 20px;}

.why-icon-section h2 {font-family: "Playfair", serif;
color: #000; 
font-size: 38px; 
font-weight: 600; 
text-align: center;

 width: 50%; 
 margin: 0 auto; margin-bottom: 50px; 
line-height: 48px;}

.animate_line {
    position: relative;
    z-index: 0;
    padding: 15px 15px;
}
.animate_line:hover::after, .animate_line:hover::before{    background-color: #FF0000;}

.animate_line{
    position:relative;
    z-index:0;
    padding: 15px 15px;
}
.animate_line:after,
.animate_line:before{
    content: "";
    height: 4px;
    width: 0px;  
    position: absolute; 
    transition: all 0.5s ease 0s; 
    -webkit-transition: all 0.5s ease 0s; 
    z-index: -1;    
}
.animate_line:after { 
  left:5px; 
  bottom: 5px; 
}
.animate_line:before { 
  right: 5px; 
  top: 5px; 
}
.animate_line:hover:after,
.animate_line:hover:before{ 
    width: 50%; 
    height:50%;
    background: #e22d2c; 
}
@media only screen and ( max-width:768px){
.animate_line:after { 
  bottom: 5px; 
}
.animate_line:before { 
  top: 5px; 
}
    
}

.service-box-content-new p{f    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 27px; letter-spacing: 0 }

.s-title-one{    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;    margin-bottom: 12px;}

.site-button-link{font-family: "Poppins", sans-serif; font-size: 15px; color: #000; font-weight: 500}

.cardbg{
    position: relative;
    z-index: 1;
    border: 0px solid #ddd;
    font-family: "Poppins", sans-serif;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;

}
.cardbg-pic{
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    opacity: 0;

    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.cardbg:hover{background-color: #000 !important; border: 1px solid transparent; color: #fff;}
.cardbg:hover .s-title-one,
.cardbg:hover .site-button-link{color: #fff;}

.cardbg:hover .icon-cell img{filter:brightness(0) invert(1)}


.cardbg:hover .cardbg-pic{
    opacity: 0.2;
    
}

.cardbg:hover .service-box-content-new p {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #fff;}


.service-box-1-new {
    position: relative;
    padding: 30px;
}
.wt-icon-box-wraper-new {
    position: relative;
    margin-bottom: 10px;
}
.icon-xl {
    line-height: 80px;
}
.icon-xl.inline-icon {
    width: auto;
    text-align: left !important;
}

.wt-icon-number-new {
    position: absolute;
    right: 0px;
    top: 0px;
}
.site-text-secondry {
    color: #00173c;
}
.service-box-title-new {
    margin-left: 0px;
    margin-bottom: 12px;
    font-size: 30px;
}

.service-box-content-new {
    /*margin-bottom: 30px;
    border-bottom: 1px solid #ddd;*/
    padding-bottom: 0px;
}
.site-button-link {
    display: inline-block;
    position: relative;
    font-weight: 700;
}

.wt-icon-number-new span {
    font-size: 90px;
    line-height: 100px;
    color: rgba(0, 0, 0, 0.1);
    font-weight: 700;
    opacity: 0.5;
    display: block;
    font-family: "Poppins", sans-serif;
}

.icon-cell img{    
    filter: unset;
    width: 22%;
    margin-top: 15px;
  }



/* end-styles */

/* .visitors-section p.lead {
  color: #cfd8dc;
  font-size: 1.1rem;
} */

/*.about-section-a{background:#fff url(../images/a.png) no-repeat scroll left 110px;}

.about-left{width: 48%; float: left; margin-right: 7%;    padding-top: 200px;}

.about-right{width: 45%; float: left; margin-right: 0%}

.about-left h5{
   color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 400;
   font-size: 16px;
}

.about-left h1{
   color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 600;
   font-size: 54px; line-height: 70px;
}

.about-left h1 span{
   color: #ffc600;
}

.bigfont{
   font-size: 18px !important;color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 700; padding-bottom: 15px; line-height: 30px; letter-spacing: 0.5px; padding-top: 40px;
}

.about-right p{color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 400;
   font-size: 15px;line-height: 30px;
}

.about-section h2{
   color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 600;
   font-size: 54px; 
   line-height: 70px; 
   text-align: center; 
   width: 75%; 
   text-align: center; 
   margin: 0 auto; 
   text-transform: uppercase; 
   line-height: 80px; 
   padding-top: 70px;
   padding-bottom: 120px;
}

.about-section h2 span{
   color: #ffc600;
  
}

.txtbox h2{
	    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 30px;
    color: #000;
    margin-bottom: 15px;
}

.txtbox h2 span{

	color: #ffc600;
	width: 100%; padding-bottom: 20px;
}

.txtbox p{
	font-family: 'Poppins', sans-serif; 
   font-weight: 400;
   font-size: 16px;line-height: 30px; color: #000;
}
*/
.mb-70 {
  margin-bottom: 70px !important;
}
.py-7{padding: 70px 0}

.mb-6 {
  margin-bottom: 60px !important;
}
.pt-10{padding-top: 100px !important}

.pb-10{padding-bottom: 100px !important}

.pe-10{padding-right: 100px !important}

.pe-8{padding-right: 80px !important}

.ps-8{padding-left: 80px !important}

.text-success{color: #e22d2c !important}

/* ------------------------------------------------------------------------------------ */

.page-banner {
  width: 100%;
  float: left;
  /* background: url(../images/page-banner.jpg) no-repeat center; */
      background: rgba(0, 8, 46, .9);
  background-size: cover;
  margin-top: 0px;
}

.page-banner-layer {
  width: 100%;
  float: left;
  height: 100%;
  /* background: rgb(43 26 13 / 0.80); */
  padding: 75px 0px;
}

.pagebanner-text {
  margin-top: 100px;
  text-align: center;
}

.pagebanner-text-1 {
  margin-top: 50px;
  text-align: center;
}

.pagebanner-text-1 h5 {
  color: #fff;
  margin-top: 21px;
  font-weight: 500;
}

.pagebanner-text-1 h5 a:hover {
  color: #49ad3c;
}

.pagebanner-text-1 h5 span {
  color: #ee1f2c;

}

.pagebanner-text h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0px;
  line-height: 15px;
  padding-top: 15px;
}

.pagebanner-text-1 h1 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0px;
  line-height: 15px;
  padding-top: 15px;
}

.contaact-icontpmg{margin: 100px 0px 20px;}

.catct i{
  padding: 10px 44px 10px 13px !important;
}

.contact-icon i{
  border: 1px solid gray;
    padding: 10px 39px 10px 13px;
    font-size: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    color: #e22d2c;
}
.contact-boxes{
  padding: 20px;
  border: 1px solid gray;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}
.contact-textes p{
  color: #000;
  font-family: "Poppins", sans-serif;
}
.contact-textes h3{margin-bottom: 08px;font-family: "Playfair Display", serif;}

/* ---------------------------------------------------- */

.form-box-1 input[type="text"], .form-box-1 input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 8px 0px 8px 10px;
    border: 1px solid #e9e9e9 !important;
    /* border: none; */
    height: 46px;
    font-size: 16px;
    background-color: none;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.form-box-1 .input-box {background: none !important; font-size: 14px;}

.form-box-1 {
    position: relative;
    margin-bottom: 23px;
}
.form-box-1 textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 0px 10px;
    height: 100px;
    background: none;
    resize: none;
    font-size: 18px;
    color: #ffffff;
    border: 1px solid #e9e9e9 !important;
    border: none;
    margin-bottom: 40px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.form-box-1 button {
    position: relative;
    margin-top: 4px;
}
.form-box-1 h5{
  font-weight: 600;
  font-size: 24px;
}

.btn-send {
    position: relative;
    line-height: 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    background: #001f3f;
    /* background: linear-gradient(to right, rgb(0, 160, 227), rgb(10, 92, 125)); */
    display: inline-block;
    padding: 9px 31px 9px;
    text-transform: uppercase;
    border: none;
}
.form-half {
    width: 48%;
    margin-right: 4%;
    float: left;
    margin-bottom: 3%;
}
.form-half.last {
    margin-right: 0px;
}

.contct-frmg{
  margin-bottom: 50px;
}

.abouttextmgtp{margin: 90px 0px 60px;}

.abouttextpage p {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
        text-align: justify;
}