@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
body {
  color: #333;
}

/* Custom styles */
.navbar {
  border-radius: 10px;
  padding: 0px 30px;
}
    #default22 {
        margin-left: 126px !important;
    }

.navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-item {
  margin: 0 15px;
}
    .default-padding {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

.nav-link {
  position: relative;
  font-size: 1rem;
  font-weight: 500 !important;
  text-transform: uppercase;
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #f46d13;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link.active:before {
  transform: scaleX(0);
}

.nav-link.active {
  color: #f46d13 !important;
  border-bottom: solid 2px #f46d13 !important;
}

.btn-primary {
  background-color: #f46d13;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #cb5709;
  color: #fff;
}

ul.dropdown-menu {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}
ul.dropdown-menu li a.dropdown-item {
  font-size: 1rem !important;
  color: #333 !important;
  border-bottom: solid 1px #f3eeee !important;
}
ul.dropdown-menu li a.dropdown-item:hover {
  background-color: #f46d13 !important;
  color: #fff !important;
}

@media screen and (min-width: 1280px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: slide-down 0.3s ease;
  }
}
#herosectioncarousel.carousel-container {
  position: relative;
  z-index: 0;
}
#herosectioncarousel.carousel-container .carousel-inner {
  overflow: hidden;
}
#herosectioncarousel.carousel-container .carousel-caption {
  text-align: left;
  position: absolute;
  top: 55%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40%;
}
#herosectioncarousel.carousel-container .carousel-caption h1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 30px;
}
#herosectioncarousel.carousel-container .carousel-caption h1 span {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}
#herosectioncarousel.carousel-container .carousel-caption p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 30px;
  width: 65%;
}
#herosectioncarousel.carousel-container .carousel-caption .btn-primary {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 30px;
  border-radius: 25px;
  background-color: #f46d13;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}
#herosectioncarousel.carousel-container .carousel-caption .btn-primary:hover {
  background-color: #cb5709;
  color: #fff;
}

/* For overlapping effect */
.card-deck {
  position: relative;
  top: -100px;
  z-index: 1;
}
.card-deck .card {
  position: relative;
  z-index: 2;
  height: 100%;
}
.card-deck .card.bg-warning {
  background-color: #f46d13 !important;
  color: #fff !important;
}
.card-deck .card .bg-black {
  background-color: #000 !important;
  color: #fff !important;
}
.card-deck .card .card-body {
  padding: 10px 25px;
}
.card-deck .card .card-body h5 {
  font-family: "Roboto", sans-serif;
  color: #f46d13;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 24px;
}
.card-deck .card .card-body p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 24px;
  padding-bottom: 20px;
}
.card-deck .card .card-body .btn-primary {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 30px;
  border-radius: 25px;
  background-color: #f2f4f7;
  background-clip: border-box;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  border-color: #f46d13;
}
.card-deck .card .card-body .btn-primary:hover {
  background-color: #cb5709;
  color: #fff;
}
.card-deck .card.active {
  background-color: #f46d13 !important;
}

/* Button base styles */
.start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 15px 4px 25px;
  background-color: #f2f4f7;
  border-radius: 9999px; /* Fully rounded corners */
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  /* Creating the white space effect */
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 2px #fff;
  position: relative;
}
.start-button i {
  font-size: 1.5rem;
  margin-left: 15px;
}

/* Alternative approach using double border effect */
.start-button-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px 6px 25px;
  background-color: #f46d13;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 1px solid white;
  outline-offset: -2px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.start-button-alt i {
  font-size: 1.2rem;
  margin-left: 15px;
}

/* Hover effect */
.start-button:hover {
  background-color: #f46d13;
  color: #fff;
}

.start-button-alt:hover {
  background-color: #000;
  color: #fff;
}

/* Focus and active states */
.start-button:focus, .start-button-alt:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1), inset 0 0 0 1px #fff;
}

.start-button:active, .start-button-alt:active {
  background-color: #e0e0e0;
}

/* Alternative approach using double border effect */
.start-button-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px 6px 25px;
  background-color: #02245B;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 1px solid white;
  outline-offset: -2px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.start-button-blue i {
  font-size: 1.2rem;
  margin-left: 15px;
}

.start-button-blue:hover {
  background-color: #000;
  color: #fff;
}

/* Focus and active states */
.start-button-blue:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1), inset 0 0 0 1px #fff;
}

.start-button-blue:active {
  background-color: #02245B;
}

.default-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*about-section-home start here*/
.about-section-home .core-values .value {
  margin-bottom: 20px;
}
.about-section-home .position-absolute.bottom-start {
  left: 45px;
  bottom: -150px;
}
.about-section-home .misviswrap h3, .about-section-home .whychoose h3 {
  font-family: "Roboto", sans-serif;
}
.about-section-home .misviswrap h4, .about-section-home .whychoose h4 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.about-section-home .misviswrap p, .about-section-home .whychoose p {
  font-size: 0.9rem;
  font-family: "Open Sans", sans-serif;
  padding-top: 15px;
}
.about-section-home .misviswrap .iconwrap, .about-section-home .whychoose .iconwrap {
  width: 60px;
  height: 60px;
  background-color: #f2f4f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-section-home .misviswrap .iconwrap i, .about-section-home .whychoose .iconwrap i {
  font-size: 1.5rem;
  color: #f46d13;
}
.about-section-home .whychoosecard .card {
  border: solid 1px #f2f4f7;
}
.about-section-home .whychoosecard .card.bg-warning {
  background-color: #f46d13 !important;
  color: #fff !important;
}
.about-section-home .whychoosecard .card.bg-warning h5, .about-section-home .whychoosecard .card.bg-warning small {
  color: #fff !important;
}
.about-section-home .whychoosecard .card.bg-warning i {
  color: #fff !important;
}
.about-section-home .whychoosecard .card .card-body .card-icon i {
  font-size: 2rem;
  color: #f46d13;
}
.about-section-home .whychoosecard .card .card-body h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  font-family: "Roboto", sans-serif;
}
.about-section-home .whychoosecard .card .card-body small {
  font-size: 1rem;
  color: #333;
  text-transform: uppercase;
}

/*about-section-home end here*/
.h-500 {
  height: 500px;
}

.border-6 {
  border: solid 6px #fff;
}

.bardy {
  height: 2px;
  background-color: #f46d13;
  width: 30%;
  margin: 0 auto;
  position: relative;
  margin-top: 40px;
  margin-bottom: 60px;
}
.bardy::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 8px;
  background-color: #000;
  z-index: 100;
  border-radius: 10px;
}

.section-head h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #02245B;
  text-align: center;
}
.section-head h2 span {
  color: #f46d13;
}
.section-head .section-descript {
  width: 75%;
  text-align: center;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: #333;
  padding-bottom: 60px;
}

/*corevalues-section start here*/
.corevalues-section h6 {
  color: #f46d13;
}
.corevalues-section h3 {
  color: #02245B;
}
.corevalues-section .card .card-body .card-title {
  text-transform: uppercase;
  font-size: 1rem;
  padding-bottom: 10px;
  font-weight: 700;
}

/*corevalues-section end here*/
/*testi-section start here*/
.testi-section {
  background-image: url(../images/bg-shape.png);
  background-repeat: no-repeat;
  background-position: left top !important;
  background-size: cover;
}
.testi-section h2 {
  color: #02245B;
}
.testi-section .card .card-body h5 {
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
}
.testi-section .card .card-body h5 span {
  font-size: 0.75rem;
  display: block;
  padding-top: 5px;
  color: #f46d13;
  font-weight: 400;
  text-transform: capitalize;
}
.testi-section .card .card-body .ratings i {
  color: #02245B;
}

footer.footer-section {
  background-color: #02245B;
  padding: 30px 0px 0 0px;
  color: #fff;
}
footer.footer-section .footiconwrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f46d13;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
footer.footer-section .footiconwrap i {
  color: #fff;
}
footer.footer-section .bg-copy {
  background-color: #f46d13;
  padding: 10px 0px;
}
footer.footer-section .bg-copy small {
  font-size: 0.9rem;
}
footer.footer-section .quicklinks li {
  padding-bottom: 10px;
}
footer.footer-section .quicklinks li:hover a {
  color: #f46d13 !important;
}
footer.footer-section .quicklinks a:hover {
  color: #f46d13 !important;
}
footer.footer-section .quicklinks a i {
  font-size: 1.5rem;
  color: #f46d13;
}
footer.footer-section .quicklinks a i:hover {
  color: #fff !important;
}

/*who we are start here*/
.inner-banner {
  height: 450px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.inner-banner.who-we-are-ban {
  background-image: url("../images/silver-jublee.png");
}
.inner-banner.security-solutins-ban {
  background-image: url("../images/security-solutions.png");
}
.inner-banner.integrated-ban {
  background-image: url("../images/integrated-facility-management.png");
}
.inner-banner.security-careers-ban {
  background-image: url("../images/careers.png");
}
.inner-banner.security-training-ban {
  background-image: url("../images/training-program-ban.png");
}
.inner-banner.security-certificate-ban {
  background-image: url("../images/security-certificate.png");
}
.inner-banner .inner-ban-content {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.inner-banner .inner-ban-content h1 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
}
.inner-banner .inner-ban-content p {
  width: 50%;
  color: #fff;
  padding-top: 20px;
  line-height: 24px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
}

.protect-section h2, .protect-section h3 {
  font-family: "Roboto", sans-serif;
}
.protect-section .image-column img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.milestone-section .milestonewrap h2 {
  padding-bottom: 20px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.milestone-section .milestonewrap .timeline-horizontal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 4px solid #02245B;
}
.milestone-section .milestonewrap .timeline-item {
  position: relative;
  width: 15%;
  min-width: 150px;
  margin-top: 20px;
}
.milestone-section .milestonewrap .timeline-item .timeline-year {
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}
.milestone-section .milestonewrap .timeline-item p {
  background-color: #fff;
  border-radius: 5px;
  color: #333;
  font-size: 14px;
  padding: 5px 15px;
}
.milestone-section .milestonewrap .timeline-dot {
  width: 18px;
  height: 18px;
  background-color: #02245B;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
  box-shadow: 0 0 0 3px #02245B;
  z-index: 1;
  position: relative;
}
.milestone-section .milestonewrap .timeline-dot::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 3px;
  width: 3px;
  height: 30px;
  background-color: #02245B;
}
.milestone-section .milestonewrap .timeline-year {
  font-weight: bold;
  color: #02245B;
  margin-bottom: 5px;
  background-color: #02245B;
}
@media (max-width: 768px) {
  .milestone-section .milestonewrap .timeline-horizontal {
    flex-direction: column;
    border-top: none;
    border-left: 4px solid #02245B;
    padding-left: 30px;
  }
  .milestone-section .milestonewrap .timeline-item {
    width: 100%;
    text-align: left;
    margin-left: 10px;
    margin-top: 0;
    padding-left: 20px;
    margin-bottom: 30px;
  }
  .milestone-section .milestonewrap .timeline-dot {
    top: 0;
    left: -32px;
    transform: none;
  }
  .milestone-section .milestonewrap .timeline-dot::before {
    display: none;
  }
}

.bg-primary {
  background-color: #f46d13 !important;
}

.bg-secondary {
  background-color: #02245B !important;
}

.text-primary {
  color: #f46d13 !important;
}

/*who we are end here*/
/*services-section start here*/
.services-section .carousel-tabs {
  margin-bottom: 30px;
}
.services-section .tab-headers {
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
}
.services-section .tab-header {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  background: #fff;
  transition: background 0.3s;
  font-weight: 500;
  font-size: 1rem;
  border-right: solid 1px #ccc;
}
.services-section .tab-header.active {
  background: #f46d13;
  font-weight: bold;
  color: #fff;
}
.services-section .tab-content {
  display: none;
  padding: 80px;
}
.services-section .tab-content.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.services-section .card {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.services-section .card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.services-section .card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-section .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}
.services-section .card-desc {
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
  padding-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}
.services-section .card button {
  background: #007BFF;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.services-section .card button:hover {
  background: #0056b3;
}
@media (max-width: 768px) {
  .services-section .card {
    flex: 1 1 100%;
  }
}

.securitypackage-section h2, .continuous-improv-section h2 {
  font-family: "Roboto", sans-serif;
  color: #02245B;
}
.securitypackage-section .image-container, .continuous-improv-section .image-container {
  position: relative;
  z-index: 1;
}
.securitypackage-section .image-container::before,
.securitypackage-section .image-container::after, .continuous-improv-section .image-container::before,
.continuous-improv-section .image-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.securitypackage-section .image-container::before, .continuous-improv-section .image-container::before {
  width: 150px;
  height: 150px;
  background-color: #f46d13;
  top: -60px;
  left: -60px;
}
.securitypackage-section .image-container::after, .continuous-improv-section .image-container::after {
  width: 100px;
  height: 100px;
  background-color: #02245B;
  bottom: -30px;
  right: 80px;
}
.securitypackage-section .icon-circle, .continuous-improv-section .icon-circle {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f2f4f7;
  margin-right: 10px;
  color: #f46d13;
}

.continuous-improv-section h2 {
  font-family: "Roboto", sans-serif;
  color: #f46d13;
}
.continuous-improv-section .blob-container {
  position: relative;
  z-index: 1;
}
.continuous-improv-section .blob-container svg {
  position: absolute;
  top: -180px;
  left: 40px;
  width: 100%;
  height: auto;
  z-index: -1;
  fill: #02245B;
}
.continuous-improv-section .blob-container img {
  max-width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.text-secondary {
  color: #02245B !important;
}

.text-blue-dark {
  color: #02245B !important;
}

/*services-section end here*/
/*contact-section start here*/
.contact-section .card {
  height: 100%;
}
.contact-section .card .card-body .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  font-family: "Roboto", sans-serif;
  padding: 12px 20px;
  color: #02245B;
  text-transform: uppercase;
}
.contact-section .card .card-body .card-title span {
  font-size: 1rem;
  display: block;
  color: #f46d13;
  padding-top: 10px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
.contact-section .card .card-body .card-text {
  font-size: 0.9rem;
  font-family: "Open Sans", sans-serif;
  color: #333;
  padding: 0px 20px;
}
.contact-section .card .card-body .card-text a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-section .card .card-body .card-text a:hover {
  color: #f46d13 !important;
  font-weight: 600;
}
.contact-section .contactformwrap {
  padding: 40px 20px;
}
.contact-section .contactformwrap h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #02245B;
}
.contact-section .contactformwrap p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #333;
  padding-bottom: 20px;
  line-height: 26px;
}
.contact-section .contactformwrap input {
  height: 50px;
}

/*contact-section start here*/
/*sustain-section  start here*/
.sustain-section {
  background-color: #f46d13;
}
.sustain-section .sustaincont h2, .sustain-section .sustaincont p, .sustain-section .costeffective h2, .sustain-section .costeffective p {
  color: #fff;
}
.sustain-section .sustaincont h2, .sustain-section .costeffective h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.sustain-section .sustaincont p, .sustain-section .costeffective p {
  font-size: 1rem;
  padding-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}
.sustain-section .sustaincont ul li span, .sustain-section .costeffective ul li span {
  font-size: 1rem;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.sustain-section .sustaincont .icon-circle, .sustain-section .costeffective .icon-circle {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 10px;
  color: #f46d13;
}

/*sustain-section end here*/
/*client-section start here*/
.client-section {
  /* Ensure the swiper wrapper doesn't overflow */
  /* Add some space between the slides */
}
.client-section .testwrap h2 {
  font-family: "Roboto", sans-serif;
  position: relative;
  font-weight: 700;
}
.client-section .testwrap h2::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 40%;
  right: 40%;
  width: 100px;
  height: 3px;
  background-color: #f46d13;
  margin: 0 auto;
}
.client-section .swiper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.client-section .swiper-slide {
  text-align: center;
}
.client-section .swiper-slide img {
  width: 120px; /* Fixed width for logos */
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.client-section .swiper-slide img:hover {
  filter: grayscale(0%);
}
.client-section .swiper-wrapper {
  display: flex;
}
.client-section .swiper-slide {
  margin-right: 20px;
}

.testi-section .testwrap h2, .certificat-section .testwrap h2, .gallery-section .testwrap h2 {
  font-family: "Roboto", sans-serif;
  position: relative;
  font-weight: 700;
}
.testi-section .testwrap h2::after, .certificat-section .testwrap h2::after, .gallery-section .testwrap h2::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 40%;
  right: 40%;
  width: 100px;
  height: 3px;
  background-color: #f46d13;
  margin: 0 auto;
}

/*client-section end here*/
/*gallery-section start here*/
.gallery-section .gallery-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 50px 0 30px;
  font-weight: 700;
  color: #333;
}
.gallery-section .gallery-img {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.gallery-section .gallery-img:hover {
  transform: scale(1.03);
}
.gallery-section .gallery-img img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-section .row > .col {
  margin-bottom: 20px;
}

/*gallery-section end here*/
/*career-section start here*/
.career-section .circle {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.4);
  animation: float 6s ease-in-out infinite;
}
.career-section .circle:nth-child(1) {
  left: 10%;
  top: -20px;
  animation-delay: 0s;
}
.career-section .circle:nth-child(2) {
  left: 40%;
  bottom: -25px;
  background-color: #f46d13;
  animation-delay: 1s;
  width: 100px !important;
  height: 100px !important;
}
.career-section .circle:nth-child(3) {
  left: 70%;
  top: -15px;
  background-color: #02245B;
  animation-delay: 2s;
}
@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.career-section .image-container {
  position: relative;
  text-align: center;
  margin-top: 2rem;
}
.career-section .rounded-box {
  padding: 1rem;
  margin-top: 1rem;
}
.career-section .rounded-box h5 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  color: #02245B;
  font-weight: 700;
}
.career-section .bordered-title, .career-section .rounded-box {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.career-section .bordered-title h2, .career-section .rounded-box h2 {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #02245B;
  padding-bottom: 20px;
}
.career-section .bordered-title p, .career-section .rounded-box p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}
.career-section img {
  max-width: 100%;
  border-radius: 0.5rem;
}

.rounded-box {
  border-bottom: none !important;
}

/*career-section end here*/
/*management-section start here*/
.management-section .profile-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.management-section .profile-section {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.management-section .profile-section:hover {
  transform: scale(1.01);
}
.management-section .name {
  font-weight: 700;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  color: #02245B;
  text-transform: uppercase;
}
.management-section .title {
  color: #6c757d;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
.management-section .mess {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #333;
  padding-top: 20px;
  line-height: 28px;
}

/*management-section End here*/
.why-choose-list {
  background-color: #f46d13;
  /* Wiggle animation just for the title icon */
}
.why-choose-list .icon-circle {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f4f7;
  border-radius: 50%;
}
.why-choose-list .icon-circle i {
  font-size: 0.75rem;
}
.why-choose-list .title-icon {
  font-size: 1.5rem;
}
.why-choose-list .card:hover .title-icon {
  animation: wiggleIcon 0.6s ease-in-out;
}
@keyframes wiggleIcon {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(6deg);
  }
  75% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.why-choose-list .card {
  height: 100%;
}
.why-choose-list .card h5 {
  font-size: 1.3rem;
  color: #02245B;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  padding-left: 10px;
}
.why-choose-list .card p {
  padding-bottom: 15px;
  padding-top: 10px;
}
.why-choose-list .card p, .why-choose-list .card li {
  font-size: 1rem;
}

.certifi-section .card {
  padding: 25px;
}
.certifi-section .card .card-title {
  color: #02245B;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  padding-bottom: 15px;
  padding-top: 15px;
  font-weight: 700;
}
.certifi-section .card .card-text {
  font-size: 1rem;
  color: #333;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 20px;
}
.certifi-section .icon-bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.team-section .card-title {
  font-weight: 600;
  color: #333;
  padding-bottom: 15px;
  color: #333;
  font-family: "Roboto", sans-serif;
  padding-left: 10px;
}

.team-section .card {
  border: none;
  border-radius: 0.5rem;
}
.team-section .card:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}

.team-section ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}
.team-section ul li span {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.team-section .card ul li .rounded-circle {
  width: 30px;
  height: 30px;
  font-size: 0.875rem;
}

.team-section .card ul li i {
  line-height: 1;
}

.bg-info {
  background-color: #f2f4f7 !important;
}

.visimistitwrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.visimistitwrap .iconwrap {
  width: 60px;
  height: 60px;
  background-color: #f2f4f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-right: 15px;
}
.visimistitwrap .iconwrap i {
  font-size: 1.5rem;
  color: #f46d13;
}

.career-job-section .careers-container {
  border-radius: 20px;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
}
.career-job-section .banner {
  padding: 40px 0;
}
.career-job-section .job-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
}
.career-job-section .job-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.career-job-section .job-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.career-job-section .job-header h3 {
  width: 75%;
  color: #02245B;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.career-job-section .job-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #e6e9ef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-job-section .job-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.career-job-section .job-detail-row p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
}
.career-job-section .job-detail-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-family: "Open Sans", sans-serif;
  color: #333;
}
.career-job-section .job-detail-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #e6e9ef;
}
.career-job-section .divider {
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  margin: 20px 0;
}
.career-job-section .apply-section {
  background: linear-gradient(135deg, #f46d13, #FFA500);
  border-radius: 16px;
  padding: 30px;
  color: white;
}
.career-job-section .apply-section h3 {
  font-family: "Roboto", sans-serif;
}
.career-job-section .apply-btn {
  border-radius: 10px;
  padding: 12px 25px;
  font-weight: 600;
}
.career-job-section .section-heading {
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  font-weight: 600;
}
.career-job-section .section-heading:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 4px;
  border-radius: 2px;
}
.career-job-section .social-heading:before {
  background-color: #ff4d4d;
}
.career-job-section .technical-heading:before {
  background-color: #ffbb33;
}
.career-job-section .list-icon {
  color: #02245B;
  margin-right: 10px;
  font-size: 1.5rem;
}
.career-job-section .jobprofile-list li {
  font-family: "Open Sans", sans-serif;
  color: #333;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

@media only screen and (min-width: 300px) and (max-width: 640px) {
  .fixed-top {
    position: inherit;
    width: 100%;
    margin: 0 !important;
  }
  .herocardsection {
    margin-top: 150px !important;
  }
  .footer-section .footiconwrap {
    width: 30px !important;
    height: 30px !important;
    margin: 0 auto !important;
  }
  .footer-section .footlink {
    padding-top: 15px;
  }
  .footer-section .fs-5 {
    font-size: 0.9rem !important;
  }
  .inner-banner {
    height: 150px;
  }
  .inner-banner .inner-ban-content {
    align-items: center !important;
  }
  .inner-banner .inner-ban-content h1 {
    font-size: 1.5rem;
  }
  .services-section .tab-headers {
    flex-direction: column;
  }
  .services-section .tab-headers .tab-header {
    border-bottom: solid 1px #ccc !important;
  }
  .services-section .tab-headers .tab-header:last-child {
    border-bottom: none !important;
  }
  .continuous-improv-section .blob-container svg {
    top: 40px;
  }
  .default-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .m-p-2 {
    padding: 2rem !important;
  }
  .sustain-section .sustaincont h2, .sustain-section .costeffective h2 {
    font-size: 2rem;
  }
  .sustain-section .sustaincont .icon-circle, .sustain-section .costeffective .icon-circle {
    width: 30px;
    height: 30px;
  }
  .sustain-section .sustaincont .icon-circle i, .sustain-section .costeffective .icon-circle i {
    font-size: 0.875rem;
  }
  .sustain-section .sustaincont li span, .sustain-section .costeffective li span {
    font-size: 0.875rem;
  }
  .management-section .name {
    font-size: 1.5rem;
  }
  .management-section .mess {
    font-size: 0.875rem;
  }
  .m-w-100 {
    width: 100% !important;
  }
  .career-job-section .careers-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 768px) {
  #herosectioncarousel.carousel-container .carousel-caption h1 span {
    font-size: 2rem !important;
  }
  .card-deck {
    top: 0 !important;
  }
  #herosectioncarousel.carousel-container .carousel-caption {
    width: 60%;
  }
  #herosectioncarousel.carousel-container .carousel-caption p {
    display: none;
  }
  .inner-banner {
    height: 350px !important;
  }
  .footer-section .fs-5 {
    font-size: 1rem !important;
  }
  .footer-section .footlink a {
    display: block;
  }
  .m-w-100 {
    width: 100% !important;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1280px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 0.9rem !important;
  }
  #herosectioncarousel.carousel-container .carousel-caption h1 span {
    font-size: 2.5rem !important;
  }
  #herosectioncarousel.carousel-container .carousel-caption {
    top: 50%;
    width: 45%;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0.2rem !important;
    padding-right: 0.2rem !important;
  }
  .navbar {
    padding: 0 10px !important;
  }
  .securitypackage-section .image-container::after {
    right: 10px;
  }
  .securitypackage-section .image-container::before {
    top: -50px;
    right: -60px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  .services-section .card-title {
    font-size: 1.2rem !important;
  }
  .contact-section .contactformwrap h4 {
    font-size: 1.5rem;
  }
  .default-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sustain-section .sustaincont h2, .sustain-section .costeffective h2 {
    font-size: 2rem !important;
  }
  .securitypackage-section h2, .continuous-improv-section h2 {
    font-size: 2rem !important;
  }
}
@media only screen and (min-width: 1360px) and (max-width: 1366px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 0.9rem !important;
  }
  #herosectioncarousel.carousel-container .carousel-caption h1 span {
    font-size: 2.5rem !important;
  }
  #herosectioncarousel.carousel-container .carousel-caption {
    top: 50%;
    width: 45%;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0.2rem !important;
    padding-right: 0.2rem !important;
  }
  .navbar {
    padding: 0 10px !important;
  }
  .securitypackage-section .image-container::after {
    right: -20px;
  }
  .securitypackage-section .image-container::before {
    top: -50px;
    right: -70px;
  }
}/*# sourceMappingURL=frontend.css.map */


/*securities-solution page css*/
.securities-solution h2{
    display: none;
}
*{
    font-family: "Roboto", sans-serif;
}
.fw-bold {
    font-weight: 700 !important;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
}
h3 {
     font-weight: 700 !important;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
}
.row h2{
     font-weight: 700 !important;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
}