@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
body {
  font-family: 'Open Sans', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.animate-on-scroll {
  opacity: 0;
}


.animate-on-scroll-display{
	opacity: 1;
}

.navbar {
  position: relative;   /* needed for absolute logo positioning */
  overflow: visible;    /* allows logo to spill into hero */
}

/* Position logo absolutely inside navbar */
.brand-logo {
  position: absolute;
  top: 88px;              /* vertically center relative to navbar */
  left: 0px;            /* padding from left edge */
  transform: translateY(-50%); /* true vertical centering */
  height: 225px;          /* natural height of the image */
  width: auto;           /* natural width of the image */
  z-index: 10;           /* ensures it appears above hero */
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #0a97b0;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .header_section {
  margin-top: 0;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.header_section .header_top {
  padding: 15px 0;
  background-color: rgba(4, 35, 59, 0.85);
}

.header_section .header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_section .header_top .contact_nav a {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
}

.header_section .header_top .contact_nav a i {
  margin-right: 5px;
  border-radius: 100%;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0a97b0;
}

.header_section .header_top .contact_nav a:hover i {
  color: #04233b;
}

.header_section .header_bottom {
  background-color: #ffffff;
  padding: 15px 0;
}

.header_section .header_bottom .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #0a97b0;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #000000;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/* keep the whole header on screen */
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* your top bar */
.header_section .header_top {
  padding: 15px 0;
  background-color: rgba(4, 35, 59, 1);
  transition: all 0.3s ease;
}

/* your main nav bar */
.header_section .header_bottom {
  background-color: #ffffff;
  padding: 15px 0;
  transition: all 0.3s ease;
}

/* page spacing so fixed header doesn't cover content */
.hero_area,
.sub_page .hero_area {
  padding-top: 130px; /* adjust if needed */
}



/*end header section*/
/* slider section */

.carousel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block; /* vertical stacking */
}

.carousel-list li {
  display: block; /* ensures each item is full-width or shrink-wrap to text if you want */
  padding: 6px 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  margin-bottom: 10px; /* spacing between items */
  transition: all 0.3s ease;
  cursor: pointer;
  width: fit-content; /* shrink-wrap to text + padding */
}

/* Hover animation */
.carousel-list li:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  background: #ffecd2;
  color: #000;
}

ol.carousel-indicators {
   display: none;
}

a.btn1 {
	width:auto !important;
}


.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.slider_section .slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.slider_section .slider_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fill container, maintain aspect ratio */
  object-position: center;  /* focus on the center */
  display: block;
}

.slider_section .slider_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* background: -webkit-gradient(linear, left top, right top, from(rgba(37, 37, 37, 0.9)), to(rgba(37, 37, 37, 0.7)));
  background: linear-gradient(to right, rgba(37, 37, 37, 0.9), rgba(37, 37, 37, 0.7));*/
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #04233b;
  padding: 10px;
  border: 5px outset #04233b;
}

.slider_section .col-md-7 {
    padding: 10px;
    border: 5px outset yellow;
    background-color: rgba(0, 0, 0, 0.5);
	margin-left: auto;
	margin-right:auto;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #0a97b0;
  background-image: linear-gradient(to right, #004d7a, #0a97b0);
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #065968;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #0a97b0;
}

.services {
  /*margin-top:10px*/
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 18px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 6px;
}

.learnMoreButton {
  background: #007bff;
  color: white;
  padding: 10px;
  border-radius: 6px;
  width:100%;
}

.tab.active {
  background: #007bff;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.more-text {
  display: none;
}

.service_section {
  position: relative;
}

.service_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  background-color: #f8f8f9;
  padding: 5px;
  border-radius: 5px;
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 125px;
  min-width: 75px;
  height: 75px;
  margin-right: 25px;
}

.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box a {
  color: #04233b;
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: #0a97b0;
}

.container-fluid.py-5.bg-dark.text-white {
    border: 5px outset #3F51B5;
}

.heading {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ff3c00;
}

.subheading {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.service-card:hover {
  transform: translateY(-5px);
  background: #222;
}

.service-card h4 {
  color: #ff3c00;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 15px;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.cta {
  margin-top: 40px;
}

.cta a {
  display: inline-block;
  padding: 14px 30px;
  background: #ff3c00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.cta a:hover {
  background: #ff5c2a;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

ul.list-unstyled.text-start li {
    font-size: 1.25rem;
}

.text-decoration-underline {
	text-decoration: underline;
}

.colored-checks li::before {
  content: "✔";
  color: darkblue;
  margin-right: 8px;
  font-weight: bold;
}

.about_hero_section {
  position: relative;
  width: 100%;
  height: 70vh; /* adjust height if needed */
  overflow: hidden;
}

.about_hero_bg {
  width: 100%;
  height: 100%;
}

.about_hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.about_section .img-box::before, .about_section .img-box::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 70%;
  background-color: #04233b;
  z-index: 3;
}

.about_section .img-box::before {
  left: 0;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about_section .img-box::after {
  right: 0;
  z-index: 1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.about_section .detail-box p {
  color: #1f1f1f;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #065968;
}

.about-highlights div {
  margin-bottom: 10px;
  padding: 10px 14px;
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
  border-radius: 4px;
}

.card.mb-3.border-0.shadow-sm{
border: 3px solid transparent !important;
  border-radius: 14px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, red, #0a97b0, blue) border-box;
}

.track_section {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.track_section .track_bg_box {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.track_section .track_bg_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  display: block;
}

.track_section .track_bg_box::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(37, 37, 37, 0.95)), to(rgba(37, 37, 37, 0.55)));
  background: linear-gradient(to right, rgba(37, 37, 37, 0.95), rgba(37, 37, 37, 0.55));
}

.track_section p {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.track_section form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.track_section form input {
  background-color: #ffffff;
  border: none;
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  outline: none;
  color: #000000;
  min-height: 42.4px;
  padding-left: 15px;
}

.track_section form input ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form input :-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form input ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form input ::placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.track_section form button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  padding: 9px 30px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
}

.track_section form button:hover {
  background-color: #065968;
}

/* FAQ Section Beautification */
.faq_section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.18), transparent 35%),
    linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%) !important;
}

.faq_section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 193, 7, 0.16);
  border-radius: 50%;
  z-index: 0;
}

.faq_section .container {
  position: relative;
  z-index: 1;
}

.faq_section .heading_container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #171717;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.faq_section .heading_container h2 span {
  color: #ffc107;
  position: relative;
}

.faq_section .heading_container h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: rgba(255, 193, 7, 0.28);
  z-index: -1;
  border-radius: 20px;
}

.faq_section .heading_container p {
  max-width: 720px;
  margin: 0 auto;
  color: #616161;
  font-size: 1.05rem;
  line-height: 1.7;
}



.faq-image img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.22) !important;
}

/* Accordion Cards */
.faq_section .accordion .card {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq_section .accordion .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.11) !important;
  border-color: rgba(255, 193, 7, 0.45) !important;
}

.faq_section .card-header {
  padding: 0;
  border: none;
  background: #ffffff !important;
}

.faq_section .card-header h4 {
  font-size: 1rem;
}

/* FAQ Button */
.faq_section .card-header .btn-link {
  position: relative;
  width: 100%;
  padding: 22px 60px 22px 24px;
  color: #181818 !important;
  font-size: 1.02rem;
  font-weight: 800 !important;
  line-height: 1.45;
  text-decoration: none !important;
  border-radius: 18px;
  white-space: normal;
  transition: color 0.25s ease, background 0.25s ease;
}

.faq_section .card-header .btn-link:hover,
.faq_section .card-header .btn-link:focus {
  color: #000000 !important;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 255, 255, 0));
  text-decoration: none !important;
  box-shadow: none;
}

/* Plus / Minus Icon */
.faq_section .card-header .btn-link::after {
  content: "−";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  background: #ffc107;
  color: #111111;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq_section .card-header .btn-link.collapsed::after {
  content: "+";
  background: #111111;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.faq_section .card-header .btn-link:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

/* FAQ Body */
.faq_section .card-body {
  padding: 0 24px 24px 24px;
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.75;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background:
    linear-gradient(90deg, rgba(255, 193, 7, 0.18), transparent 24%),
    #ffffff;
}

.faq_section .card-body::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin: 18px 0 14px;
  background: #ffc107;
  border-radius: 999px;
}

/* Links */
.faq_section a {
  color: #c78c00;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background-size 0.2s ease;
  background-image: linear-gradient(#ffc107, #ffc107);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}

.faq_section a:hover {
  color: #111111;
  background-size: 100% 2px;
}

/* Better Spacing */
.faq_section .row {
  align-items: stretch;
}

.faq_section .col-lg-6.mx-auto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq_section .accordion {
  width: 100%;
}

/* Subtle Entrance Animation */
.faq_section .card {
  animation: faqFadeUp 0.55s ease both;
}

.faq_section .card:nth-child(1) { animation-delay: 0.05s; }
.faq_section .card:nth-child(2) { animation-delay: 0.10s; }
.faq_section .card:nth-child(3) { animation-delay: 0.15s; }
.faq_section .card:nth-child(4) { animation-delay: 0.20s; }
.faq_section .card:nth-child(5) { animation-delay: 0.25s; }
.faq_section .card:nth-child(6) { animation-delay: 0.30s; }
.faq_section .card:nth-child(7) { animation-delay: 0.35s; }

@keyframes faqFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Polish */
@media (max-width: 991px) {
  .faq_section {
    padding: 70px 0;
  }

  .faq-image img {
    min-height: 320px;
  }

  .faq_section .col-lg-6.mx-auto {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .faq_section {
    padding: 55px 0;
  }

  .faq_section .heading_container {
    margin-bottom: 34px !important;
  }

  .faq_section .card-header .btn-link {
    padding: 18px 52px 18px 18px;
    font-size: 0.96rem;
  }

  .faq_section .card-header .btn-link::after {
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 1.15rem;
  }

  .faq_section .card-body {
    padding: 0 18px 20px 18px;
    font-size: 0.95rem;
  }

  .faq-image img {
    min-height: 260px;
    border-radius: 18px !important;
  }
}


/* Job gallery grid */
.why_us .job_gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* spacing between jobs */
}

.why_us .job_item {
  flex: 1 1 calc(33.333% - 2rem); /* 3 per row on desktop */
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .why_us .job_item {
    flex: 1 1 calc(50% - 1rem); /* 2 per row on tablet */
  }
}

@media (max-width: 576px) {
  .why_us .job_item {
    flex: 1 1 100%; /* 1 per row on mobile */
  }
  
  .col-lg-6.faq-image {
    margin-bottom: 1rem;
}
}

.why_us .job_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.why_us .job_desc {
  margin-top: 0.5rem;
}

.why_us .job_desc h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.why_us .job_desc p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ==============================
   Businesses We Work With
============================== */
.partners_section {
  position: relative;
  overflow: hidden;
}

.partners_section .heading_container h2 {
  font-weight: 700;
}

.partners_wrap {
  margin-top: 20px;
}

.partner_item {
  padding: 12px;
}

.partner_card {
  background: #ffffff;
  border-radius: 18px;
  min-height: 190px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(10, 151, 176, 0.10);
  box-shadow: 0 12px 30px rgba(7, 23, 46, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: center;
}

.partner_logo_wrap {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7, 23, 46, 0.14);
  border-color: rgba(220, 53, 69, 0.22);
}

.partner_card.featured {
  background: linear-gradient(135deg, rgba(8,24,48,0.97), rgba(10,151,176,0.92));
  border: none;
  box-shadow: 0 18px 40px rgba(8, 24, 48, 0.22);
}

.partner_logo_text {
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 700;
  color: #11233a;
  letter-spacing: 0.2px;
}

.partner_card.featured .partner_logo_text {
  color: #ffffff;
}

.partner_badge {
  margin-top: 12px;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.partners_carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.partners_carousel .owl-item {
  display: flex;
}

.partners_carousel .partner_card {
  width: 100%;
}

.partners_carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.partners_carousel .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 5px 6px;
  background: #c8d3dc !important;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.partners_carousel .owl-dot.active span,
.partners_carousel .owl-dot:hover span {
  background: #dc3545 !important;
  transform: scale(1.15);
}

.partner_logo {
  max-height: 72px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
  opacity: 0.9;
  transition: all 0.35s ease;
}

.partner_card:hover .partner_logo {
  opacity: 1;
  transform: scale(1.5);
}

@media (max-width: 767.98px) {
  .partner_card {
    min-height: 130px;
    padding: 22px 16px;
  }

  .partner_logo_text {
    font-size: 1rem;
  }
}

.client_section .client_container {
  width: 75%;
  margin-top: 45px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 5px;
}

.client_section .box .detail-box {
  border: 1px solid #dddddd;
  padding: 25px;
  margin-bottom: 25px;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .box .client_id .img-box {
  position: relative;
  width: 75px;
  height: 75px;
}

.client_section .box .client_id .img-box img {
  width: 100%;
}

.client_section .box .client_id .name {
  margin-left: 15px;
}

.client_section .box .client_id .name h6 {
  color: white;
  font-size: 18px;
  margin-bottom: 0;
}

.client_section .box .client_id .name p {
  margin-bottom: 0;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -15%;
  outline: none;
  background-color: #0a97b0;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #161825;
}

.client_section .owl-carousel .owl-nav .owl-prev {
  top: 25%;
  background-image: url(../images/prev.png);
}

.client_section .owl-carousel .owl-nav .owl-next {
  top: calc(25% + 65px);
  background-image: url(../images/next.png);
}

.contact_section {
  position: relative;
  padding-bottom: 90px;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container {
  margin-right: 15px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container select {
    width: 100%;
    border: none;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    outline: none;
    color: #101010;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container textarea {
    width: 100%;
    border: none;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    outline: none;
    color: #101010;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #04233b;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #04233b;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #04233b;
}

.contact_section .form_container input::placeholder {
  color: #04233b;
}

.contact_section .form_container input.message-box {
  height: 120px;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #065968;
}

.contact_section .map_container {
  height: 420px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.info_section {
  background-color: #04233b;
  color: #ffffff;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #0a97b0;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #0a97b0;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #0a97b0;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #0a97b0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #065968;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #04233b;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */