/*--------------------------------------------------------------
# General
*/
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  padding-left: 150px; /* Space for the fixed sidebar */
  word-wrap: break-word; /* Ensure long words break and wrap */
  overflow-wrap: break-word; /* Modern alternative for word-wrap */
}

@media (max-width: 992px) {
  body {
    padding-left: 0; /* Remove fixed padding on smaller screens */
    padding-bottom: 60px; /* Add padding for the bottom nav bar */
  }
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  cursor: pointer;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.back-to-top i {
  font-size: 15px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


#about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

/* Solutions Section - Default State (Visible) */
.solution-item {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: none; /* Remove transition for initial load */
}

/* Animation State (applied by JS) */
.solution-item.animated {
  transition: all 0.6s ease-out;
  transform: translateY(30px);
  opacity: 0;
  will-change: transform, opacity;
}

.solution-item.animate-in {
  transform: translateY(0);
  opacity: 1;
}

.solution-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0563bb;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.solution-item:hover .solution-icon {
  background-color: #0563bb;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(5, 99, 187, 0.2);
}

.solution-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: #fff;
  padding: 30px 20px;
}

.solution-card .card-body {
  padding: 20px;
}

.solution-card .d-flex {
  justify-content: flex-start;
  text-align: left;
}

.solution-card h5 {
  text-align: left;
  width: 100%;
}

.solution-card p {
  text-align: left;
  margin-bottom: 0;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.solution-item:hover .solution-card::before {
  opacity: 1;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Removed the blue line from about section heading
#about h2:after {
  content: '';
}
*/

.about-content {
  margin-top: 30px;
}

.about-item {
  flex: 0 0 30%; /* Match solution-item */
  max-width: 30%; /* Match solution-item */
  padding: 0 15px; /* Match solution-item */
  margin-bottom: 30px; /* Match solution-item */
  box-sizing: border-box; /* Ensure consistent box model */
}





.about-item:hover .icon-box {
  background: #0563bb;
  color: #fff;
}

.about-item p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  flex: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  
  .about-item {
    flex-direction: column;
    text-align: center;
  }
  
  .about-item .icon-box {
    margin: 0 auto 15px;
  }
}
/*--------------------------------------------------------------
# Top Left Logo
--------------------------------------------------------------*/
#top-left-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

@media (max-width: 992px) {
  #top-left-logo {
    position: static; /* Allow logo to flow with content */
    text-align: center; /* Center the logo */
    margin-bottom: 20px; /* Add some space below the logo */
  }
}

#top-left-logo img {
  width: 480px; /* 2x enlarged from current 240px */
  height: auto;
}

@media (max-width: 992px) {
  #top-left-logo img {
    width: 200px; /* Adjust logo width for smaller screens */
    height: auto;
  }
}

/*--------------------------------------------------------------
# Floating Navigation
--------------------------------------------------------------*/
.floating-nav {
  position: fixed;
  left: 20px; /* Default for larger screens */
  display: flex;
  flex-direction: column; /* Default for larger screens */
  gap: 15px;  /* Base spacing between nav items */
  z-index: 9997;
}

@media (min-width: 993px) {
  .floating-nav {
    top: 50%;
    transform: translateY(-50%);
  }
}

.floating-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f2f3f5;
  color: #45505b;
  transition: all 0.3s ease;
  overflow: hidden;
}

.floating-nav a i {
  font-size: 20px;
}

.floating-nav a span {
  display: none; /* Hide text by default */
  white-space: nowrap;
  padding-left: 10px;
}

.floating-nav a:hover {
  width: 150px;
  border-radius: 50px;
  background: #0563bb;
  color: #fff;
}

.floating-nav a:hover span {
  display: inline;
}

/* Extra spacing before Apply Now button */
.floating-nav li:last-child {
  margin-top: 65px; /* Increased spacing only before Apply Now */
  position: relative;
}

/* Add a subtle divider line before Apply Now */
.floating-nav .apply-now-item::before {
  content: '';
  position: absolute;
  top: -20px; /* Position it in the gap */
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #45505b;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .floating-nav {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    background: #f2f3f5; /* Keep a background for the bottom bar */
    border-radius: 0; /* No border-radius for a full-width bottom bar */
    padding: 10px 0; /* Adjust padding for horizontal layout */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Shadow on top */
    /* Ensure text is visible */
    height: 60px; /* Fixed height for the bottom bar */
    align-items: center; /* Center items vertically */
  }

  .floating-nav a {
    width: auto; /* Allow width to adjust */
    height: auto; /* Allow height to adjust */
    padding: 5px 10px; /* Add padding to links */
    margin-bottom: 0; /* Remove margin-bottom for horizontal layout */
    background: rgba(242, 243, 245, 0.8); /* Add background to individual links */
    border-radius: 50px; /* Keep rounded corners for links */
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
  }

  .floating-nav a i {
    font-size: 18px; /* Slightly smaller icon */
  }

  .floating-nav a span {
  display: inline; /* Show text on mobile */
    font-size: 12px; /* Smaller font size for text */
    padding-left: 0; /* Remove padding-left */
    text-align: center; /* Center text */
  }

  .floating-nav a:hover {
    width: auto; /* Allow width to adjust on hover */
    border-radius: 50px; /* Keep rounded corners on hover */
  }

  .floating-nav li:last-child {
    margin-top: 0; /* Remove extra spacing for horizontal layout */
  }
}

/* Extra spacing before Apply Now button */
.floating-nav li:last-child {
  margin-top: 65px; /* Increased spacing only before Apply Now */
  position: relative;
}

/* Add a subtle divider line before Apply Now */
.floating-nav .apply-now-item::before {
  content: '';
  position: absolute;
  top: -20px; /* Position it in the gap */
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #45505b;
  opacity: 0.2;
}



#main {
  margin-left: 0; /* Adjusted margin to match new header width */
}

@media (max-width: 992px) {
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#emergus {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}


#emergus h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #45505b;
}
#emergus p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  #emergus h1 {
    font-size: 48px; /* Adjust font size for very small screens */
    line-height: 48px;
  }

  #emergus p {
    font-size: 18px;
    line-height: 22px;
  }
}
#emergus p span {
  color: #0563bb;
  letter-spacing: 1px;
}
#emergus .social-links {
  margin-top: 30px;
}
#emergus .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}
#emergus .social-links a:hover {
  color: #0563bb;
}
@media (max-width: 992px) {
  #emergus {
    text-align: center;
  }
  #emergus h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #emergus p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .fullscreen-section {
    height: auto; /* Allow height to adjust based on content */
    padding: 60px 0; /* Ensure sufficient padding */
  }
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}
/* Removed the blue line from section title */
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about .solution-card {
  transition: all 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

#about .solution-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  background-color: #f8f9fa;
}

#about .solution-card .card-body {
  transition: background-color 0.3s ease;
}

#about .solution-card:hover .card-body {
  background-color: #f8f9fa;
}

#about .solution-card .solution-icon {
  transition: all 0.3s ease;
  background-color: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .solution-card:hover .solution-icon {
  background-color: #e1effe;
  transform: scale(1.1);
}

#about .solution-card h5 {
  transition: color 0.3s ease;
}

#about .solution-card:hover h5 {
  color: #0563bb !important;
}

#about .solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0563bb, #28a745);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

#about .solution-card:hover::before {
  transform: scaleX(1);
}

/* Original About styles */
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about .content ul strong {
  margin-right: 10px;
}
.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}
.about .content p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}
.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}
.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #f2f3f5;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #d7dce1;
  border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #d7dce1;
  border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #45505b;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap:hover .portfolio-links a:hover {
  color: #148af9;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  padding: 60px 0 40px 0;
  background-color: #ffffff;
  min-height: auto;
}

#contact .section-title {
  text-align: center;
  padding-bottom: 30px;
}

#contact .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c3e50;
}

#contact .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 25px);
}

#contact .section-title p {
  margin-bottom: 0;
  color: #6c757d;
}

/* Contact Info */
.contact-info {
  padding: 30px;
  background: #fff;
  width: calc(100% + 60px);
  margin-left: -50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  position: relative;
  z-index: 1;
}

.map-container {
  height: 100%;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-box i {
  font-size: 24px;
  color: #0563bb;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.info-box h3 {
  font-size: 18px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-box p {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  color: #6c757d;
}

/* Contact Form */
.contact-form {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group.mt-3 {
  margin-top: 0.5rem !important;
}

.contact-form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-form .form-control {
  border-radius: 6px;
  border: 1px solid #e1e5ee;
  padding: 10px 15px;
  height: 46px;
  transition: all 0.3s;
  box-shadow: none;
}

.contact-form .form-control:focus {
  border-color: #0563bb;
  box-shadow: 0 0 0 0.2rem rgba(5, 99, 187, 0.1);
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 150px;
  resize: none;
}

.contact-form .btn-primary {
  background: #0563bb;
  border: none;
  padding: 12px 35px;
  font-weight: 500;
  transition: all 0.3s;
  align-self: flex-end;
  margin-top: 10px;
  border-radius: 4px;
}

.contact-form .btn-primary:hover {
  background: #0454a0;
  transform: translateY(-2px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #eef7ff;
  color: #0563bb;
  border-radius: 50%;
  font-size: 18px;
  margin: 0 5px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #0563bb;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Main Content Wrapper
--------------------------------------------------------------*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main > *:not(footer) {
  flex: 0 0 auto;
}

/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
#products {
  padding-left: 150px; /* Match the floating nav width */
  width: calc(100% - 150px); /* Adjust width to account for the padding */
  margin-left: auto; /* Push to the right */
}

@media (max-width: 992px) {
  #products {
    padding-left: 0; /* Remove fixed padding */
    width: 100%; /* Take full width */
    margin-left: 0; /* Remove margin */
  }

  #products .row {
    justify-content: center;
    padding: 0 15px;
  }
}

#products .row {
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 30px;
  width: 100%;
}

#products .solution-item {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  #products .solution-item {
    flex: 0 0 100%; /* Full width for solution items on small screens */
    max-width: 100%;
    padding: 0 15px;
  }
}

/*--------------------------------------------------------------
# Apply Now Form
--------------------------------------------------------------*/
#applyModal .modal-content {
  font-family: 'Open Sans', sans-serif;
  color: #2c3e50;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

#applyModal .modal-header {
  background-color: #0563bb;
  color: white;
  border-bottom: none;
  padding: 1.5rem;
}

#applyModal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 1;
}

#applyModal .modal-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}

#applyModal .modal-dialog {
  max-width: 800px;
  margin: 1rem auto;
  max-height: none;
  overflow-y: visible;
}

#applyModal .modal-body {
  padding: 1rem;
  max-height: none;
  overflow-y: visible;
}

#applyModal .form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

#applyModal .form-control,
#applyModal .form-select {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  height: auto;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#applyModal .form-control:focus,
#applyModal .form-select:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(5, 99, 187, 0.25);
}

#applyModal .btn-primary {
  background-color: #0563bb;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

#applyModal .btn-primary:hover {
  background-color: #0456a4;
  transform: translateY(-2px);
}

#applyModal .required-star {
  color: #dc3545;
  margin-left: 2px;
}

#applyModal .lead {
  color: #2c3e50;
  margin: 0.3rem 0 1rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

#applyModal .g-recaptcha {
  margin: 0.2rem 0 0.1rem 0;
  transform: scale(0.9);
  transform-origin: left top;
}

#applyModal .btn-primary {
  margin-top: 0.3rem !important;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 100px 0 40px 150px; /* Added left padding to match the floating nav width */
  min-height: auto;
  background-color: #ffffff;
  width: calc(100% - 150px); /* Adjust width to account for the padding */
  margin-left: auto; /* Push to the right */
}

@media (max-width: 992px) {
  #contact {
    padding-left: 0; /* Remove fixed padding */
    width: 100%; /* Take full width */
    margin-left: 0; /* Remove margin */
    padding-bottom: 60px; /* Add padding for the bottom nav bar */
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  padding: 80px 0;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#about .row {
  margin: 0 auto 0 10%;  /* Shift entire row to the right */
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  padding: 0 20px;
  width: 90%;  /* Slightly reduced to accommodate the right shift */
  box-sizing: border-box;
}

@media (max-width: 992px) {
  #about .row {
    margin: 0 auto; /* Center the row */
    flex-wrap: wrap; /* Allow items to wrap */
    width: 100%;  /* Take full width */
    padding: 0 15px; /* Adjust padding */
  }
}

.about-item {
  flex: 0 0 26%;  /* Fixed width for each card */
  min-width: 0;
  margin: 0 5px;
  box-sizing: border-box;
  padding: 0 5px;
}

@media (max-width: 992px) {
  .about-item {
    flex: 0 0 100%; /* Full width for about items on small screens */
    max-width: 100%;
    margin: 0 0 20px 0; /* Adjust margin */
    padding: 0 15px; /* Add some padding */
  }
}

/* Remove any special styling from the last card */
.about-item:last-child {
  padding-right: 5px;
}

@media (min-width: 1200px) {
  #about .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  #about .container {
    max-width: 1320px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  text-align: center;
  color: #6c757d;
  padding: 25px 0;
  margin-top: auto;
  border-top: 1px solid #e9ecef;
  width: 100%;
  position: relative;
  left: 0;
  right: 0;
  z-index: 100;
}

#footer .container {
  max-width: 800px; /* Reduced from default container width */
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer .social-links {
  margin: 0 auto 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e9ecef;
  color: #0563bb;
  border-radius: 50%;
  font-size: 18px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#footer .social-links a:hover {
  background: #0563bb;
  color: #fff;
  transform: translateY(-3px);
}

#footer .copyright {
  margin-bottom: 10px;
  color: #6c757d;
  font-size: 15px;
}

#footer .credits {
  font-size: 14px;
  color: #6c757d;
}


/*--------------------------------------------------------------
# Apply Now Floating Action Button
--------------------------------------------------------------*/
.apply-now-fab {
  position: fixed;
  right: 30px;
  bottom: 45px; /* Position above the back-to-top button */
  z-index: 9998;
  background: #0563bb;
  color: #fff;
  width: 120px; /* Wider to fit text */
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  opacity: 0.1;
}

.apply-now-fab:hover {
  background: #0678e3;
  color: #fff;
}

.apply-now-fab:hover {
  background: #0678e3;
  color: #fff;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}
.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}
.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #f2f3f5;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #d7dce1;
  border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #d7dce1;
  border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #45505b;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap:hover .portfolio-links a:hover {
  color: #148af9;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

@media (max-width: 991px) {
  #contact .contact-info {
    align-items: flex-start !important;
  }
}