.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .reveal-up {
        transform: translateY(40px);
        transition-duration: 0.7s;
    }
}

/* GENERAL NAV STYLING */
.scocareLogoDiv {
  height: 36.5px ;
  margin-top: 4px;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.main-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
.main-header:hover {
  transform: translateY(0);
  opacity: 1;
}

.navbar {
  background: transparent;
  padding: 10px 16px;
  margin-top: 13px;
}

.nav-link {
  color: #fff !important;
  text-decoration: none !important;
  padding: 6px 0;
  
  font-size:200px;
  
  font-weight: 500;
  font-style: normal;

}

.svg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 0;
  z-index: 10;
}

@keyframes gradientShift2 {
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.separator{
  width: 100%;
  height: 1px;
  background: #cfd8dc;
  margin: 20px 0;
  opacity: 0.3;
  padding:0  !important;
  list-style: none;
}

.social-panel {
  background: linear-gradient(135deg, #0077B6, #00205C, #001b47); 
  background-size: 200% 200%; 
  animation: gradientShift2 6s ease-in-out infinite; 
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100%;
  color: #fff;
  box-shadow: 0 4px 25px rgba(0, 32, 92, 0.35);
  transition: right 0.4s ease;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.social-list {
  list-style: none;
  margin: auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 50px; 
  align-items: center;
  text-align:justify;
}


.social-panel.open {
  right: 0;
}

.social-panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.social-panel h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}


.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.social-link:hover {
  opacity: 0.8;
}


.social-bottom {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-right: 80px;
}
.email-link {
  font-size: 14px;
  color: #ddd;
}
.email-link a {
  color: #fff;
  text-decoration: none;
}


.social-link i {
  margin-right: 8px;
}

.dropdown-menu {
  background: rgba(10, 30, 60, 0.15) !important; 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}


.dropdown-item {
  color: #fff !important; 
  font-size: 18px;
  font-weight: 400;
  padding: 10px 22px;
  background: transparent !important;
  transition: color 0.25s ease, transform 0.25s ease;
}


.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important; 
  transform: translateX(1.5px);
}

@media (max-width: 1077px) and (min-width: 992px) {
  .navbar-nav .nav-link {
    padding: 0 5px !important; 
  }

  .navbar-nav .nav-link[href*="who_we_are"] {
    white-space: nowrap;
  }

  .right-side .section1button {
    min-width: 120px; 
  }
}

@media (max-width: 991px) {
  .navbar .center-nav,
  .navbar .right-side,
  .main-header .navbar-nav.center-nav,
  .main-header .navbar-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  
  .navbar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    padding: 10px 16px;
  }

  
  .navbar-brand {
    margin-right: auto !important;
  }

  .navbar-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    margin-left: auto !important;
    margin-right: 0 !important;
    cursor: pointer;
    z-index: 4000;
    position: relative;
    right: 0;
  }

  .menu-icon {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0a3161;
    z-index: 3500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
  }

  .mobile-menu.open {
    right: 0;
  }

  
  .mobile-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 4001;
  }

    
  .mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left; 
  }

  .mobile-nav li {
    margin: 25px 0; 
  }

  .mobile-nav a {
    color: #fff;
    font-size: 26px;
    font-weight: 600; 
    text-decoration: none;
    display: block;
    transition: color 0.3s ease, transform 0.2s ease;
    padding-left: 10px; 
  }

  .mobile-nav a:hover {
    color: #cfd8dc;
    transform: translateX(4px);
  }


  .mobile-nav .dropdown {
    position: relative !important;
    width: 100% !important;
    display: block !important;
  }

  .mobile-nav .dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 24% !important;
    min-width: 180px !important;
    background: #0a3161 !important;
    padding: 10px 20px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000 !important;
  }

  .mobile-nav .dropdown.open > .dropdown-menu {
    display: block !important;
    animation: slideRight 0.2s ease forwards;
  }


  @keyframes slideRight {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(12px); }
  }


  .mobile-nav .dropdown-item {
    color: #cfd8dc !important;
    font-size: 18px;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
  }

  .mobile-nav li {
    margin: 0 !important;
    padding: 15px !important;
  }

  .mobile-nav .dropdown-item:hover {
    color: #fff !important;
  }


  .mobile-nav li.separator {
    width: 100%;
    height: 1px;
    background: #cfd8dc;
    margin: 20px 0;
    opacity: 0.3;
    padding:0  !important;
  }

}

@media (min-width: 992px) {
  
  .mobile-menu,
  .navbar-toggler {
    display: none !important;
    visibility: hidden !important;
  }

  .center-nav,
  .right-side,
  .navbar-nav.center-nav,
  .main-header .navbar-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }
}

@media(max-width:448px){
  .scocareLogoDiv{
    height:28px !important;
    margin-top:1px !important;
  }
}

/* back to top button*/
#backToTopWrapper {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  cursor: pointer;
}

#backToTopWrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

#backToTopWrapper button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #0A3161;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  outline: none;
}

#backToTopWrapper button:hover {
  background-color: #00205C;
}

#backToTopWrapper {
  display: none; 
}
/*end back to top button styling */

/* END GENERAL NAV STYLING */


/* Start of animation*/

.section1Button {
  background: linear-gradient(90deg, #0077B6 0%, #00205C 30%, #00205C 70%, #0077B6 100%);
  color: #fff !important;
  width: 230px;
  border: none;
  border-radius: 50px !important;
  padding: 12px 20px;
  font-weight: 500;
  transition: all 0.4s ease;
  background-size: 200% auto;
}


.section1Button:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 32, 92, 0.35);
}


@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.section1Button:hover {
  animation: shimmer 1.5s linear infinite;
}

#heroCarousel {
  position: relative;
  overflow: hidden;
}

#heroCarousel .carousel-item {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#heroCarousel .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(55%);
  transform: scale(1);
  transition: transform 7s ease, filter 1s ease;
}

#heroCarousel .carousel-item.active .hero-image {
  transform: scale(1.05);
  filter: brightness(58%);
}

#heroCarousel .diagonal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(0, 32, 92, 0.78) 0%,
      rgba(0, 32, 92, 0.58) 28%,
      rgba(0, 32, 92, 0.10) 55%,
      transparent 75%
  );
  clip-path: polygon(
      0 0,
      55% 0,
      40% 100%,
      0 100%
  );
  transform: translateX(-100%);
  opacity: 0;
  transition:
      transform 1s ease,
      opacity 1s ease;
}

#heroCarousel .carousel-item.active .diagonal-overlay {
  transform: translateX(0);
  opacity: 1;
}

#heroCarousel .second-overlay {
  background: rgba(6, 173, 210, 0.10);
  clip-path: polygon(
      32% 0,
      43% 0,
      30% 100%,
      20% 100%
  );
  transform: translateX(100%);
}

#heroCarousel .carousel-caption {
  z-index: 3;
  width: 100%;
  left: 0;
  right: 0;
}

#heroCarousel .hero-content {
  max-width: 760px;
}

#heroCarousel .animation-title {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -1px;
  text-shadow:0 4px 20px rgba(0, 0, 0, 0.30);
  opacity: 0;
}

#heroCarousel .animation-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.65;
  text-shadow:0 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
}

#heroCarousel .section1Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 190px;
  padding: 13px 28px;
  color: #00205C !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  box-shadow:0 8px 25px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
  transition:
      transform 0.3s ease,
      background 0.3s ease,
      color 0.3s ease,
      box-shadow 0.3s ease;
  opacity: 0;
}

#heroCarousel .section1Button:hover {
  color: #fff !important;
  background: #00205C;
  transform: translateY(-3px);
  box-shadow:0 12px 30px rgba(0, 0, 0, 0.28);
}

#heroCarousel .section1Button i {
  transition: transform 0.3s ease;
}

#heroCarousel .section1Button:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  #heroCarousel .carousel-item {
    height: 700px;
    min-height: 600px;
  }
  #heroCarousel .hero-content {
    max-width: 650px;
  }
  #heroCarousel .animation-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
  }
  #heroCarousel .animation-subtitle {
    font-size: 1.15rem !important;
  }
  #heroCarousel .diagonal-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 32, 92, 0.82),
        rgba(0, 32, 92, 0.45),
        rgba(0, 32, 92, 0.10)
    );

    clip-path: polygon(
        0 0,
        70% 0,
        55% 100%,
        0 100%
    );
  }
}

@media (max-width: 767px) {
  #heroCarousel .carousel-item {
    height: 100vh;
    min-height: 600px;
  }
  #heroCarousel .hero-image {
    object-position: center;
    filter: brightness(48%);
  }
  #heroCarousel .carousel-item.active .hero-image {
    filter: brightness(50%);
  }
  #heroCarousel .carousel-caption {
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #heroCarousel .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  #heroCarousel .animation-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
  }
  #heroCarousel .animation-subtitle {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem !important;
    line-height: 1.55;
    text-align: center;
  }
  #heroCarousel .section1Button {
    min-width: 175px;
    padding: 12px 22px;
    font-size: 15px;
  }
  #heroCarousel .diagonal-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 32, 92, 0.25),
            rgba(0, 32, 92, 0.82)
        );

    clip-path: none;
  }
  #heroCarousel .second-overlay {
    display: none;
  }
}

@media (max-width: 400px) {
  #heroCarousel .animation-title {
    font-size: 1.9rem;
  }
  #heroCarousel .animation-subtitle {
    font-size: 0.95rem !important;
  }
  #heroCarousel .section1Button {
    min-width: 165px;
  }
}

/* End of animation */

/* start section 2 */
#sectionTwo {
    margin-top: 150px;
}

.it-growth-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 105px;
  color: #fff;
  text-align: center;
  background:
      radial-gradient(
          circle at 20% 25%,
          rgba(6, 173, 210, 0.28),
          transparent 32%
      ),
      radial-gradient(
          circle at 80% 75%,
          rgba(0, 32, 92, 0.70),
          transparent 38%
      ),
      linear-gradient(
          135deg,
          #06ADD2 0%,
          #0077B6 45%,
          #00205C 100%
      );
  background-size: 150% 150%;
  animation: sectionGradient 12s ease infinite;
}

.it-growth-grid {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  pointer-events: none;
  background-image:
      linear-gradient(
          rgba(255,255,255,0.35) 1px,
          transparent 1px
      ),
      linear-gradient(
          90deg,
          rgba(255,255,255,0.35) 1px,
          transparent 1px
      );
  background-size: 55px 55px;
  mask-image: linear-gradient(
      to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent
  );
}

.it-growth-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  filter: blur(90px);
  top: -280px;
  left: -180px;
  pointer-events: none;
}

.it-growth-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(6,173,210,0.18);
  filter: blur(80px);
  bottom: -220px;
  right: -120px;
  pointer-events: none;
}

.it-growth-content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: 0 auto;
}

.it-growth-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.it-growth-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9f4ff;
  box-shadow:0 0 10px rgba(185,244,255,0.9);
  animation: pulseDot 2s infinite;
}

.it-growth-title {
  position: relative;
  margin: 0 auto;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  text-shadow:0 8px 30px rgba(0,0,0,0.12);
}

.it-growth-title span {
  color: #b9f4ff;
  text-shadow:0 0 25px rgba(185,244,255,0.18);
}

.it-growth-text {
  max-width: 850px;
  margin: 27px auto 0;
  font-size: 17px;
  line-height: 30px;
  color: rgba(255,255,255,0.88);
}

.it-growth-button {
  position: relative;

  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 38px;
  padding: 15px 31px;
  min-width: 165px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 40px;
  background: rgba(255,255,255,0.09);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.it-growth-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,0.30),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.it-growth-button:hover::before {
  left: 140%;
}

.it-growth-button i {
  transition: transform 0.3s ease;
}

.it-growth-button:hover {
  transform: translateY(-5px);
  background: #fff;
  color: #00205C;
  box-shadow: 0 15px 35px rgba(0,0,0,0.22), 0 0 25px rgba(255,255,255,0.10);
}

.it-growth-button:hover i {
  transform: translateX(6px);
}

.it-growth-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.it-growth-services span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.it-growth-services span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.it-growth-services i {
  color: #b9f4ff;
}

.it-growth-light {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.11);
  top: 18%;
  right: 7%;
  opacity: 0.8;
  animation: floatingCircle 7s ease-in-out infinite;
  pointer-events: none;
}


.it-growth-light::before,
.it-growth-light::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
}

.it-growth-light::before {
  width: 160px;
  height: 160px;

  top: 29px;
  left: 29px;
}

.it-growth-light::after {
  width: 100px;
  height: 100px;

  top: 59px;
  left: 59px;
}

.tech-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b9f4ff;
  box-shadow:0 0 12px rgba(185,244,255,0.8);
  opacity: 0.65;
  pointer-events: none;
}

.tech-dot-1 {
  top: 25%;
  left: 12%;
  animation: floatingDot 5s ease-in-out infinite;
}

.tech-dot-2 {
  top: 70%;
  left: 20%;
  animation: floatingDot 6s ease-in-out infinite reverse;
}

.tech-dot-3 {
  top: 35%;
  right: 18%;
  animation: floatingDot 7s ease-in-out infinite;
}

.tech-dot-4 {
  top: 78%;
  right: 12%;
  animation: floatingDot 5.5s ease-in-out infinite reverse;
}

@keyframes sectionGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@keyframes floatingCircle {
  0%,
  100% {
      transform:
          translateY(0)
          rotate(0deg);
  }
  50% {
      transform:
          translateY(-18px)
          rotate(8deg);
  }
}


@keyframes floatingDot {
  0%,
  100% {
      transform:
          translateY(0)
          scale(1);
  }
  50% {
      transform:
          translateY(-18px)
          scale(1.4);
  }
}


@keyframes pulseDot {
  0%,
  100% {
      opacity: 0.5;
      transform: scale(1);
  }
  50% {
      opacity: 1;
      transform: scale(1.35);
  }
}



@media (max-width: 767px) {
  #sectionTwo {
    margin-top: 80px;
  }
  .it-growth-section {
    padding: 85px 20px 80px;
  }
  .it-growth-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .it-growth-text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 26px;
  }
  .it-growth-label {
    margin-bottom: 20px;
    padding: 7px 14px;
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .it-growth-button {
    margin-top: 30px;
    padding: 13px 27px;
    font-size: 16px;
  }
  .it-growth-services {
    gap: 9px 12px;
    margin-top: 25px;
    font-size: 11px;
  }
  .it-growth-services span:not(:last-child)::after {
    margin-left: 7px;
  }
  .it-growth-light {
    width: 130px;
    height: 130px;
    right: -50px;
    top: 8%;
    opacity: 0.45;
  }
  .it-growth-light::before {
    width: 92px;
    height: 92px;
    top: 18px;
    left: 18px;
  }
  .it-growth-light::after {
    width: 56px;
    height: 56px;
    top: 37px;
    left: 37px;
  }
  .tech-dot-1 {
    left: 5%;
  }
  .tech-dot-2 {
    left: 10%;
  }
  .tech-dot-3 {
    right: 5%;
  }
  .tech-dot-4 {
    right: 8%;
  }
}

/* end of section 2 */  

/* Start of Section 3 */
.service-card-home {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 32, 92, 0.05);
  padding: 30px 20px;
  transition: all 0.4s ease;
  height: auto; 
  min-height: 400px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}

.service-card-home.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 119, 182, 0.15);
}

.service-card-home img {
  width: 80px; 
  max-width: 30%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.service-card-home:hover img {
  transform: rotate(360deg) scale(1.1);
}

.service-card-home:hover .icon-animate {
  transform: scale(1.1);
}

.service-card-home h6 {
  color: #00205C;
  font-weight: 700;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-home p.title {
  color: #0077B6;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.service-card-home p.desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .service-card-home img {
    width: 60px;
  }
}

@media (max-width: 992px) {
  .service-card-home {
    padding: 20px 15px;
  }

  .service-card-home img {
    width: 50px;
  }

  .service-card-home h6 {
    font-size: 16px;
  }

  .service-card-home p.title {
    font-size: 15px;
  }

  .service-card-home p.desc {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .service-card-home img {
    width: 40px;
    margin-top: 5px !important;
  }

  .service-card-home h6 {
    font-size: 14px;
  }

  .service-card-home p.title {
    font-size: 13px;
  }

  .service-card-home p.desc {
    font-size: 12px;
  }
}
/* End of Section 3 */



/* industry section */
 .mainIndustrySection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px; 
  margin-top: 60px;
}

.items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  justify-content: center;
}


.svgDiv {
  position: relative;
  width: 110px; 
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; 
}

.svgDiv .circle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.svgDiv svg:not(.circle-svg) {
  position: relative;
  z-index: 1;
  width: 55%;
  height: 55%;
  display: block;
  margin: auto;
  transform: translateY(-3%);
}

.animate-text {
  margin-top: 20px;
}

.animate-text p {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
}

.sectionClients {
  background: linear-gradient(135deg, #001b47, #002a70, #003c9d);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 32, 92, 0.35);
}

@keyframes gradientShift {
  0% {
    background-position: left center;
  }
  50% {
    background-position: right center;
  }
  100% {
    background-position: left center;
  }
}

.sectionClients::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.sectionClients h6.text-highlight {
  color: #00b4d8;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sectionClients h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.sectionClients p {
  max-width: 700px;
  margin: 0 auto;
  color: #d9e3f0;
  font-size: 16px;
  line-height: 1.6;
}

.sectionClients::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}

/* end of industry section */


/* Start of Contact us HomePage Form Styling */
.contact-section {
  background-image: url('../images/bgContact.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
  min-height: 90vh;
}

.contact-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin-left: 10%;
  margin-top: 2%;
}

.contact-form-wrapper {
  padding: 40px;
  border-radius: 8px;
  max-width: 650px;
  width: 100%;
  box-sizing: border-box;
}

.contact-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00205C;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #00205C;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.form-field.full-width {
  width: 100%;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #00205C;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.form-field input,
.form-field textarea,
.form-field .contact-select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: none !important;
  outline: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #00205C;
  background-color: #f8f9fb;
  transition:background-color 0.3s ease,box-shadow 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a94a3;
  opacity: 1;
}

.contact-select {
  height: 45px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #00205C 50%
    ),
    linear-gradient(
      135deg,
      #00205C 50%,
      transparent 50%
    );
  background-position:calc(100% - 18px) 19px,calc(100% - 13px) 19px;
  background-size:5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px !important;
}

.contact-select option {
  color: #00205C;
  background-color: #ffffff;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field .contact-select:focus {
  border: none !important;
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 0 6px rgba(0, 32, 92, 0.15);
}

.consent-row {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
  color: #00205C;
  font-size: 13px;
  line-height: 20px;
}

.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #00205C;
}

.consent-row span {
  display: inline-block;
  margin: 0;
}

@media (max-width: 576px) {
  .contact-container {
    margin-left: 3% !important;
    width: 94%;
  }
  .contact-form-wrapper {
    padding: 30px 15px;
    max-width: 100%;
  }
  .contact-title {
    font-size: 28px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .form-field {
    width: 100%;
  }
  .form-field input,
  .form-field textarea,
  .form-field .contact-select {
    width: 100%;
  }
  .consent-row {
    align-items: flex-start;
  }
  .consent-row input[type="checkbox"] {
    margin-top: 2px;
  }
}

/* End of Contact Us Form Styling */

/* section 6 styling (know the numbers)*/

#sectionSix {
    position: relative;
    overflow: hidden;
    padding: 110px 20px 120px;
    background: #ffffff;
    isolation: isolate;
}

#sectionSix::before {
  content: "";
  position: absolute;
  inset: -80px;
  background-image:
      linear-gradient(
          rgba(6, 173, 210, 0.075) 1px,
          transparent 1px
      ),
      linear-gradient(
          90deg,
          rgba(6, 173, 210, 0.075) 1px,
          transparent 1px
      );
  background-size: 55px 55px;
  mask-image: radial-gradient(
      ellipse at center,
      black 0%,
      rgba(0,0,0,0.85) 45%,
      transparent 85%
  );
  -webkit-mask-image: radial-gradient(
      ellipse at center,
      black 0%,
      rgba(0,0,0,0.85) 45%,
      transparent 85%
  );
  animation: impactGridMove 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

#sectionSix::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background:
      radial-gradient(
          circle,
          rgba(6, 173, 210, 0.10) 0%,
          rgba(6, 173, 210, 0.045) 35%,
          transparent 70%
      );
  filter: blur(30px);
  top: -220px;
  right: -150px;
  animation: impactGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

#sectionSix > .container {
  position: relative;
  z-index: 2;
}

.impact-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.impact-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(6, 173, 210, 0.25);
  border-radius: 30px;
  background: rgba(6, 173, 210, 0.055);
  backdrop-filter: blur(10px);
  color: #006f91 !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow:0 5px 20px rgba(6, 173, 210, 0.06);
}

.impact-label::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #06ADD2 !important;
  box-shadow:0 0 12px rgba(6, 173, 210, 0.65);
  animation: impactPulse 2s ease-in-out infinite;
}

.impact-title {
  margin: 22px 0 18px;
  color: #00205C !important;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -1px;
  text-shadow:0 8px 25px rgba(0, 32, 92, 0.08);
}

.impact-title span {
  color: #06ADD2 !important;
}

.impact-description {
  max-width: 680px;
  margin: 0 auto;
  color: #526174 !important;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: 0.2px;
}

#impactText span {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  transition:
      opacity 0.45s ease,
      transform 0.45s ease;
}

.impact-metrics {
  display: grid;
  grid-template-columns:
      repeat(3, minmax(0, 1fr));
  gap: 25px;
  max-width: 1050px;
  margin: 0 auto;
}

.impact-card {
  position: relative;
  padding: 38px 25px 34px;
  border: 1px solid rgba(0, 32, 92, 0.09);
  border-radius: 20px;
  background:
      linear-gradient(
          145deg,
          #ffffff 0%,
          #fbfdff 100%
      );
  box-shadow:
      0 12px 35px rgba(0, 32, 92, 0.075),
      0 2px 8px rgba(0, 32, 92, 0.035);
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(35px);
  transition:
      opacity 0.8s ease,
      transform 0.8s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
      radial-gradient(
          circle,
          rgba(6, 173, 210, 0.11),
          transparent 70%
      );
  filter: blur(25px);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.impact-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background:
      linear-gradient(
          90deg,
          transparent,
          rgba(6, 173, 210, 0.35),
          transparent
      );
  opacity: 0.5;
  pointer-events: none;
}

.impact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.impact-card:nth-child(2) {
  transition-delay: 0.15s;
}

.impact-card:nth-child(3) {
  transition-delay: 0.30s;
}

.impact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 173, 210, 0.35);
  box-shadow:0 22px 50px rgba(0, 32, 92, 0.11),0 0 30px rgba(6, 173, 210, 0.08);
}

.impact-circle {
  position: relative;
  width: 145px;
  height: 145px;
  margin: 0 auto 25px;
}

.impact-circle svg {
  width: 145px;
  height: 145px;
  transform: rotate(-90deg);
  overflow: visible;
}

.impact-circle .C\_0 {
  stroke:rgba(0, 32, 92, 0.10);
  stroke-width: 4;
  fill: none;
}

.impact-circle .C\_1 {
  stroke: #06ADD2 !important;
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  filter:
      drop-shadow(
          0 0 6px
          rgba(6, 173, 210, 0.55)
      );
}

.impact-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
      translate(-50%, -50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #00205C !important;
  font-size: 34px;
  font-weight: 750;
  line-height: 1;
}

.impact-number .plus {
  margin-left: 4px;
  margin-top: -7px;
  color: #06ADD2 !important;
  font-size: 23px;
  font-weight: 700;
}

.impact-card-title {
  margin: 0;
  color: #00205C !important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.impact-card-description {
  margin: 9px auto 0;
  max-width: 220px;
  color:#66758a !important;
  font-size: 13px;
  line-height: 21px;
}

.impact-card-accent {
  width: 35px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 10px;
  background: #06ADD2 !important;
  box-shadow:0 0 10px rgba(6, 173, 210, 0.45);
}

@keyframes impactGridMove {
  0% {
      transform:
          translate3d(0, 0, 0);
  }
  50% {
      transform:
          translate3d(27px, 27px, 0);
  }
  100% {
      transform:
          translate3d(55px, 55px, 0);
  }
}

@keyframes impactGlow {
  0% {
      transform:
          translate3d(0, 0, 0)
          scale(1);
  }
  50% {
      transform:
          translate3d(-60px, 50px, 0)
          scale(1.08);
  }
  100% {
      transform:
          translate3d(-100px, 90px, 0)
          scale(1.15);
  }
}

@keyframes impactPulse {
  0%,
  100% {
    opacity: 0.5;

    transform:scale(1);
  }
  50% {
    opacity: 1;

    transform:scale(1.35);
  }
}

@media (max-width: 900px) {
  #sectionSix {
    padding:90px 20px 100px;
  }
  .impact-title {
    font-size: 43px;
  }
  .impact-metrics {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  #sectionSix {
    padding:75px 18px 85px;
  }
  .impact-header {
    margin-bottom: 40px;
  }
  .impact-title {
    font-size: 34px;

    letter-spacing:-0.5px;
  }
  .impact-description {
    font-size: 15px;
    line-height: 25px;
  }
  .impact-metrics {
    grid-template-columns:1fr;
    max-width: 360px;
    gap: 18px;
  }
  .impact-card {
    padding:30px 20px 28px;
  }
  .impact-circle {
    width: 125px;
    height: 125px;
  }
  .impact-circle svg {
    width: 125px;
    height: 125px;
  }
  .impact-number {
    font-size: 30px;
  }
  .impact-card-title {
    font-size: 18px;
  }
}
/* end of section 6 styling(know the numbers)

/* start of section 1 of services */ 

#sectionOne {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #001a4d;
}

#sectionOne img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transform: scale(1.02);
}

#sectionOne::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 10, 35, 0.58) 0%,
      rgba(0, 15, 45, 0.38) 40%,
      rgba(0, 15, 45, 0.18) 75%,
      rgba(0, 15, 45, 0.30) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 15, 45, 0.25),
      rgba(0, 15, 45, 0.30)
    );
}

#sectionOne::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:linear-gradient(rgba(6, 173, 210, 0.045) 1px,transparent 1px),linear-gradient(90deg,rgba(6, 173, 210, 0.045) 1px,transparent 1px);
  background-size: 75px 75px;
  mask-image: linear-gradient(to bottom,transparent,black 20%,black 80%,transparent);
  animation: heroGrid 18s ease-in-out infinite;
}

#sectionOne .container {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
}

.hero-label {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 14px;
  color: #06ADD2;
  background: rgba(0, 10, 30, 0.45);
  border: 1px solid rgba(6, 173, 210, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

#sectionOne h1 {
  margin: 0;
  color: #fff;
  font-size: 4.4rem !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2.5px;
  text-shadow:
    0 5px 25px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

#sectionOne h1 span {
  color: #06ADD2;
}

.section-one-line {
  width: 75px;
  height: 4px;
  margin: 22px auto 25px;
  border-radius: 10px;
  background: #06ADD2;
  box-shadow:0 0 12px rgba(6, 173, 210, 0.7),0 0 25px rgba(6, 173, 210, 0.25);
  animation: heroLine 3s ease-in-out infinite;
}

#sectionOne h3 {
  display: inline-block;
  max-width: 780px;
  margin: 0 auto;
  padding: 8px 18px;

  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 10, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;

  font-size: 1.05rem !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3px;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

@keyframes heroGrid {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes heroLine {
  0%,
  100% {
    width: 75px;
    opacity: 0.75;
  }
  50% {
    width: 115px;
    opacity: 1;
  }
}

@media (max-width: 576px) {

  .hero-label {
    margin-bottom: 16px;
    padding: 6px 11px;
    font-size: 9px;
    letter-spacing: 2px;
    background: rgba(0, 10, 30, 0.5);
  }

  #sectionOne h1 {
    font-size: 2.45rem !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

    #sectionOne h3 {
    max-width: 100%;
    padding: 7px 14px;
    font-size: 0.95rem !important;
    line-height: 1.45;
    border-radius: 30px;
  }
}

@media (max-width: 992px) {
  #sectionOne h1 {
    font-size: 3.5rem !important;
    letter-spacing: -1.5px;
  }
  #sectionOne h3 {
    max-width: 680px;
    font-size: 1.25rem !important;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  #sectionOne {
    min-height: 100vh;
    height: 100vh;
  }
  #sectionOne img {
    object-position: center center;
  }
  #sectionOne .container {
    width: 100%;
    padding: 0 28px;
  }
  .hero-label {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 2px;
  }
  #sectionOne h1 {
    font-size: 2.45rem !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }
  #sectionOne h1 span {
    display: block;
    margin-top: 4px;
  }
  .section-one-line {
    width: 55px;
    height: 3px;
    margin: 17px auto 20px;
  }
  #sectionOne h3 {
    max-width: 100%;
    font-size: 1.05rem !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 380px) {
  #sectionOne h1 {
    font-size: 2.15rem !important;
  }
   #sectionOne h3 {
    font-size: 0.88rem !important;
    padding: 6px 12px;
  }
  .hero-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
}

/* end of section 1 of services */

/* start contact form services */
.contact-page-section {
  position: relative;
  background: #ffffff;
  padding: 70px 30px;
  overflow: hidden;
}

.contact-page-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(6, 173, 210, 0.055);
  filter: blur(75px);
  top: -220px;
  right: -160px;
  pointer-events: none;
}

.contact-page-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(0, 32, 92, 0.035);
  filter: blur(80px);
  bottom: -200px;
  left: -160px;
  pointer-events: none;
}

.contact-page-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  gap: 65px;
  align-items: center;
}

.contact-page-intro {
  padding: 10px 0;
}

.contact-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #06ADD2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  margin-bottom: 14px;
}

.contact-page-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06ADD2;
  box-shadow:0 0 0 4px rgba(6, 173, 210, 0.10);
}

.contact-page-title {
  margin: 0 0 18px;
  color: #00205C;
  font-size: 46px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1.3px;
}

.contact-page-title span {
  display: block;
  color: #06ADD2;
}

.contact-page-description {
  max-width: 450px;
  margin: 0;
  color: #657286;
  font-size: 15px;
  line-height: 24px;
}


.contact-page-line {
  width: 48px;
  height: 3px;
  margin: 25px 0;
  border-radius: 10px;
  background: #06ADD2;
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-page-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-page-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(6, 173, 210, 0.10);
  color: #06ADD2;
  font-size: 13px;
  font-weight: 800;
}

.contact-page-info-item strong {
  display: block;
  margin-bottom: 2px;
  color: #00205C;
  font-size: 13px;
  font-weight: 700;
}

.contact-page-info-item p {
  margin: 0;
  color: #7a8494;
  font-size: 12px;
  line-height: 18px;
}

.contact-page-card {
  position: relative;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 20px;
  box-shadow:0 16px 45px rgba(0, 32, 92, 0.07),0 3px 10px rgba(0, 32, 92, 0.03);
}

.contact-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 60px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: #06ADD2;
}

.contact-page-card-header {
  margin-bottom: 22px;
}

.contact-page-card-label {
  display: block;
  margin-bottom: 6px;
  color: #06ADD2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-page-card-header h2 {
  margin: 0 0 5px;
  color: #00205C;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 750;
}

.contact-page-card-header p {
  margin: 0;
  color: #7a8494;
  font-size: 13px;
  line-height: 20px;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-page-row {
  display: flex;
  gap: 15px;
  width: 100%;
}

.contact-page-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.contact-page-full {
  width: 100%;
}

.contact-page-field label {
  margin-bottom: 5px;
  color: #253858;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.contact-page-field input,
.contact-page-field textarea,
.contact-page-select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e1e7ee;
  border-radius: 8px;
  background: #f8fafc;
  color: #00205C;
  font-family: inherit;
  font-size: 13px;
  transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
}

.contact-page-field input {
  height: 40px;
  padding: 0 12px;
}

.contact-page-field textarea {
  min-height: 85px;
  padding: 10px 12px;
  resize: vertical;
}


.contact-page-field input::placeholder,
.contact-page-field textarea::placeholder {
  color: #9aa5b4;
  opacity: 1;
}

.contact-page-select {
  height: 40px;
  padding:0 35px 0 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
      linear-gradient(
          45deg,
          transparent 50%,
          #526176 50%
      ),
      linear-gradient(
          135deg,
          #526176 50%,
          transparent 50%
      );
  background-position:
      calc(100% - 17px) 17px,
      calc(100% - 12px) 17px;
  background-size:5px 5px,5px 5px;
  background-repeat: no-repeat;
}

.contact-page-select option {
  background: #ffffff;
  color: #00205C;
}

.contact-page-field input:focus,
.contact-page-field textarea:focus,
.contact-page-select:focus {
  outline: none;
  border-color: #06ADD2;
  background: #ffffff;
  box-shadow:0 0 0 3px rgba(6, 173, 210, 0.08);
  transform: translateY(-1px);
}

.contact-page-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1px;
  cursor: pointer;
  color: #687588;
  font-size: 11px;
  line-height: 17px;
}

.contact-page-consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 0;
  cursor: pointer;
  accent-color: #00205C;
}

.contact-page-consent span {
  display: inline-block;
  margin: 0;
}

.contact-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  min-height: 44px;
  margin-top: 2px;
  border: none;
  border-radius: 8px;
  background: #00205C;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-page-button span {
  font-size: 17px;
  line-height: 1;
  transition:transform 0.3s ease;
}

.contact-page-button:hover {
  background: #06ADD2;
  transform: translateY(-2px);
  box-shadow:0 8px 20px rgba(6, 173, 210, 0.18);
}

.contact-page-button:hover span {
  transform: translateX(4px);
}

.contact-page-button:active {
  transform: translateY(0);
}

.contact-page-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-page-validation {
  min-height: 17px;
  text-align: right;
}

.contact-page-validation h4 {
  margin: 0;
  color: #d64545 !important;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 1000px) {
  .contact-page-section {
    padding: 60px 30px;
  }
  .contact-page-container {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 40px;
  }
  .contact-page-intro {
    text-align: center;
  }
  .contact-page-description {
    margin: 0 auto;
  }
  .contact-page-line {
    margin: 22px auto;
  }
  .contact-page-info {
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
  }
  .contact-page-title {
    font-size: 42px;
  }
}

@media (max-width: 650px) {
  .contact-page-section {
    padding: 50px 18px;
  }
  .contact-page-container {
    gap: 30px;
  }
  .contact-page-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .contact-page-description {
    font-size: 14px;
    line-height: 23px;
  }
  .contact-page-card {
    padding: 25px 18px;

    border-radius: 16px;
  }
  .contact-page-card::before {
    left: 18px;
  }
  .contact-page-card-header {
    margin-bottom: 20px;
  }
  .contact-page-card-header h2 {
    font-size: 23px;
  }
  .contact-page-row {
    flex-direction: column;

    gap: 13px;
  }
  .contact-page-field {
    width: 100%;
  }
  .contact-page-consent {
    align-items: flex-start;
  }
  .contact-page-consent input[type="checkbox"] {
    margin-top: 1px;
  }
}

@media (max-width: 400px) {
  .contact-page-title {
    font-size: 31px;
  }
  .contact-page-card {
    padding: 22px 15px;
  }
  .contact-page-card::before {
    left: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page-field input,
  .contact-page-field textarea,
  .contact-page-select,
  .contact-page-button,
  .contact-page-button span {
      transition: none;
  }
}
/* end contact form services */


/* start contact us page */
#sectionOne.contact-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    background:
      radial-gradient(
          circle at 15% 30%,
          rgba(6, 173, 210, 0.18),
          transparent 32%
      ),
      radial-gradient(
          circle at 85% 70%,
          rgba(6, 173, 210, 0.12),
          transparent 35%
      ),
      linear-gradient(
          135deg,
          #001943 0%,
          #002b68 50%,
          #001943 100%
      );
    background-size: 150% 150%;
    animation: contactBackground 14s ease-in-out infinite;
}

#sectionOne.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
          rgba(255,255,255,0.035) 1px,
          transparent 1px
      ),
      linear-gradient(
          90deg,
          rgba(255,255,255,0.035) 1px,
          transparent 1px
      );
    background-size: 65px 65px;
    mask-image: linear-gradient(to bottom,transparent, black 20%, black 80%,transparent);
    pointer-events: none;
}

#sectionOne.contact-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(6, 173, 210, 0.12);
  filter: blur(100px);
  top: -300px;
  right: -100px;
  animation: contactGlow 10s ease-in-out infinite;
  pointer-events: none;
}

#sectionOne.contact-hero .container {
  position: relative;
  z-index: 3;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 80px;
  text-align: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #6de5ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-eyebrow span {
  width: 35px;
  height: 3px;
  background: #06ADD2;
  box-shadow:0 0 10px rgba(6, 173, 210, 0.7);
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-shadow:0 8px 30px rgba(0, 0, 0, 0.18);
}

.contact-hero h1 span {
  display: block;
  color: #55dff5;
}

.contact-hero p {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.contact-hero-line {
  width: 70px;
  height: 3px;
  margin: 28px auto 0;
  border-radius: 10px;
  background: #06ADD2;
  box-shadow:0 0 15px rgba(6, 173, 210, 0.7);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(109, 229, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 320px;
  height: 320px;
  left: -160px;
  bottom: -160px;
  animation:contactOrbit 12s ease-in-out infinite;
}

.orbit-two {
  width: 190px;
  height: 190px;
  right: -70px;
  top: 90px;
  border-color:rgba(109, 229, 255, 0.12);
  animation: contactOrbit 9s ease-in-out infinite reverse;
}

.contact-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06ADD2;
  box-shadow:0 0 12px rgba(6, 173, 210, 0.8);
  pointer-events: none;
}

.dot-one {
  top: 28%;
  left: 12%;
  animation:contactFloat 4s ease-in-out infinite;
}

.dot-two {
  top: 65%;
  right: 15%;
  animation:contactFloat 5s ease-in-out infinite 1s;
}

.dot-three {
  top: 20%;
  right: 25%;
  width: 5px;
  height: 5px;
  animation:contactFloat 4.5s ease-in-out infinite 0.5s;
}

@keyframes contactBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes contactGlow {
  0%,
  100% {
    transform:
        translate(0, 0)
        scale(1);
  }
  50% {
    transform:
        translate(-70px, 60px)
        scale(1.15);
  }
}

@keyframes contactOrbit {
    0%,
    100% {
      transform:translate(0, 0);
    }
    50% {
      transform:translate(20px, -20px);
    }
}

@keyframes contactFloat {
  0%,
  100% {
    transform:translateY(0);
    opacity: .55;
  }
  50% {
    transform:translateY(-15px);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  #sectionOne.contact-hero {
    min-height: 390px;
  }
  .contact-hero h1 {
    font-size: 3.3rem;
  }
}

@media (max-width: 767px) {
  #sectionOne.contact-hero {
    min-height: 350px;
    padding:70px 20px;
  }
  .contact-hero h1 {
    font-size: 2.4rem;
    letter-spacing:-0.5px;
  }
  .contact-hero p {
    font-size: 15px;
    line-height: 1.6;
  }
  .contact-orbit {
    opacity: .5;
  }
  .dot-one {
    left: 8%;
  }
  .dot-two {
    right: 8%;
  }
}
/* end contact us page */

/* start section 2 services */
#sectionTwoServices {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #00205C;
}

#sectionTwoServices::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(6, 173, 210, .045);
  filter: blur(90px);
  top: -250px;
  right: -180px;
}

#sectionTwoServices article {
  position: relative;
  height: 100%;
  padding: 35px 32px;
  border: 1px solid #e7eef2;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

#sectionTwoServices article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #06ADD2;
  transition: width .4s ease;
}

#sectionTwoServices article:hover {
  transform: translateY(-7px);
  border-color: rgba(6, 173, 210, .30);
  box-shadow: 0 20px 45px rgba(0, 32, 92, .09);
}

#sectionTwoServices article:hover::after {
  width: 100%;
}

#sectionTwoServices article img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 28px;
  transition: transform .35s ease;
}

#sectionTwoServices article:hover img {
  transform: translateY(-4px) scale(1.05);
}

#sectionTwoServices article > p:first-of-type {
  margin-bottom: 10px;
  color: #06ADD2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.5;
}

#sectionTwoServices h3 {
  margin-bottom: 14px;
  color: #00205C;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

#sectionTwoServices article > p:not(:first-of-type) {
  margin-bottom: 24px;
  color: #687b8c;
  font-size: 14px;
  line-height: 1.8;
}

#sectionTwoServices article > p a {
  color: inherit;
}

#sectionTwoServices article > a {
  display: inline-flex;
  align-items: center;
  color: #00205C;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color .25s ease;
}

#sectionTwoServices article > a::after {
  content: "→";
  margin-left: 8px;
  color: #06ADD2;
  transition: transform .25s ease;
}

#sectionTwoServices article:hover > a {
  color: #06ADD2;
}

#sectionTwoServices article:hover > a::after {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  #sectionTwoServices article {
    padding: 30px 25px;
  }
  #sectionTwoServices article img {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
  }
  #sectionTwoServices h3 {
    font-size: 19px;
  }
  #sectionTwoServices article > p:not(:first-of-type) {
    font-size: 14px;
  }
}
/* end section 2 services */

/* start section 3 services */
#sectionThreeServices {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
        circle at 15% 20%,
        rgba(6, 173, 210, .30),
        transparent 32%
    ),
    radial-gradient(
        circle at 85% 80%,
        rgba(0, 32, 92, .75),
        transparent 40%
    ),
    linear-gradient(
        135deg,
        #06ADD2 0%,
        #0077B6 45%,
        #00205C 100%
    );
}

#sectionThreeServices::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  filter: blur(110px);
  top: -280px;
  right: -180px;
  animation: servicesRoadmapGlow 10s ease-in-out infinite;
}

#sectionThreeServices::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
        rgba(255,255,255,.035) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(255,255,255,.035) 1px,
        transparent 1px
    );
  background-size: 70px 70px;
  opacity: .5;
}

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

#sectionThreeServices .col-lg-6:first-child p {
  margin-bottom: 14px;
  color: #bdf5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

#sectionThreeServices h2 {
  margin: 0;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

#sectionThreeServices .col-lg-6:last-child > p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.85;
}

#sectionThreeServices article {
  position: relative;
  height: 100%;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform .35s ease,
    background .35s ease,
    border-color .35s ease;
}

#sectionThreeServices .row:last-child > div:not(:last-child) article::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: -25px;
  color: rgba(255,255,255,.45);
  font-size: 25px;
  z-index: 3;
}

#sectionThreeServices article:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
}

#sectionThreeServices article span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  color: #bdf5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

#sectionThreeServices article:hover span {
  background: #06ADD2;
  color: #fff;
  border-color: #06ADD2;
  transform: scale(1.08);
}

#sectionThreeServices h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

#sectionThreeServices article p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.8;
}

@keyframes servicesRoadmapGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-70px, 60px) scale(1.12);
  }
}

@media (max-width: 991px) {
  #sectionThreeServices h2 {
    font-size: 2.7rem;
  }
  #sectionThreeServices .row:last-child > div:not(:last-child) article::after {
    display: none;
  }
}

@media (max-width: 767px) {
  #sectionThreeServices h2 {
    font-size: 2.35rem;
    letter-spacing: -1px;
  }
  #sectionThreeServices article {
    padding: 27px;
  }
}
/* end section 3 services */

/* start of section 2 industries */
#sectionTwoIndustries {
  position: relative;
  overflow: hidden;
  background:
      radial-gradient(
          circle at 15% 30%,
          rgba(6, 173, 210, .20),
          transparent 30%
      ),
      radial-gradient(
          circle at 90% 80%,
          rgba(6, 173, 210, .10),
          transparent 32%
      ),
      linear-gradient(
          135deg,
          #00205C 0%,
          #003875 55%,
          #00205C 100%
      );
  color: #fff;
}

#sectionTwoIndustries::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(6,173,210,.08);
  filter: blur(110px);
  top: -300px;
  right: -200px;
  animation: industriesGlow 12s ease-in-out infinite;
}

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

#sectionTwoIndustries .col-lg-4 > div {
  position: sticky;
  top: 120px;
}

#sectionTwoIndustries .col-lg-4 p:first-child {
  margin-bottom: 15px;
  color: #06ADD2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#sectionTwoIndustries h2 {
  max-width: 430px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

#sectionTwoIndustries h2 span {
  color: #06ADD2;
}

#sectionTwoIndustries .col-lg-4 p:last-child {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.8;
}

#sectionTwoIndustries .col-lg-8 article {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 105px;
  padding: 18px 5px;
  border-top: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  transition:
    padding .35s ease,
    border-color .35s ease;
}

#sectionTwoIndustries .col-lg-8 article:last-child {
  border-bottom: 1px solid rgba(255,255,255,.15);
}

#sectionTwoIndustries article > span {
  flex: 0 0 55px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: color .3s ease;
}

#sectionTwoIndustries article div {
  position: relative;
  z-index: 2;
  flex: 1;
}

#sectionTwoIndustries article p {
  margin: 0 0 4px;
  color: #06ADD2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#sectionTwoIndustries article h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  transition: transform .35s ease;
}

#sectionTwoIndustries article a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6,173,210,.35);
  border-radius: 50%;
  color: #06ADD2;
  font-size: 20px;
  text-decoration: none;
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

#sectionTwoIndustries article img {
  position: absolute;
  width: 150px;
  height: 90px;
  right: 90px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(30px) scale(.95);
  transition:
    opacity .4s ease,
    transform .5s ease;
  z-index: 1;
}

#sectionTwoIndustries article:hover {
  padding-left: 15px;
  border-color: rgba(6,173,210,.5);
}

#sectionTwoIndustries article:hover > span {
  color: #06ADD2;
}

#sectionTwoIndustries article:hover h3 {
  transform: translateX(5px);
}

#sectionTwoIndustries article:hover img {
  opacity: .28;
  transform: translateX(0) scale(1);
}

#sectionTwoIndustries article:hover a {
  background: #06ADD2;
  color: #fff;
  transform: rotate(-45deg);
}

@keyframes industriesGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100px, 80px);
  }
}

@media (max-width: 991px) {
  #sectionTwoIndustries .col-lg-4 > div {
    position: static;
  }
  #sectionTwoIndustries h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 575px) {
  #sectionTwoIndustries h2 {
    font-size: 2.35rem;
    letter-spacing: -1px;
  }
  #sectionTwoIndustries .col-lg-8 article {
    min-height: 95px;
  }
  #sectionTwoIndustries article > span {
    flex: 0 0 40px;
  }
  #sectionTwoIndustries article h3 {
    font-size: 17px;
  }
  #sectionTwoIndustries article img {
    display: none;
  }
  #sectionTwoIndustries article a {
    width: 40px;
    height: 40px;
  }
}
/* end of section 2 industries */

/* =========================================================
   START SERVICES FAQ
   ========================================================= */
#servicesFAQ {
  position: relative;
  overflow: hidden;
  background:
      radial-gradient(
          circle at 85% 15%,
          rgba(6, 173, 210, 0.12),
          transparent 28%
      ),
      radial-gradient(
          circle at 8% 85%,
          rgba(0, 119, 182, 0.07),
          transparent 30%
      ),
      linear-gradient(
          135deg,
          #f7fbfd 0%,
          #edf8fb 50%,
          #f9fcfd 100%
      );
  color: #00205C;
}

#servicesFAQ::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -300px;
  right: -120px;
  border-radius: 50%;
  background: rgba(6, 173, 210, 0.10);
  filter: blur(100px);
  animation: faqGlow 10s ease-in-out infinite;
  pointer-events: none;
}


#servicesFAQ::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -280px;
  left: -180px;
  border: 1px solid rgba(6, 173, 210, 0.08);
  border-radius: 50%;
  box-shadow:
      0 0 0 45px rgba(6, 173, 210, 0.025),
      0 0 0 90px rgba(6, 173, 210, 0.015);
  pointer-events: none;
}

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

#servicesFAQ .row:first-child > div:first-child > p {
  margin-bottom: 14px;
  color: #0077B6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#servicesFAQ h2 {
  margin: 0;
  color: #00205C;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

#servicesFAQ h2 span {
  display: block;
  color: #06ADD2;
}

#servicesFAQ details {
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 32, 92, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:0 8px 30px rgba(0, 32, 92, 0.055);
  transition:
      transform .35s ease,
      border-color .35s ease,
      box-shadow .35s ease;
}

#servicesFAQ details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #06ADD2;
  transition: height .35s ease;
}

#servicesFAQ details:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 173, 210, 0.25);
  box-shadow:0 15px 40px rgba(0, 32, 92, 0.09);
}

#servicesFAQ details[open] {
  border-color: rgba(6, 173, 210, 0.35);
  box-shadow:0 18px 45px rgba(0, 32, 92, 0.10);
}

#servicesFAQ details[open]::before {
  height: 100%;
}

#servicesFAQ summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 23px 28px;
  color: #00205C;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

#servicesFAQ summary::-webkit-details-marker {
  display: none;
}

#servicesFAQ summary span {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 173, 210, 0.08);
  color: #06ADD2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  transition:
      background .3s ease,
      color .3s ease,
      transform .3s ease;
}

#servicesFAQ details:hover summary span {
  background: rgba(6, 173, 210, 0.13);
  transform: scale(1.05);
}

#servicesFAQ details[open] summary span {
  background: #06ADD2;
  color: #fff;
}

#servicesFAQ summary::after {
  content: "+";
  margin-left: auto;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 173, 210, 0.07);
  color: #06ADD2;
  font-size: 22px;
  font-weight: 400;
  transition:
      transform .3s ease,
      background .3s ease,
      color .3s ease;
}

#servicesFAQ details[open] summary::after {
  transform: rotate(45deg);
  background: #06ADD2;
  color: #fff;
}

#servicesFAQ details p {
  max-width: 850px;
  margin: 0;
  padding:0 80px 28px 90px;
  color: #66778c;
  font-size: 14px;
  line-height: 1.8;
}

#servicesFAQ details[open] summary {
  padding-bottom: 18px;
}

@keyframes faqGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.12);
  }
}
@media (max-width: 767px) {
  #servicesFAQ h2 {
    font-size: 2.35rem;
    letter-spacing: -1px;
  }
  #servicesFAQ summary {
    gap: 14px;
    padding: 19px 18px;
    font-size: 15px;
  }
  #servicesFAQ summary span {
    flex-basis: 35px;
    width: 35px;
    height: 35px;
  }
  #servicesFAQ summary::after {
    flex-basis: 29px;
    width: 29px;
    height: 29px;
    font-size: 20px;
  }
  #servicesFAQ details p {
    padding:0 18px 23px 67px;
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================================
   END services FAQ
   ========================================================= */

/* start blog */
.blog-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}
.blog-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.blog-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-date {
  font-size: 13px;
  color: #777;
  margin: 0 0 10px;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #0A3161;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  margin-top: auto;
  color: #0A3161;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.blog-read-more:hover {
  text-decoration: none;
  color: #0066cc;
}
.blog-read-more span {
  margin-left: 5px;
  transition: margin-left 0.2s ease;
}
.blog-read-more:hover span {
  margin-left: 10px;
}
.blog-load-more {
  margin-top: 30px;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  background: #0A3161;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blog-load-more:hover {
  background: #062448;
  transform: translateY(-2px);
}
.blog-single {
  max-width: 900px;
  margin: 0 auto;
}
.blog-single > img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.blog-single h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #0A3161;
  margin: 10px 0 25px;
}
.blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.blog-content img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

}
@media (max-width: 600px) {
  .blog-container {
    padding: 45px 15px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card > img {
    height: 200px;
  }
  .blog-card-content {
    padding: 18px;
  }
  .blog-single h1 {
    font-size: 30px;
  }

}
/* end blog */   

/* Old CSS */

@media (max-width: 781px) {
	.container{
		width:86% !important;
		margin-left:7% !important;
	}

	.slick-prev::before, .slick-next::before {
		color: #00205C;
		font-size: 0px !important;
	}

	.slick-prev {
		left: 0px !important;
	}

	.icon1Mobile{
		width: 90% !important;
		margin-left: 5% !important;
	}

	.icon2Mobile{
		width: 60% !important;
		margin-left: 20% !important;
	}

	.icon3Mobile{
		width: 70% !important;
		margin-left: 15% !important;
	}

	.icon4Mobile{
		width: 70% !important;
		margin-left: 15% !important;
	}

    .mt4Mobile{
		margin-top: 1.5rem!important;
	}

	.submitFormMobile{
		width:170px  !important;   font-size:15px !important;
	}

	h3 {
		font-size: 1.3rem !important;
	}

	h1 {
        font-size: 22px !important;
    }

	button{
		font-size: 16px !important;
		max-width: 180px !important;
	}

	.hideOnMobile{
        display: none;
    }

	.showMobileCss{
        display:  block !important;
    }

}

.navbar li {
    margin-left: 15px;
}

.navbar li a {
    font-size: 17px;
    color: #FFFFFF  ;
    font-weight: 400;
}
.aboutUsHeader a{
    min-width: 90px !important;
}

@media (max-width: 1385px) {
    .navbar li a {
        font-size: 14px;
        color: #FFFFFF  ;
    }

	.heightAutoTablet{
		height: auto !important;
		min-height: auto !important;
	
	}
	.headerInMobileMarginTop{
		margin-top: 80px !important;
	}
}

@media (max-width: 1180px) {
	.scocareLogoDiv {
    	height: 30px;
	}
    .menuBtn {
        border: 0;
    }

    .menuBtn:focus {
        outline: 0 !important;
    }

    .menuBtnIcon {
        font-size: 24px;
        color: white;
    }
	.minus50mobile{
		margin-top:35px !important;
	}

    h1{
		font-size: 22px !important;
	}
	h2{
		font-size: 20px !important;
	}
	p{
		font-size: 14px !important;

	}
	h6{
		font-size: 15px !important;
	}
	.hideTablet{
		display:none !important;
	}
    
	.formWidthMobile{
		width:100% !important; margin-left: 0% !important; padding-bottom: 15px;
	}

}

head{
    width:100% !important;
}
body {
    font-family: "Montserrat", serif !important;
    font-size: 10pt;
    color: #000000;
    text-decoration: none;
    width: 100% !important;
    height: 100vh;
    overflow-y: scroll;
}

.form-control:focus,
.btn:focus {
    outline: none;
    box-shadow: none !important;
    /* border: 1px solid #CED4DA; */
}

/* loader css  */
.loader{
    width: 64px;
    height: 64px;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.loader i{
    font-size: 38px;
}
 a:hover{
    text-decoration: none !important;
}


.displayNone{
    display:none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

table {
    border-right: solid 1px #CCC;
    border-top:solid 0px #CCC !important;
    border-bottom:solid 1px #CCC !important;
    border-left:solid 0px #CCC !important;
   
}
th {
    border-right:solid 0px #CCC !important;
    border-bottom:solid 0px #CCC !important;
    border-top:solid 1px #CCC !important;
    border-left:solid 1px #CCC !important;
}
 td {
    border-bottom:solid 0px #CCC !important;
    border-right:solid 0px #CCC !important;
    border-left:solid 1px #CCC !important;
    border-top:solid 1px #CCC;
}

.nav-item{
    font-size: 15px !important;

}
.navbar li {
    margin-left: 0px;
	padding:0px 10px;
}
#collapsibleNavbar {
    justify-content: center;
}
.container{
    width: 90%;
    max-width: 1300px !important;
}

.card{
    background-color: #fafafa;
    border: 0px solid rgba(0,0,0,.125);
}

#mainPageForm input, #mainPageForm textarea{
    color: #000000 ;
    border: solid 1px #000000 ;
    background-color: transparent;
    min-height:51px;
    padding-left:15px;

    font-size: 13px !important;

}
#sectionSix *{ 
    color:white;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000 !important;
    opacity: 1; /* Firefox */
    font-weight: 600;
   
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000000 !important;
    font-weight: 700;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #000000 !important;
    font-weight: 700;
}

.dropdown-menu{
    max-width:280px;
}

a {
  
    display: inline-block;
    padding: 5px 0;
    position: relative;
  
    transition: all 0.3s ease-in-out;
	
}

.dropdown-menu a {
  color:#000000 !important;
}

.navbarDropdown{
    height:36px !important;
}

p{
	font-size :16px;
}

.card-title{
    color:#00205C; 
    font-weight:700; 
    font-size: 16px;
    margin-top:20px;
}

.aboutUsHeader a{
    display: block ruby !important;
}
.validationtext{
    color: red !important;
    font-size: 15px;
    font-style: italic;
    padding-top: 13px;
}
.mainPageForm{
    min-height: 385px !important;
}


  .shadow{

	box-shadow: 0 -0.1rem 2.5rem rgba(0,0,0,.15) !important;
  }
  .hidden {
	opacity: 0;
	visibility: hidden;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Default height */
    padding: 10px;
    text-align: center;
    background-color: transparent; /* Default background */
    color: black; /* Default text color */
    box-shadow: none;
    transition: all 0.3s ease; /* Smooth transition for all changes */
    z-index: 1000;
}

.hoverlightBlue:hover {
	color: #fff;
	border: 3px solid #06ADD2 !important;
	background: #06ADD2 !important;
	padding:7px !important;
  }

.hoverwhite:hover {
	color: #002f44 !important;
	border: 3px solid #ffffff !important;
	background: #ffffff !important;
	padding:7px !important;
}

.slick-prev::before, .slick-next::before {
	color: #00205C;
	font-size: 55px;
}

.slick-prev {
	left: -57px !important;
}
