/*--------------------------------------------------------------
# Global Navbar
--------------------------------------------------------------*/

/* Top Bar Styles */
.top-bar {
  background: linear-gradient(90deg, #190879, #3a0ca3); /* Gradient Background */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  /* border-bottom: 2px solid #FF5E14; */
}

/* Left Text Colors */
.text-primary {
  color: #190879; /* Primary Blue */
}

.text-highlight {
  color: #FF5E14; /* Highlight Orange */
}

.top-bar .left-text {
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
}

/* Contact Info */
.contact-info span {
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease-in-out;
}

.contact-info span:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Social Icons */
.social-icons .btn {
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.social-icons .btn:hover {
  background-color: #ffffff;
  color: #FF5E14;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info span {
    font-size: 0.9rem;
  }

  .social-icons .btn {
    width: 2rem;
    height: 2rem;
  }

  .d-flex.gap-4 {
    gap: 1.5rem;
  }
}


/* Center Navbar Container */
.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #f8f9fa;  */
  padding: 10px 0;
  /* border-bottom: 2px solid rgba(0, 0, 0, 0.1);  */
}

/* Navbar Styling */
.custom-navbar {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  border-bottom: 4px solid #FF5E14; /* Accent color border */
  padding: 12px 22px;
}

.custom-navbar .navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #333333; /* Neutral color for brand */
  transition: color 0.3s ease;
}

.custom-navbar .navbar-brand:hover {
  color: #FF5E14; /* Highlight on hover */
}

.custom-navbar .navbar-brand .logo {
  height: 60px; /* Slightly larger logo */
  margin-right: 15px;
  border-radius: 8px; /* Rounded edges for a modern look */
}

.custom-navbar .navbar-brand .brand-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.8rem;
  font-weight: bold;
}

/* Navbar Links */
.custom-navbar .nav-link {
  font-size: 1.2rem;
  color: #030101; /* Default dark color */
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 5px; /* Subtle rounding for better design */
}

.custom-navbar .nav-link:hover {
  color: #ffffff; /* White text on hover */
  background-color: #FF5E14; /* Green hover background */
}

.custom-navbar .nav-link.active {
  color: #ffffff; /* White text for active links */
  background-color: #d4e5f7; /* Deep blue active background */
  /* width: 50%; */
}

/* Navbar Toggler */
.custom-navbar .navbar-toggler {
  border: 1px solid #FF5E14; /* Match accent color */
  border-radius: 4px;
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF5E14' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000000' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-navbar .navbar-brand {
    font-size: 1.5rem;
  }
  
  .custom-navbar .nav-link {
    font-size: 1rem;
  }
}



/* Carousel Image Styling */
.carousel-item img {
  height: 600px;
  object-fit: cover;
  width: 100%; /* Ensures the image spans the full width of the carousel */

}

/* Section Line Below Carousel */
.small-line {
  height: 4px;
  background-color: #FF5E14; /* Blue with low opacity */
  margin-bottom: 15px;
}

/* Text Carousel Styling */



.carousel-overlay {
  background: rgba(0, 0, 0, 0.5); 
  color: white; 
  /* padding: 10px;  */
  position: absolute; 
  text-align: center; 
  font-size: 2px; 
}

.carousel-inner img {
  object-fit: cover; /* Ensure image scales without distortion */
  height: 500px; /* Fixed height for images */
  width: 100%; /* Full width to match the container */
}


/* Highlight Section Wrapper */
.highlight-section-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

/* Highlight Section Styling */
.highlight-section {
  display: none; /* Hide all highlights initially */
  flex-direction: row; /* Arrange title and paragraph in a row */
  align-items: stretch; /* Ensure title and content align properly */
  border-left: 10px solid #190879;
  box-shadow: 0px 4px 6px #FF5E14;
  background-color: #f9f9f9;
  /* border-radius: 8px; */
  overflow: hidden; /* Clip overflow for clean design */
  transition: opacity 0.5s ease;
}

.highlight-section.active {
  display: flex; /* Display the active section */
}

/* Highlight Title Wrapper */
.highlight-title-wrapper {
  flex: 1; /* Take a quarter of the total width */
  background-color: #FF5E14;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 1.3rem;
  color: white;
  font-weight: bold;
}

.highlight-title {
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
}

/* Highlight Content */
.highlight-content {
  flex: 3; /* Take the remaining space */
  background-color: #190879;
  color: white;
  display: flex;
  align-items: center;
  padding: 5px;
}

.highlight-content p {
  margin: 0;
  margin-left: 24px;
  font-size: 1.3rem;
  line-height: 1.5;
}


/*--------------------------------------------------------------
# Hero Section Styling
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
/* Products Section */
.nav-tabs {
  background-color: #fff;
  border-radius: 50px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: #333; /* Default text color */
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.nav-link.active {
  background-color: #0056b3;
  color: #1d0808 !important; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
  transform: scale(1.05);
  background-color: #FF6600;
  color: #fff !important; 
}

.nav-link.active:hover {
  background-color: #0056b3; 
  color: #fff !important; 
}

.features .tab-pane {
  padding: 20px;
  /* background: #f8f9fa; */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-pane h3 {
  color: #333;
  font-weight: 700;
  font-size: 28px;
}

.tab-pane ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.tab-pane ul i {
  color: #0056b3;
  margin-right: 10px;
}


/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/
.custom-cards-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-cards-section .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.custom-cards-section .card-title {
  font-weight: 600;
  text-transform: uppercase;
}

.custom-cards-section img {
  height: 200px;
  object-fit: cover;
}

.custom-cards-section .card-body {
  background-color: #fff;
  border-top: 3px solid #007bff;
  padding: 1.5rem;
}

.custom-cards-section .card-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}


/*--------------------------------------------------------------
# Custom Latest Works Section Styles
--------------------------------------------------------------*/
.custom-latest-works-section {
  overflow: hidden;
  position: relative;
}

.custom-latest-works-section h2 {
  font-weight: bold;
  color: #007bff;
}

.custom-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-slider {
  display: flex;
  animation: custom-slide-animation 30s linear infinite;
  gap: 20px;
}

.custom-slide {
  flex: 0 0 auto;
  width: 300px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.custom-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.custom-info-box {
  background-color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-info-box h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

.custom-info-box p {
  font-size: 0.9rem;
  color: #011b33;
  margin: 0;
}

.custom-slide:hover .custom-info-box {
  background-color: #a9cff8;
  color: white;
  transform: translateY(-5px);
}

@keyframes custom-slide-animation {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

/* Testimonials Section */
.testimonial-item {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.testimonial-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #0056b3;
}

.testimonial-item h3 {
  color: #333;
}

.testimonial-item h4 {
  font-size: 14px;
  color: #777;
}

.testimonial-item .stars i {
  margin-right: 2px;
}

.testimonial-item p {
  font-size: 16px;
  color: #555;
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# start footer Section
--------------------------------------------------------------*/


/* Footer Custom Styles */
#footer {
  background-color: #343a40; /* Dark Gray */
}

#footer h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

#footer p,
#footer a {
  font-size: 1rem;
}

#footer .btn-outline-light {
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
}

#footer .btn-outline-light:hover {
  background-color: #ffffff;
  color: #343a40;
}

#footer .btn-link {
  padding: 0;
  text-align: left;
  display: inline-block;
}

#footer .btn-link:hover {
  text-decoration: underline;
  color: #17a2b8; /* Bootstrap info color */
}

#footer .fas,
#footer .bi {
  font-size: 1.25rem;
  vertical-align: middle;
}

#footer #copyright-year {
  font-size: 0.9rem;
  color: #ffffff; 
}

@media (max-width: 768px) {
  #footer .row > div {
    margin-bottom: 1.5rem;
  }
}

/* Footer Background and Text */
#footer {
  /* background-color: #0056b3;  */
  /* #190879 */
  background-color: #190879;
}

#footer h3 {
  color: #ff9f2a; /* Orange for Section Titles */
}

#footer p,
#footer .btn-link {
  color: #ffffff; /* White Text for Content */
}

/* Footer Buttons Styling */
#footer .btn-link {
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

#footer .btn-link:hover {
  color: #EC8305; /* Orange Color on Hover */
}

/* Social Media Icons */
#footer .btn-outline-light {
  border-color: #f79723; /* Orange Border */
  color: #f79723; /* Orange Color */
  transition: background-color 0.3s ease, color 0.3s ease;
}

#footer .btn-outline-light:hover {
  background-color: #FF6600; /* Orange Background on Hover */
  color: #ffffff; /* White Color */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  #footer .col-lg-3 {
    text-align: center;
  }
  #footer .d-flex {
    justify-content: center;
  }
}


/* What we do cards stylings */

.custom-cards-section {
  background-color: #f8f9fa; /* Light background for the section */
  padding: 2rem 0;
}

.custom-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-card-header {
  background-color: #007bff; /* Primary color for the header */
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.75rem;
}

.custom-card-body {
  padding: 1rem;
  color: #6c757d; /* Muted text color */
  font-size: 0.9rem;
  line-height: 1.5;
}

.custom-card p {
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .custom-card {
    height: 100%;
  }
}

.read-more-btn {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #6610f2); /* Gradient for a modern look */
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px; /* Rounded button */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(45deg, #f79723, #007bff); /* Reverse gradient on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.05); /* Slightly enlarge */
}

.read-more-btn:active {
  transform: scale(0.95); /* Button press effect */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

#chat-options {
  position: fixed;
  bottom: 75px;
  left: 30px;
}
#chat-btn {
  position: fixed;
  bottom: 24px;
  left: 28px;
}
#chat-icon,
#chat-options a i,
#back-to-top a i {
  font-size: 24px;
}
@media (max-width: 576px) {
  #chat-icon,
  #chat-options a i,
  #back-to-top a i {
    font-size: 18px;
  }
}

  .hover-primary:hover {
      color: #00bcd4 !important;
      text-decoration: underline;
  }

  /* Hover Effect for Social Icons */
  .social-icon:hover {
      color: #00bcd4 !important;
  }

  /* Scroll Top Button Hover Effect */
  #scroll-top:hover {
      background-color: #6c757d !important;
  }


  #back-to-top {
    left: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    transition: 1s all ease;
  }
  
/*--------------------------------------------------------------
# FAQS
--------------------------------------------------------------*/
 
  .faq-item {
    margin-bottom: 1.5rem;
  }

  .faq-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
  }

  .faq-toggle i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
  }

  .faq-content {
    display: none;
    padding: 1rem 0;
    color: #555;
  }

  .faq-content-show {
    display: block;
  }

  /* END FAQS */


  .faq-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
  }
  
  .faq-item h3:hover {
    color: #0056b3;
  }
  
  .faq-item i {
    color: #0056b3;
    transition: transform 0.3s ease;
  }
  
  .faq-item .collapse {
    display: none;
  }
  
  .faq-item.open .collapse {
    display: block;
  }
  
  .faq-item.open i {
    transform: rotate(45deg);
  }
  


  /* General Section Styling */
.contact {
  background: linear-gradient(135deg, #f9f9f9, #eaeaea);
}

/* Info Box */
.info-box {
  border: 1px solid #ddd;
}
.info-item .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* Form Styling */
.contact-form input, 
.contact-form textarea {
  border: 1px solid #ddd;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.contact-form button {
  background: linear-gradient(135deg, #0056b3, #0056b3);
  color: white;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-form button:hover {
  background: linear-gradient(135deg, #0056b3, #0056b3);
}





/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
  position: absolute;
  padding: 12px;
  width: 130px;
  height: 130px;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .09);
  z-index: 2;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FFFFFF;
  transition: .5s;
}

.service-item:hover .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: rgba(2, 36, 91, .7);
  transition: .5s;
}

.service-item:hover .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #FFFFFF;
  transition: .5s;
}

.service-item:hover .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 130px;
  height: 50px;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #FFFFFF;
  border: none;
  box-shadow: 0 0 45px rgba(0, 0, 0, .09);
  z-index: 2;
}

.service-item .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}


/* services */


/* General Page Styles */
.page-header {
  text-align: center;
  padding: 2rem 1rem;
  color: #0056b3;
  background-color: #f9f9f9;
  margin-bottom: 2rem;
  border-bottom: 3px solid #FF6600;
}

.page-header h1 {
  /* font-size: 2.5rem; */
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #f9f9f9;
}

.page-header p {
  font-size: 1.2rem;
}

/* Card Styles */
.service-card {
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card .card-body {
  padding: 2rem 1.5rem;
}

.service-icon {
  font-size: 3rem;
  color: #FF6600;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0056b3;
}

.service-description {
  font-size: 1rem;
  color: #555;
}

/* Call-to-Action Section */
.cta-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #0056b3;
  color: white;
  margin-top: 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-section a {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #FF6600;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-section a:hover {
  background-color: #e65c00;
}
