
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}
body{
  overflow-x: hidden;
}
.navbar {
  background-color: rgba(255, 255, 255, 0.95); /* White with 95% opacity */
  transition: background-color 0.3s ease-in-out; /* Smooth transition */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure it's above other content */
  padding: 20px 0; /* Increased top and bottom padding */
 
}

.navbar.scrolled {
  background-color: #ffffff; /* Solid white background on scroll */
}
.navbar-brand img {
  max-height: 70px; 
  margin-left: 50px;/* Increased logo height */
}

.navbar-nav {
  margin-left: auto; /* Push the items to the right */
}

.navbar-nav .nav-item {
  margin-left: 15px; /* Adjusted spacing between items */
}

.navbar-nav .nav-link {
  margin-right: 10px;
  padding: 10px 15px; /* Adjusted padding */
  transition: color 0.3s ease-in-out; /* Smooth transition for text color */
  color: #10375C;
}

.navbar-nav .nav-link:hover {
  color: #FF7B00; /* Hover text color */
}
.btn-contact {
  padding: 10px 20px;
  background-color: #FF7B00;
  color: #ffffff;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: #ffffff; /* White background on hover */
  color: #FF7B00; /* Text color on hover */
  border: 1px solid #FF7B00; /* Border color on hover */
}

.navbar-nav .nav-item:last-child {
  margin-right: 40px; /* Remove margin from the last item (Contact Us button) */
}

.navbar-nav .nav-item:nth-last-child(2) {
  margin-right: 15px; /* Adjust the margin before the Contact Us button */
}
/* Reset dropdown styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 0;
  margin: 0;
}


.hero-section {
  margin-top: 70px;
  position: relative;
  text-align: center;
  padding: 100px 0; /* Adjusted padding */
  background: #fff;
}

.hero-heading {
  font-size: 2.5rem;
  margin-bottom:15px ;
  color: #ff7f27;

}

.hero-subheading {
  font-size: 1.5rem;
  color: #537FE7;
  margin-bottom: 40px;
}

.section {
  width: 100vw;
  overflow:hidden;
  position: relative;
  --v-offset: 60px;
  --curve-height: 120px;
}

.section:before,
.section:after {
  content: "";
  display: block;
  background: white;
  width: calc(100vw + 2 * var(--v-offset));
  height: var(--curve-height);
  position: absolute;
  border-radius: 50%;
  left: calc(-1 * var(--v-offset));
  right: calc(-1 * var(--v-offset));
  
}

.section:before {
  top: calc(-0.69 * var(--curve-height));
  right: auto;
  left: calc(-1 * var(--v-offset)); /* Adjust left position */
  border: 1px solid #4681F4; /* Border color */
  border-top: none; /* Remove border on top */
  z-index:10;
}
.section:after {
  left: auto;
  bottom: calc(-0.69 * var(--curve-height));
  right: calc(-1 * var(--v-offset)); /* Adjust right position */
  border: 1px solid #4681F4; /* Border color */
  border-bottom: none; /* Remove border on bottom */
}

.wrapper {
  display: flex;
  width: max-content;
  grid-template-rows: 300px;
  grid-auto-flow: column;
  grid-gap: 24px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  animation: scrollLeft 30s linear infinite;
  position: relative;
  gap: 10px;
}

.wrapper img {
  scroll-snap-align: center;
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: inline-block;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px*16));
  }
}

/* Hide scrollbar */
.wrapper::-webkit-scrollbar {
  display: none;
}
.wrapper {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.bg-blue{
  background-color: #103756;
}
.custom-button {
  border: 2px solid #ffffff; /* Border color */
  color: #ffffff; /* Text color */
  border-radius: 25px; /* Border radius */
  font-size: 16px; /* Font size */
  padding: 10px 20px; /* Padding */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  text-align: center; /* Center text */
  font-weight:400; /* Bold text */
  display: inline-block; /* Display as inline-block */
  margin-right: 100px;
}

.custom-button:hover {
  background-color: #FF7B00; /* Background color on hover */
  color: #FFF; /* Text color on hover */
}
.custom-button2 {background-color: #FF7B00;
  color: #ffffff; /* Text color */
  border-radius: 8px; /* Border radius */
  font-size: 16px; /* Font size */
  padding: 10px 20px; /* Padding */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  text-align: center; /* Center text */
  font-weight:400; /* Bold text */
  display: inline-flex; /* Display as inline-flex */
  align-items: center;
  margin-right: 100px;
  margin-top: 15px;
}

.custom-button2:hover {
  border: 2px solid #ffffff; /* Border color */
  color: #FFF; /* Text color on hover */
}
.custom-button2 i {
  margin-left: 8px; /* Adjust the spacing here */
  font-size: 1.2em; /* Adjust the size here */
}

.image-boxes-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.box {
  position: relative;
  overflow: hidden;

}

.box img {
  width: 100%;
  height: auto;
}

.box-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: #fff;
}

.box-heading {
  font-size: 1.5em;
}

.box-paragraph {
  font-size: 1em;
}
/* Base styling */
.portfolio-section {
  background-color: rgba(16, 55, 92, 0.3);
  padding: 50px 0;
  text-align: center;
}

.portfolio-heading {
  font-size: 2.5rem;
  color: #103756;
  margin-bottom: 30px;
}

/* Container for the screens */
.screens-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px; /* Adjust the overall container height as needed */
 margin: 0 auto;
  overflow: hidden;
}

/* Middle screen styling */
.middle-screen {
  width: 40%; /* Adjust the width as needed */
  height: 100%; /* Adjust the height as needed */
  z-index: 3;
  position: absolute; /* Absolute positioning for centering */
  top: 0%; /* Center vertically */
  left: 30%;
  background: #fff;
  border: 4px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Ensure the middle screen is centered */
.middle-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Behind screens styling */
.left-screen-behind,
.right-screen-behind {
  width: 30%; /* Width of the behind screens */
  height: 70%; /* Height of the behind screens */
  position: absolute;
  top: 15%; /* Center vertically behind the main screen */
  background: #f8f9fa;
  border: 4px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1; /* Ensure behind the side screens */
}

.left-screen-behind {
  left: 10%;  /* Position further behind the left screen */
  transform: translateX(50%); /* Adjust to ensure less than half is visible */
}

.right-screen-behind {
  right: 10%; /* Position further behind the right screen */
  transform: translateX(-50%); /* Adjust to ensure less than half is visible */
}

/* Main left and right screens styling */
.left-screen,
.right-screen {
  width: 35%; /* Width of the side screens */
  height: 80%; /* Height of the side screens */
  position: absolute;
  top: 10%; /* Adjust top position to center vertically */
  background: #f8f9fa;
  border: 4px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 2; /* Ensure in front of behind screens */
}

.left-screen {
  left: 15%; /* Position left screen */
}

.right-screen {
  right: 15%; /* Position right screen */
}

/* Ensure images cover the screens */
.side-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows styling */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 4;
  margin-left: 40px;
  margin-right: 60px;
}

.arrow-left {
  left: 30px;
}

.arrow-right {
  right: 40px;
}
.portfolio-subheading {
  font-size: 1.5rem;
  color: #103756;
  margin-top: 25px;
}

.learn-more {
  background-color: #ffffff;
  color: #FF7B00;
  border: 2px solid #ff7b00;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 25px;
  margin-top: 20px;
}
.learn-more:hover {
  background-color: #ff7b00;
  color: #ffffff;
  border: 2px solid #ffffff;

}

.content-box {
  width: 300px; /* Set a width for each box */
  height: 550px; /* Set height for uniformity */
  border-radius: 25px;
  border: 2px solid #ddd;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: none; /* Hide all boxes initially */
  
}

.content-box.active {
  display: block; /* Show only active boxes */
}
.d-flex{
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-right: 0px; /* Adjusts space from the right screen edge */
}

.content-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  
}

.content-box:hover img {
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 24px;
  color: #000;
  z-index: 10;
}

.arrow.right {
  right: 20px;
}
/* Add this CSS to style the button */
button.btn-outline-primary {
  color: #10375C; /* Initial button color */
  border-color: #10375C; /* Initial border color */
  transition: background-color 0.3s ease, border-color 0.3s ease;

}

button.btn-outline-primary:hover {
  background-color: #FF7B00; /* Button color on hover */
  border-color: #FF7B00; /* Border color on hover */
  color: #fff;
}
/* Icon Styling */
.icon-wrapper {
  display: inline-block;
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  border: 2px solid #10375C; /* Circle border color */
  border-radius: 50%; /* Make it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Space between icon and heading */
}

.icon-wrapper i {
  font-size: 32px; /* Icon size */
  color: #10375C; /* Icon color */
}

/* Space between elements */
#section-heading {
  margin-bottom: 10px; /* Space between heading and paragraph */
}

#section-paragraph {
  margin-bottom: 20px; /* Space between paragraph and button */
}

/* Arrow button styling */
.arrow {
  position: absolute;
    top: 50%;
    right: 10px; /* Adjust this value to position the arrow where you want */
    transform: translateY(-50%);
    width: 40px; /* Circle size */
    height: 40px; /* Circle size */
    border: 2px solid #FF7B00; /* Circle border color */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Circle background */
    color: #FF7B00; /* Arrow icon color */
    font-size: 18px; /* Arrow size */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 1; /* Ensure it is above other elements */
}

.arrow:hover {
  background-color: #fcb26c; /* Light orange background on hover */
  color: white;
  border: 2px solid #ffffff;
}
.content-container {
  display: flex;
  justify-content: flex-end; /* Align items horizontally, pushing them right with margin */
  align-items: flex-start;
  gap: 15px; /* Space between the boxes */
}
.container-service {
  overflow: hidden;
  margin-right: 20px;
  margin-left: 70px;
  margin-bottom: 80px;
}
.content-details {
  position: absolute;
  bottom: 0; /* Align to the bottom of the content box */
  left: 0; /* Align to the left of the content box */
  width: 100%;
  padding: 15px;
  margin-bottom: 10;
  box-sizing: border-box; /* Include padding in width calculation */
  margin-bottom: 15px;
}

.subheading {
  margin: 0;
  overflow: hidden;
  color: #ffffff; /* Adjust color as needed */
}

.heading {
  margin: 5px 0; /* Space between subheading and heading */
  color: #ffffff; /* Adjust color as needed */
  padding-bottom: 20px;
}

.btn-learn-more {
  background-color: transparent; /* Initial button background color */
  border: 2px solid #ffffff; /* Button border color */
  color: #ffffff; /* Initial button text color */
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #ffffff; /* Background color on hover */
  color: #000000; /* Text color on hover */
  border-color: #ffffff; /* Border color on hover */
}

.blog-box {
  width: 360px;
  height: 550px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-top: 40px;
  margin-bottom: 20px;
  color: white;
}
.blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(16, 55, 86, 0.8), rgba(16, 55, 86, 0)); /* Adjust the RGBA for desired visibility */
  backdrop-filter: blur(5px);
}
.blog-heading {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.blog-text {
  font-size: 1rem;
  margin-bottom: 10px;
}
.blog-button1{
  background-color: #ffffff;
  color: #FF7B00; /* Text color */
  border-radius: 8px; /* Border radius */
  font-size: 16px; /* Font size */
  padding: 10px 20px; /* Padding */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  text-align: center; /* Center text */
  font-weight:400; /* Bold text */
  display: inline-flex; /* Display as inline-flex */
  align-items: center;
  margin-top: 15px;
  border: 2px solid #ff7b00;

}

.blog-button1:hover {
  border: 2px solid #ff7b00; /* Border color */
  background-color: #ff7b00;
  color: #FFF; /* Text color on hover */
}
.blog-button1 i {
  margin-left: 8px; /* Adjust the spacing here */
  font-size: 1.2em; /* Adjust the size here */
}
.full-width-container {
  width: 100%;
  height: 550px;
  background-image: url('/images/Testimonial\ .png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.content {
  color: #103756; /* Text color */
  text-align: left;
}

h2 {
  font-size: 24px; /* Medium size font */
  margin: 0;
  padding-bottom: 20px; /* Space between text and arrows */
}
.navigation-arrows {
  display: flex;
  gap: 20px; /* Space between arrows */
}

.left-arrow {
  font-size: 30px; /* Larger size for visibility */
  color: black; /* Black color for left arrow */
  cursor: pointer; /* Pointer cursor on hover */
  transition: color 0.3s ease; /* Smooth color transition */
}

.right-arrow {
  font-size: 30px; /* Larger size for visibility */
  color: black; /* Black color for right arrow */
  cursor: pointer; /* Pointer cursor on hover */
  transition: color 0.3s ease; /* Smooth color transition */
}

.left-arrow:hover,
.right-arrow:hover {
  opacity: 0.7; /* Slight opacity change on hover for effect */
}

/*Testimonial*/
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.testimonials {
  margin: 7em auto;
  width: 1100px;
  max-width: 90%;

  .block {
      display: block;
      margin: 0;
      width: 100%;
      height: auto;
      float: none;

      @media only screen and (min-width: 650px) {
          float: left;
          width: 50%;
          height: 300px;
      }

      @media only screen and (min-width: 1000px) {
          width: 33.33%;
          height: 280px;
      }

      &:nth-child(n+2) {
          padding: 1.5em;
      }

      &:nth-child(2),
      &:nth-child(4) {
          background-color: #103756;
      }

      &:nth-child(3),
      &:nth-child(5) {
          background-color:  rgba(16, 55, 92, 0.3);
      }

      &:nth-child(6) {
          background-color: #ff7b00;
      }

      p {
          margin: 0;
          font-size: 16px;
          line-height: 28px;
          font-weight: 300;
          color: #fff;
      }

      cite span {
          display: block;
          margin-top: 2em;
          font-size: 14px;
          font-weight: 600;
          font-style: normal;
          color: #fff;
      }
  }

  h2 {
      margin: 0 0 0.5em;
      font-size: 14px;
      line-height: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: #444;
  }

  h5 {
      margin-top: 0;
      font-size: 40px;
      line-height: 50px;
      font-weight: 300;
      color: #103756;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) { /* Medium screens (tablets) */
  .container-fluid {
    padding: 30px 0;
    margin-bottom: 70px;
  }

  .row {
    min-height: auto; /* Remove fixed min-height for smaller screens */
  }

  .col-md-6 {
    text-align: center; /* Center text for smaller screens */
  }

  .text-right {
    text-align: center !important; /* Override text alignment for smaller screens */
  }

  .img-fluid {
    width: 80%; /* Adjust image width for smaller screens */
    margin-left: 0; /* Remove left margin for smaller screens */
  }

  h2 {
    font-size: 36px; /* Reduce font size for heading */
    margin-right: 0; /* Remove right margin for heading */
  }

  p {
    font-size: 15px; /* Reduce font size for paragraph */
    margin-right: 0; /* Remove right margin for paragraph */
  }

  .btn.custom-button {
    margin-right: 0; /* Remove right margin for button */
  }
}

@media (max-width: 576px) { /* Small screens (phones) */
  .container-fluid {
    padding: 20px 0;
    margin-bottom: 50px;
  }

  .row {
    text-align: center; /* Center all text and content within the row */
  }

  .img-fluid {
    width: 100%; /* Full-width image on very small screens */
    margin-left: 0; /* Remove left margin */
  }

  h2 {
    font-size: 28px; /* Further reduce font size for heading */
    margin-right: 0; /* Remove right margin */
    margin-bottom: 20px; /* Ensure some spacing below heading */
  }

  p {
    font-size: 14px; /* Further reduce font size for paragraph */
    margin-left: auto; /* Center paragraph horizontally */
    margin-right: auto; /* Center paragraph horizontally */
  }

  .btn.custom-button {
    display: inline-block; /* Ensure button is inline for proper spacing */
    margin: 20px auto; /* Center button horizontally and add spacing */
  }
}
/*footer*/
.footer {
  background-color: #10375C;
  color: #fff;
  padding: 40px 0;
}
.footer .divider {
  border-top: 1px solid #a8a8a8;
  margin: 40px 0;
}
.footer .contact-form input,
.footer .contact-form textarea {
  margin-bottom: 10px;
  border-radius: 5px;
}
.footer .contact-form button {
  background-color: #ff7b00;
  border: none;
  border-radius: 5px;
}

.footer .contact-form button:hover {
  background-color: white;
  border: none;
  border-radius: 5px;
  color: #ff7b00;
}
.footer .address i {
  color: #ff7b00;
  margin-right: 10px;
  font-size: 24px;
}
.footer .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  color: #fff;
}
.footer .bottom-footer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}
.footer .row-first .col-md-8,
.footer .row-first .col-md-4 {
    margin-bottom: 20px;
}
.footer .row-first .col-md-4 img {
    max-width: 100%;
}
.footer .row-first .form-group.col-md-8,
.footer .row-first .form-group.col-md-4 {
    padding-right: 5px;
    padding-left: 5px;
}
.footer .row-first .contact-form {
    margin-bottom: 20px;
}
.btn-outline-primary1{
  background-color: white;
  color: #10375C;
  border: 1px solid #10375C;
}
.btn-outline-primary1:hover{
  background-color: #ff7b00;
  color: #ffffff;
  border: 1px solid #ff7b00;
}
li a{
  text-decoration: none;
  color: #a8a8a8;
}
li a:hover{
  
  color: #FF7B00;
}