/* ===== ENHANCED LAYOUT AND TYPOGRAPHY ===== */

.layout_padding {
  padding: 120px 0;
}

.layout_padding2 {
  padding: 100px 0;
}

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

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

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

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

/* Modern typography improvements */
body {
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

/* Import Inter font for better readability */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Enhanced heading styles */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #6a7280;
  max-width: 600px;
}

/* Better button styles */
a,
a:hover,
a:focus {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero area styling */
.hero_area {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
  background-color: transparent;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

/* Sub-page specific styling */
.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
  position: relative;
}

.sub_page .hero_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
  pointer-events: none;
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 15px 0;
}

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

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

.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: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

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

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

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

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

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #2d3748;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.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: #2d3748;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.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;
}

/*end header section*/
/* slider section */
.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;
  padding: 120px 0 80px 0;
  min-height: 600px;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
}

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

.slider_section .container {
  position: relative;
  z-index: 2;
}

.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: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInDown 1s ease-out;
}

.slider_section .detail-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: slideInUp 1s ease-out 0.3s both;
}

.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: #00bbf0;
  color: #020202;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

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

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

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

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
          animation: upDown 5s infinite;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background: rgba(255, 255, 255, 0.4);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin: 0 8px;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider_section .carousel-indicators li.active {
  width: 18px;
  height: 18px;
  background: #00bbf0;
  border-color: #00bbf0;
  box-shadow: 0 0 15px rgba(0, 187, 240, 0.6);
  transform: scale(1.2);
}

.slider_section .carousel-indicators li:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.service_section {
  position: relative;
}

.service_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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 20px;
  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-bottom: 15px;
}

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

.service_section .box .detail-box {
  min-height: 150px;
}

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

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

.service_section .box .detail-box a:hover {
  color: #00bbf0;
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #007fa4;
}

.about_section {
  background-color: #00204a;
  color: #ffffff;
}

.about_section .heading_container {
  margin-bottom: 45px;
}

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

.about_section .img-box img {
  max-width: 100%;
}

.about_section .detail-box h3 {
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 15px;
}

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

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

.why_section .box {
  margin-top: 45px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #00204a;
  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;
}

.why_section .box .img-box img {
  width: 88px;
  height: auto;
  fill: #00204a;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.why_section .box p {
  margin-bottom: 0;
}

.why_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.why_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.why_section .btn-box a:hover {
  background-color: #007fa4;
}

/*team section */
.team_section {
  text-align: center;
  background-color: #00204a;
  color: #ffffff;
}

.team_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team_section .team_container {
  padding: 0 15px;
}

.team_section .team_container .box {
  padding: 35px 0 0 0;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
  margin-top: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64));
  background: linear-gradient(to bottom, #002759, #002b64);
}

.team_section .team_container .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: center;
      -ms-flex-align: center;
          align-items: center;
}

.team_section .team_container .box .img-box img {
  width: 120px;
  border-radius: 100%;
  border: 5px solid #ffffff;
}

.team_section .team_container .box .detail-box {
  margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: #00bbf0;
  font-weight: 600;
  position: relative;
}

.team_section .team_container .box .social_box {
  padding: 10px 45px 20px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.team_section .team_container .box .social_box a {
  color: #ffffff;
  font-size: 22px;
}

.team_section .team_container .box .social_box a:hover {
  color: #00bbf0;
}

/*team section end*/
/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.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: 15px;
}

.client_section .box .img-box {
  position: relative;
  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;
  width: 100px;
  margin-bottom: -50px;
  margin-left: 25px;
  position: relative;
}

.client_section .box .img-box img {
  border-radius: 100%;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.client_section .box .client_id .client_info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  margin-bottom: 0;
  font-size: 15px;
  font-size: 14px;
  margin-bottom: 10px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 75px 25px 25px 25px;
}

.client_section .box .detail-box i {
  color: #00204a;
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  bottom: 0px;
  font-size: 24px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

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

/* client section end */
.info_section {
  background-color: #00204a;
  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: #00bbf0;
}

.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: #00bbf0;
}

.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: #00bbf0;
}

.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: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

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

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

.footer_section p {
  color: #00204a;
  padding: 25px 0;
  margin: 0;
}

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


.img-box h2 {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(148deg, #a742ff, #a16c0c, #4dff2d, #00f956);
  color: transparent;
  background-size: 240% 240%;
  animation: gradient-animation 20s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
}

.detail-box h1 {
  font-size: 50px;
  font-weight: 800;
  background: linear-gradient(148deg, #a742ff, #a16c0c, #4dff2d, #00f956);
  color: transparent;
  background-size: 240% 240%;
  animation: gradient-animation 20s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
}

.sub_page .about_section {
  background-color: #10151a;
}

/* Box styles */
.service_section .box {
  text-align: center; /* Center align content */
  transition: transform 0.3s ease;
}

/* Image box styles */
.service_section .img-box {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px; /* Adjust based on your design */
}

/* Image styles with shadow and animation */
.service_section .img-box img {
  padding: 10px;
  width: 100%;
  border-radius: 10px; /* Optional: rounded corners */
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* Light shadow */
  animation: gentleFloat 3s ease-in-out infinite; /* Infinite floating animation */
}

/* Optional hover effect */
.service_section .img-box img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow */
}

/* Floating animation */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0); /* Start and end position */
  }
  50% {
    transform: translateY(-10px); /* Slight upward movement */
  }
}

.heading_center {
  width: 100%;
  margin-top: 40px;
}

.section {
  margin-bottom: 20px;
  text-align: center;
}

.button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.more-button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-button:hover {
  background-color: #0056b3;
}

/* Contact section */
.contact_section {
  background-color: #f8f9fa;
}

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

.contact_form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact_form .form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.contact_form .form-control:focus {
  border-color: #00bbf0;
  box-shadow: 0 0 0 0.2rem rgba(0, 187, 240, 0.25);
}

.contact_form .btn-box {
  text-align: center;
}

.contact_form .btn {
  background-color: #00bbf0;
  border: none;
  padding: 12px 40px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  transition: background-color 0.3s;
}

.contact_form .btn:hover {
  background-color: #007fa4;
}

.contact_info {
  padding: 20px 0;
}

.contact_info_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.contact_info_item:hover {
  transform: translateY(-5px);
}

.contact_icon {
  width: 60px;
  height: 60px;
  background-color: #00bbf0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact_icon i {
  color: #ffffff;
  font-size: 24px;
}

.contact_detail h4 {
  margin-bottom: 10px;
  color: #00204a;
  font-weight: 600;
}

.contact_detail p {
  margin: 0;
  color: #666;
}

.contact_detail a {
  color: #00bbf0;
  text-decoration: none;
  transition: color 0.3s;
}

.contact_detail a:hover {
  color: #007fa4;
  text-decoration: none;
}

/* Mobile navigation improvements */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* Service section improvements */
.service_section .box {
  transition: transform 0.3s ease;
}

.service_section .box:hover {
  transform: translateY(-5px);
}

/* Why section layout improvements */
.why_section .why_container {
  margin-top: 45px;
}

.why_section .box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why_section .box:hover {
  transform: translateY(-3px);
}

.why_section .box .detail-box {
  flex: 1;
  margin-left: 30px;
}

/* Button improvements */
.more-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00bbf0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.more-button:hover {
  background-color: #007fa4;
  text-decoration: none;
  color: #ffffff;
}

.button-container {
  text-align: center;
  margin-top: 40px;
}

/* Counter section improvements */
.single_counter {
  text-align: center;
  padding: 30px 20px;
}

.single_counter_inner .countr_text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.single_counter_inner .countr_text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #00bbf0;
  margin: 0;
}

.single_counter_inner .countr_text h3 {
  font-size: 2rem;
  color: #fff;
  margin: 0;
  margin-left: 75px;
}

.single_counter_inner .counter_title h4 {
  color: #00204a;
  font-weight: 600;
  margin: 0;
}

/* Contact info summary styles */
.contact_info_summary {
  margin-bottom: 40px;
}

.contact_info_summary .contact_info_item {
  text-align: center;
  margin-bottom: 30px;
}

.contact_info_summary .contact_icon {
  margin: 0 auto 15px;
}

.contact_info_summary .contact_detail {
  text-align: center;
}

.contact_info_summary .contact_detail h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact_info_summary .contact_detail p {
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.contact_info_summary .contact_detail p a {
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  display: inline-block !important;
  max-width: 100% !important;
  white-space: normal !important;
}

/* Accessibility improvements */
.navbar-toggler:focus,
.btn:focus,
.form-control:focus,
.more-button:focus {
  outline: 2px solid #00bbf0;
  outline-offset: 2px;
}

/* Screen reader improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast support */
@media (prefers-contrast: high) {
  .contact_info_item {
    border: 2px solid #000;
  }
  
  .more-button {
    border: 2px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .service_section .box:hover,
  .why_section .box:hover,
  .contact_info_item:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .contact_form {
    background-color: #2c2c2c;
    color: #ffffff;
  }
  
  .contact_form .form-control {
    background-color: #3c3c3c;
    border-color: #555;
    color: #ffffff;
  }
  
  .contact_info_item {
    background-color: #2c2c2c;
    color: #ffffff;
  }
}

/* Loading states */
.contact_form.loading {
  opacity: 0.7;
  pointer-events: none;
}

.contact_form.loading .btn {
  position: relative;
}

.contact_form.loading .btn:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

/* Enhanced error states */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.success {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Alert messages */
.alert {
  padding: 15px 20px;
  border-radius: 5px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.alert i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Animation for alerts */
.alert {
  animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Counter animation class */
.countr_text h1.animated {
  color: #fff;
  transition: color 0.3s ease;
}

/* Better focus indicators */
.nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Improve link accessibility */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
}

/* Mobile-first loading spinner */
@media (max-width: 576px) {
  .contact_form.loading .btn:after {
    width: 14px;
    height: 14px;
  }
}

/* Extra small screens for better email display */
@media (max-width: 480px) {
  .contact_info_summary .contact_detail p a {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
  
  .contact_info_summary .contact_detail h4 {
    font-size: 1rem !important;
  }
  
  .contact_info_summary .col-md-4 {
    margin-bottom: 25px !important;
  }
}

/* ===== MODERN ANIMATIONS AND EFFECTS ===== */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Fade in animation for why section elements */
.why_section .heading_container,
.why_section .featured-box,
.why_section .why_container .box {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.why_section .heading_container {
  animation-delay: 0.1s;
}

.why_section .featured-box {
  animation-delay: 0.3s;
}

.why_section .why_container .box:nth-child(1) {
  animation-delay: 0.5s;
}

.why_section .why_container .box:nth-child(2) {
  animation-delay: 0.6s;
}

.why_section .why_container .box:nth-child(3) {
  animation-delay: 0.7s;
}

.why_section .why_container .box:nth-child(4) {
  animation-delay: 0.8s;
}

.why_section .why_container .box:nth-child(5) {
  animation-delay: 0.9s;
}

.why_section .why_container .box:nth-child(6) {
  animation-delay: 1.0s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .why_section .heading_container,
  .why_section .featured-box,
  .why_section .why_container .box {
    animation: none;
    opacity: 1;
  }
  
  .why_section .featured-box .img-box::after {
    animation: none;
  }
}

/* Improve focus states for accessibility */
.why_section .featured-box:focus-within,
.why_section .why_container .box:focus-within {
  outline: 3px solid #00bbf0;
  outline-offset: 4px;
}

/* Enhanced loading state */
.why_section.loading .featured-box,
.why_section.loading .why_container .box {
  opacity: 0.6;
  pointer-events: none;
}

/* Modern scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #007fa4 0%, #005c7a 100%);
}

/* KC-elm overlap fix */
.kc-css-541795 {
  margin-bottom: 60px !important;
  z-index: 1;
}

/* Counter section spacing fix */
.kc-row-container {
  margin-top: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Modern gradients and shadows for service section */
.service_section .box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  overflow: hidden;
}

.service_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== MODERN WHY US SECTION STYLING ===== */

/* Section background with subtle pattern */
.why_section {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
}

.why_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,187,240,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

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

/* Modern heading styling */
.why_section .heading_container h2 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00204a 0%, #00bbf0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  position: relative;
}

.why_section .heading_container h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 2px;
}

/* Featured box - hero card styling */
.why_section .featured-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(0, 187, 240, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 32, 74, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}

.why_section .featured-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #00bbf0 0%, #007fa4 100%);
}

.why_section .featured-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 32, 74, 0.15);
  border-color: rgba(0, 187, 240, 0.2);
}

/* Featured box image styling */
.why_section .featured-box .img-box {
  width: 120px;
  height: 120px;
  min-width: 120px;
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 187, 240, 0.3);
  position: relative;
  overflow: hidden;
}

.why_section .featured-box .img-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.why_section .featured-box .img-box img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

/* Featured box content */
.why_section .featured-box .detail-box {
  flex: 1;
}

.why_section .featured-box .detail-box h5 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00204a;
  margin-bottom: 20px;
  position: relative;
}

.why_section .featured-box .detail-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Transparency features styling */
.why_section .featured-box .transparency-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.why_section .featured-box .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 187, 240, 0.05);
  border-radius: 10px;
  border-left: 3px solid #00bbf0;
  transition: all 0.3s ease;
}

.why_section .featured-box .feature-item:hover {
  background: rgba(0, 187, 240, 0.1);
  transform: translateX(5px);
}

.why_section .featured-box .feature-item i {
  color: #00bbf0;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.why_section .featured-box .feature-item span {
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.4;
}

/* Enhanced paragraph styling for featured box */
.why_section .featured-box .detail-box p {
  margin-bottom: 15px;
}

.why_section .featured-box .detail-box p:last-of-type {
  margin-bottom: 0;
  font-style: italic;
  color: #00204a;
}

/* Responsive adjustments for transparency features */
@media (max-width: 768px) {
  .why_section .featured-box .transparency-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .why_section .featured-box .feature-item {
    padding: 10px 14px;
  }
  
  .why_section .featured-box .feature-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .why_section .featured-box .transparency-features {
    margin-top: 20px;
    gap: 12px;
  }
  
  .why_section .featured-box .feature-item {
    padding: 8px 12px;
    gap: 10px;
  }
  
  .why_section .featured-box .feature-item i {
    font-size: 1.1rem;
  }
}

/* Container for other boxes */
.why_section .why_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Regular box styling - modern cards */
.why_section .why_container .box {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(0, 187, 240, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 32, 74, 0.06);
}

.why_section .why_container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bbf0 0%, #007fa4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why_section .why_container .box:hover::before {
  transform: scaleX(1);
}

.why_section .why_container .box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 32, 74, 0.12);
  border-color: rgba(0, 187, 240, 0.15);
}

/* Regular box image styling */
.why_section .why_container .box .img-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border:  3px solid rgba(0, 187, 240, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
}

.why_section .why_container .box:hover .img-box {
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
}

.why_section .why_container .box .img-box img {
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  filter: opacity(0.8);
}

.why_section .why_container .box:hover .img-box img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

/* Regular box content */
.why_section .why_container .box .detail-box h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00204a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.why_section .why_container .box:hover .detail-box h5 {
  color: #00bbf0;
}

.why_section .why_container .box .detail-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6a7280;
  margin: 0;
  transition: color 0.3s ease;
}

.why_section .why_container .box:hover .detail-box p {
  color: #4a5568;
}

/* Floating elements for visual interest */
.why_section .why_container .box::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 127, 164, 0.1) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.why_section .why_container .box:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* Get In Touch section fixes - consistent height/width and better colors */
.contact_info_summary .contact_info_item {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact_info_summary .contact_info_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact_info_summary .contact_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 6px 15px rgba(0, 187, 240, 0.3);
}

.contact_info_summary .contact_icon i {
  color: #ffffff;
  font-size: 24px;
}

.contact_info_summary .contact_detail h4 {
  color: #00204a;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact_info_summary .contact_detail p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Fix email overflow in contact section */
.contact_info_summary .contact_detail p {
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.contact_info_summary .contact_detail p a {
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  display: inline-block !important;
  max-width: 100% !important;
  white-space: normal !important;
}

/* Responsive adjustments for contact items */
@media (max-width: 768px) {
  .contact_info_summary .contact_detail p {
    font-size: 0.85rem;
  }
  
  .contact_info_summary .contact_detail p a {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .contact_info_summary .contact_detail p {
    font-size: 0.8rem;
  }
  
  .contact_info_summary .contact_detail p a {
    font-size: 0.8rem;
  }
}

/* Extra small screens for better email display */
@media (max-width: 480px) {
  .contact_info_summary .contact_detail p a {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
  
  .contact_info_summary .contact_detail h4 {
    font-size: 1rem !important;
  }
  
  .contact_info_summary .col-md-4 {
    margin-bottom: 25px !important;
  }
}

/* ===== MODERN ANIMATIONS AND EFFECTS ===== */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Fade in animation for why section elements */
.why_section .heading_container,
.why_section .featured-box,
.why_section .why_container .box {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.why_section .heading_container {
  animation-delay: 0.1s;
}

.why_section .featured-box {
  animation-delay: 0.3s;
}

.why_section .why_container .box:nth-child(1) {
  animation-delay: 0.5s;
}

.why_section .why_container .box:nth-child(2) {
  animation-delay: 0.6s;
}

.why_section .why_container .box:nth-child(3) {
  animation-delay: 0.7s;
}

.why_section .why_container .box:nth-child(4) {
  animation-delay: 0.8s;
}

.why_section .why_container .box:nth-child(5) {
  animation-delay: 0.9s;
}

.why_section .why_container .box:nth-child(6) {
  animation-delay: 1.0s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .why_section .heading_container,
  .why_section .featured-box,
  .why_section .why_container .box {
    animation: none;
    opacity: 1;
  }
  
  .why_section .featured-box .img-box::after {
    animation: none;
  }
}

/* Improve focus states for accessibility */
.why_section .featured-box:focus-within,
.why_section .why_container .box:focus-within {
  outline: 3px solid #00bbf0;
  outline-offset: 4px;
}

/* Enhanced loading state */
.why_section.loading .featured-box,
.why_section.loading .why_container .box {
  opacity: 0.6;
  pointer-events: none;
}

/* Modern scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #007fa4 0%, #005c7a 100%);
}

/* KC-elm overlap fix */
.kc-css-541795 {
  margin-bottom: 60px !important;
  z-index: 1;
}

/* Counter section spacing fix */
.kc-row-container {
  margin-top: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Modern gradients and shadows for service section */
.service_section .box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  overflow: hidden;
}

.service_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== MODERN WHY US SECTION STYLING ===== */

/* Section background with subtle pattern */
.why_section {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
}

.why_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,187,240,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

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

/* Modern heading styling */
.why_section .heading_container h2 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00204a 0%, #00bbf0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  position: relative;
}

.why_section .heading_container h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 2px;
}

/* Featured box - hero card styling */
.why_section .featured-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(0, 187, 240, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 32, 74, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}

.why_section .featured-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #00bbf0 0%, #007fa4 100%);
}

.why_section .featured-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 32, 74, 0.15);
  border-color: rgba(0, 187, 240, 0.2);
}

/* Featured box image styling */
.why_section .featured-box .img-box {
  width: 120px;
  height: 120px;
  min-width: 120px;
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 187, 240, 0.3);
  position: relative;
  overflow: hidden;
}

.why_section .featured-box .img-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.why_section .featured-box .img-box img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

/* Featured box content */
.why_section .featured-box .detail-box {
  flex: 1;
}

.why_section .featured-box .detail-box h5 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00204a;
  margin-bottom: 20px;
  position: relative;
}

.why_section .featured-box .detail-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Transparency features styling */
.why_section .featured-box .transparency-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.why_section .featured-box .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 187, 240, 0.05);
  border-radius: 10px;
  border-left: 3px solid #00bbf0;
  transition: all 0.3s ease;
}

.why_section .featured-box .feature-item:hover {
  background: rgba(0, 187, 240, 0.1);
  transform: translateX(5px);
}

.why_section .featured-box .feature-item i {
  color: #00bbf0;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.why_section .featured-box .feature-item span {
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.4;
}

/* Enhanced paragraph styling for featured box */
.why_section .featured-box .detail-box p {
  margin-bottom: 15px;
}

.why_section .featured-box .detail-box p:last-of-type {
  margin-bottom: 0;
  font-style: italic;
  color: #00204a;
}

/* Responsive adjustments for transparency features */
@media (max-width: 768px) {
  .why_section .featured-box .transparency-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .why_section .featured-box .feature-item {
    padding: 10px 14px;
  }
  
  .why_section .featured-box .feature-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .why_section .featured-box .transparency-features {
    margin-top: 20px;
    gap: 12px;
  }
  
  .why_section .featured-box .feature-item {
    padding: 8px 12px;
    gap: 10px;
  }
  
  .why_section .featured-box .feature-item i {
    font-size: 1.1rem;
  }
}

/* Container for other boxes */
.why_section .why_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Regular box styling - modern cards */
.why_section .why_container .box {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(0, 187, 240, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 32, 74, 0.06);
}

.why_section .why_container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bbf0 0%, #007fa4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why_section .why_container .box:hover::before {
  transform: scaleX(1);
}

.why_section .why_container .box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 32, 74, 0.12);
  border-color: rgba(0, 187, 240, 0.15);
}

/* Regular box image styling */
.why_section .why_container .box .img-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border:  3px solid rgba(0, 187, 240, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  position: relative;
}

.why_section .why_container .box:hover .img-box {
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
}

.why_section .why_container .box .img-box img {
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  filter: opacity(0.8);
}

.why_section .why_container .box:hover .img-box img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

/* Regular box content */
.why_section .why_container .box .detail-box h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00204a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.why_section .why_container .box:hover .detail-box h5 {
  color: #00bbf0;
}

.why_section .why_container .box .detail-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6a7280;
  margin: 0;
  transition: color 0.3s ease;
}

.why_section .why_container .box:hover .detail-box p {
  color: #4a5568;
}

/* Floating elements for visual interest */
.why_section .why_container .box::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 127, 164, 0.1) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.why_section .why_container .box:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* Get In Touch section fixes - consistent height/width and better colors */
.contact_info_summary .contact_info_item {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact_info_summary .contact_info_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact_info_summary .contact_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00bbf0 0%, #007fa4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 6px 15px rgba(0, 187, 240, 0.3);
}

.contact_info_summary .contact_icon i {
  color: #ffffff;
  font-size: 24px;
}

.contact_info_summary .contact_detail h4 {
  color: #00204a;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact_info_summary .contact_detail p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Fix email overflow in contact section */
.contact_info_summary .contact_detail p {
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.contact_info_summary .contact_detail p a {
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  display: inline-block !important;
  max-width: 100% !important;
  white-space: normal !important;
}

/* Responsive adjustments for contact items */
@media (max-width: 768px) {
  .contact_info_summary .contact_detail p {
    font-size: 0.85rem;
  }
  
  .contact_info_summary .contact_detail p a {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .contact_info_summary .contact_detail p {
    font-size: 0.8rem;
  }
  
  .contact_info_summary .contact_detail p a {
    font-size: 0.8rem;
  }
}

/* Extra small screens for better email display */
@media (max-width: 480px) {
  .contact_info_summary .contact_detail p a {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
  
  .contact_info_summary .contact_detail h4 {
    font-size: 1rem !important;
  }
  
  .contact_info_summary .col-md-4 {
    margin-bottom: 25px !important;
  }
}