@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=LXGW+WenKai+TC&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&display=swap');

/*hex blue: #2b3287*/
/*hex orange: #ff6233*/

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 120vh;
  display: flex;
  flex-direction: column; 
  overflow-y: scroll;
  background-color: rgba(254, 255, 255, 0.2);
  position: relative; /* Needed for the pseudo-element */
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c1c1c1 url('images/My first design.png') center/cover no-repeat;
  border-radius: 20px;
  z-index: -1; /* Ensure it stays behind other content */
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden; /* Ensure overflow is hidden to contain the scroll progress */
  height: 95px; /* Adjust based on your navbar height */
}

.nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
  position: relative; /* Needed for the hover effect */
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
}

.nav-links a:hover {
  color: #ff6033; /* Change to your desired hover color */
}

/* Add a hover effect under the text */
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #2b3287; /* Change to your desired hover color */
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px; /* Adjust the height of the progress bar */
  background: #2b3287; /* Change to your desired color */
  width: 0;
  transition: width 0.3s ease-out; /* Smooth transition for the width */
  z-index: 1000; /* Ensure it stays above other elements */
}

/* Logo styles */
.logo {
  width: 200px;
  height: auto;
}
.home{
  border-radius: 20px;
}
.hometext {
  position: relative; 
  text-align: left;
  margin-top: 340px; 
  margin-left:40px;
  
}

.hometext h1 {
  color: #ff6033;
  font-size: 72px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
  line-height: 1;
}

.hometext h3 {
  color:#ffffff;
  font-size: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.aboutus {
  margin-top: 430px;
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ff6033;
  border-radius: 20px;
  position: relative; /* Added to position the vertical text */
}
.aboutus h1{
  font-size: 5em;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}
.vertical-text {
  position: absolute;
  left: 40px; /* Adjust based on your design */
  top: 80%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left top;
  font-size: 67px;
  letter-spacing: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  color: white /* Adjust based on your design */
}

@media (max-width: 768px) {
  .about-item {
      flex-direction: column;
  }
  .about-item.reverse {
      flex-direction: column;
  }
  .vertical-text {
      display: none;
  }
}

.about-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
}

.about-item .about-text {
  flex: 1;
  padding: 20px;
}

.about-item .about-image {
  flex: 1;
  padding: 20px;
}
.heading h1{
  align-items: center;
}

.about-item .about-image img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.about-item.reverse {
  flex-direction: row-reverse;
}
.about-text h1 {

  text-align: center;
  margin-bottom: 20px;
  font-size: 4em;
  margin-left: 200px;
  color: #333;

}
.about-text h2 {

  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 3em;
  color: #2b3287;
  font-weight: 500;
  font-style: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-text p {
  font-size: 1.2em;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.services-section {
    width: 100%;
    background-color: #2b3287;
    position: relative;
    margin-top: 70px;
    padding: 20px;
    border-radius: 30px;
}
.service-heading {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Ensure heading is above the background image */
  color: #ffffff;
  text-align: center;
  width: 100%; /* Ensure full width of parent */
}

.service-heading h1 {
  font-size: 4em;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white; /* Adjust font weight as needed */
}
.fixed-image {
  position: fixed;
  left: 20px; /* Adjust as needed for horizontal position */
  bottom: 20px; /* Adjust as needed for vertical position */
  z-index: 1000; /* Ensure it's above other content */
}

.fixed-image img {
  width: 70px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}
.serviceImg {
    width: 100%;
    height: 50%; 
    object-fit: cover;
    display: block; 
    background-repeat: no-repeat;
    opacity: 0.2;
}
.fixed-image {
  position: fixed;
  left: 20px; /* Adjust as needed for horizontal position */
  bottom: 20px; /* Adjust as needed for vertical position */
  z-index: 1000; /* Ensure it's above other content */
}

.fixed-image img {
  width: 60px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}
.container-row {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 90%;
    height: 60%; 
    position: absolute;
    top: 20%;
    gap: 10px; 
    margin-left:40px;
}

.white-container {
  position: relative;
  width: 100%; /* Set the width to 100% */
  max-width: 400px; /* Adjust maximum width as needed */
  height: auto; /* Let the height adjust based on content */
  margin: 0 auto; /* Center align horizontally */
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box; /* Ensure padding and border are included in width */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow for better visual separation */
}

@media (max-width: 768px) {
  .white-container {
    margin-bottom: 20px; /* Add some bottom margin to separate boxes vertically on smaller screens */
  }
}

.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none; /* Ensure clicks pass through */
}

.icon {
  display: block;
  width: 100%;
  height: auto;
}
.icon2 {
  display: block;
  width: 100%;
  height: auto;
}
.icon3{
  display: block;
  width: 100%;
  height: auto;
}
.text-content {
  padding: 10px;
  text-align: center;
  background-color: #fff;
}

h3 {
  margin-top: 0;
  font-size: 1.5em;
}

.know-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #2b3287;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.know-more:hover {
  background-color: #ff6033;
  color: #fff;
}

.text-content {
  padding: 10px;
  text-align: center;
  background-color: #fff;
}

h3 {
  margin-top: 0;
  font-size: 1.5em;
}

.know-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #2b3287;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}





.contact-us-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.contact-heading {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  font-family: "Satisfy", cursive;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: 0.2cm;
}

.contact-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.contact-image {
  width: 50%;
  height:50%;
  margin-top:200px;
  object-fit: cover;
}

.contact-form {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  background-color: #0056b3;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.contact-form label {
  margin-bottom: 5px;
  font-size: 20px;
  color: #ff6033;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.contact-form button {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
.footer-distributed{
  background: #2b3287;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}
.footer-quick-links ul {
  list-style: none;
  padding: 0;
}

.footer-quick-links ul li {
  line-height: 1.8;
}

.footer-quick-links ul li a {
  text-decoration: none;
  color:white;
  font-weight:norm;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
  width: 40%;
}

/* The company logo */

.footer-distributed h3{
  color:  #ffffff;
  margin-left: 70px;
  margin-bottom: 10px;

}
.footer-about h2{
  font-size: 24px; /* Font size for the heading */
  color: #343a40; /* Darker color for the heading */
  margin-bottom: 10px; /* Space below the heading */
  font-weight: bold; /* Bold font for the heading */
}

.footer-about p {
  font-size: 14px;
  color: rgb(248 248 248);
  margin-left: 70px;
  font-weight: 300;

  
}
.footer-distributed h3 span{
  color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
  color:  #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}

.footer-distributed .footer-company-name{
  color:  #ffffff;
  font-size: 10px;
  font-weight: normal;
  margin: 0;
}

.shidertech{
    text-decoration: none;
    color: #ff6033;
    font-weight: 700;
}

/* Footer Center */

.footer-distributed .footer-center{
  width: 35%;
}

.footer-distributed .footer-center i{
  background-color:  #787c7e78;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  lightseagreen;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
  width: 20%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  white;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons{
  margin-top: 25px;
}

.footer-distributed .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

  .footer-distributed{
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i{
    margin-left: 0;
  }

}
.footerlogo {
  width: 260px;
  box-shadow: 0px 0px 10px 2px white;
  height: auto;
  margin-left: 70px;
  margin-bottom:40px
}
/*new*/
.footer-line {
  border: 0; /* Remove default border */
  border-top: 2px solid #ccc; /* Add top border with color */
  width: 100%; /* Ensure full width */
  margin: 20px; /* Remove default margin */
}
.footer-company-name{
  align-items: center;
  justify-content: center;
  text-align: center;
 
}


@media (max-width: 880px) {
  .footer-company-name {
    font-size: 4px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .footer-company-name {
    font-size: 4px; /* Further adjust font size for very small screens */
  }
}
.testimonial-container {
  background-color: #ff6033;
  padding: 50px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin: 40px auto;
  width: 100%;
}

.testimonial-container h1 {
  color: white;
  font-size: 4em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  font-style: normal;
}

.flex-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* Make it horizontally scrollable */
  scroll-snap-type: x mandatory; /* Ensure snap to each testimonial */
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
}

.flex-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for better appearance */
}

.flex-container:hover {
  animation-play-state: paused; /* Pause on hover */
}

.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 35px 10px 10px;
  max-width: 400px;
  min-width: 250px;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #ad422c;
  flex: 0 0 auto; /* Prevent shrinking */
  scroll-snap-align: start; /* Snap each testimonial to the start */
}

.snip1533 *,
.snip1533 *:before {
  box-sizing: border-box;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
  position: relative;
}

.snip1533 figcaption:before {
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #ff6033;
  content: "\f10e";
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}

.snip1533 h3 {
  color: #2b3287;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  font-weight: 800;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  color: #2b3287;
}

.snip1533 blockquote {
  font-weight: 300;
  margin: 0 0 20px;
  color: #2b3287;
}

/*responsive */
/* Add transition to nav links */
.nav-links li a {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6033; /* Change to your desired hover color */
  background-color: #ecf0f1; /* Change to your desired hover background color */
}

/* Add transition to images in about section */
.about-image img {
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.1); /* Scale up the image on hover */
}

/* Add transition to white containers in services section */
.white-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.white-container:hover {
  transform: translateY(-10px); /* Move the container up on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

/* Add transition to footer icons */
.footer-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
  color: #ff6033; /* Change to your desired hover color */
  transform: scale(1.2); /* Scale up the icon on hover */
}
/* Existing CSS content */

/* Custom styles for AOS animations if needed */
[data-aos="fade-up"] {
  transition: opacity 0.6s ease-in, transform 0.6s ease-out;
}


@media (max-width: 1300px) {
  .vertical-text {
    display: none; /* Hide the vertical text for screens less than 1440px wide */
  }
}

