* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
}

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

header img {
    width: 150px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #549ab8;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color:#779843;
}

/* Preloader */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #157697;
  border-top: 5px solid#779843;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animation for spinner */
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* General Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(164, 211, 232, 0.8);
  position: sticky; /* Sticky header */
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(80%);
}

/* Logo Styling */
.logo img {
  max-height: 50px;
  max-width: 200px;
  object-fit: contain;
  
}
.logo img:hover {
  transform: scale(1.2); /* This will scale the logo on hover, optional */
  transition: transform 0.3s ease;
}
/* Logo Styling */
.logo {
  margin-right: 10px; /* Add space between logo and nav */
}

/* Social Links Styling */
.socials-links {
  display: flex;
  gap: 15px; /* Space between icons */
}

.socials-links a {
  color: #157697; /* Default icon color */
  font-size: 24px; /* Icon size */
  transition: color 0.3s ease-in-out; /* Smooth transition on hover */
}

.socials-links a:hover {
  color:#779843; /* Hover color for social icons */
}
.btn-square, .btn-sm-square, .btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  width:38px;
  height: 38px;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  font-size: 1rem;
}
.rounded-circle {
  border-radius: 50% !important;
}

.bg-light {
  background-color:rgba(147, 200, 224, 0.8) !important;
}
.me-2 {
  margin-right: .5rem !important;
}

/* Navigation Links */
nav ul.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-left: 0px; /* Moves the nav closer to the logo */
}

nav ul.nav-links li {
  margin-right: 20px;
}

nav ul.nav-links li a {
  text-decoration: none;
  color: #157697; /* Default text color */
  font-weight: bold;
  padding: 10px 15px; /* Add padding around the text for hover effect */
  border-radius: 5px; /* Rounded corners for hover effect */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transitions */
}

nav ul.nav-links li a:hover {
  background-color: #779843; /* Green background on hover */
  color: #157697; /* Keep text color the same */
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #157697;
  margin: 4px;
}
nav ul.nav-links a.active {
  background-color: #779843; /* Highlight active section with your preferred color */
  font-weight: bold;
  color: #157697
}


/* Responsive Design */
@media (max-width: 768px) {
  nav ul.nav-links {
    display: none; /* Hide links on small screens */
  }

  .hamburger {
    display: flex;
  }

  nav ul.nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #A4D3E8;
    width: 100%;
    text-align: center;
  }

  nav ul.nav-links li {
    margin: 10px 0;
  }

  /* Social links visibility on small devices */
  .socials-links {
    position: absolute;
    top: 100px;
    left: 10px;
  }
}

/* Hero Section Styles */
.hero {
  background-position: center;
  width: 100vw;
  height: calc(100vh - 190px); /* Adjust height */
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  transition: background-image 1s ease-in-out; /* Smooth transition for image change */
}


/* Optional overlay for slightly transparent background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust transparency here */
  z-index: 0;
}

/* Container and content alignment */
.hero .container {
  position: relative;
  z-index: 1; /* Bring content above the background */
}

/* Dots navigation styles */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 25px;
  height: 25px;
  border: 2px solid #A4D3E8; /* Color of the dot outline */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}


.dot.active {
  background-color: rgb(164, 211, 232); /* Color of active dot */
  width: 80px; /* Active dot will be elongated */
  border-radius: 20px; /* For the elongated look */
}

.dot:hover {
  background-color: rgba(95, 170, 250, 0.5); /* Slight hover effect */
}
/* Media queries to ensure responsiveness */
@media screen and (max-width: 768px) {
  .hero {
    height: calc(100vh - 150px); /* Adjust height for smaller screens */
    background-position: center top; /* Adjust background position for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: calc(100vh - 120px); /* Further adjust height for very small screens */
    background-position: center; /* Center background for very small screens */
  }
}

/* Brief Intro Section Styles */
.intro {
  background-color: #ffffff; /* White background */
  padding: 50px 20px; /* Spacing around the content */
  text-align: center; /* Center-align text */
  color: #333; /* Dark text color for readability */
  border-top: 5px solid #A4D3E8; /* Accent color border */
}

.intro-content {
  max-width: 900px; /* Max width for better readability */
  margin: 0 auto; /* Center content */
}

.intro h2 {
  font-size: 2.5rem; /* Large font size for the heading */
  margin-bottom: 20px; /* Space below the heading */
}

.intro p {
  font-size: 1.1rem; /* Slightly larger font size for paragraphs */
  line-height: 1.6; /* Line height for readability */
  margin-bottom: 20px; /* Space below each paragraph */
}

.intro-items {
  display: flex; /* Flexbox layout for items */
  justify-content: center; /* Center items horizontally */
  gap: 20px; /* Space between items */
  flex-wrap: wrap; /* Wrap items on smaller screens */
}

.intro-item {
  background-color: #f8f8f8; /* Light background for each item */
  border-radius: 8px; /* Rounded corners */
  padding: 20px; /* Padding inside items */
  text-align: center; /* Center-align text inside items */
  width: 250px; /* Fixed width for items */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.intro-item i {
  color: #A4D3E8; /* Accent color for icons */
  margin-bottom: 10px; /* Space below icons */
}

.intro-item h3 {
  font-size: 1.5rem; /* Font size for headings */
  margin-bottom: 10px; /* Space below headings */
}

.intro-item p {
  font-size: 1rem; /* Font size for descriptions */
  color: #666; /* Slightly lighter text color for descriptions */
}

@media screen and (max-width: 768px) {
  .intro-items {
    flex-direction: column; /* Stack items vertically on small screens */
    gap: 10px; /* Reduced space between stacked items */
  }

  .intro-item {
    width: 90%; /* Nearly full width for items on small screens */
    max-width: 600px; /* Optional: max-width to avoid overly wide items */
    margin: 0 auto; /* Center items horizontally */
  }
}


/* Solutions Section */
.solutions-section {
  padding: 40px 120px;
  text-align: center;
  background-color: #f3f3f3;
}
.section-title {
  font-size: 2.5rem;
  color: #157697; /* Bold title color */
  margin-bottom: 10px;
}


.product-grid {
  display: flex;
  flex-direction: column; /* Stack products vertically */
  align-items: center; /* Center products horizontally */
  gap: 20px; /* Space between products */
}
.product:hover {
  transform: scale(1.05); /* Slightly increase the size of the card on hover */
}
.product:hover img {
  transform: scale(1.1); /* Increase image size slightly on hover */
}


.product {
  display: flex;
  align-items: center; /* Center items vertically */
  width: 80%; 
  overflow: hidden; /* Prevent image overflow */
}

.product.left {
  flex-direction: row; /* Image on the left */
}

.product.right {
  flex-direction: row-reverse; /* Image on the right */
}

.product img {
  width: 500px; /* Increased size for images */
  height: 500px; /* Maintain aspect ratio */
  margin: 0 10px; /* Space between image and text */
  transition: transform 0.3s ease;
}

.product-details {
  padding: 10px;
}
.product-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}
.product-details p {
  font-size: 1rem;
  color: #777;
}
.product-details i {
  color: #A4D3E8; /* Accent color for icons */
  margin-bottom: 10px; /* Space below icons */
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../power/images/arno-senoner-42t-DKecmPk-unsplash.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
  }
  
  .cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  .cta p {
    color: #fff;
  }
  
  .cta .cta-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
  }
  
  .cta .cta-btn:hover {
    background: #259c16;
    border: 2px solid #259c16;
  }

  .text-center {
    display: flex; /* Enable flexbox layout */
    flex-direction: column; /* Align items in a column */
    justify-content: center; /* Vertically center content */
    align-items: center; /* Horizontally center content */
    padding: 0 20%; /* Adjust left and right padding as needed */
    box-sizing: border-box; /* Include padding in element's total width */
    text-align: center;
  }
  
.about-us {
    background-color: white;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
}

.left-section, .right-section {
    flex: 1;
    padding: 20px;
}

.left-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.icon-box {
    width: 48%;
    margin-bottom: 20px;
    text-align: center;
}

.icon-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 14px;
    color: #333;
}

.right-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.right-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 36px;
    color: #333;
}

.stat-box p {
    font-size: 14px;
    color: #666;
}
/* Image in the left section */
.about-image {
  width: 100%; /* Ensure the image fits the width of the container */
  max-width: 500px; /* Set a maximum width to keep it proportional */
  height: auto; /* Keep the aspect ratio of the image */
  border-radius: 8px; /* Optional: Rounded corners for the image */
}
@media screen and (max-width: 768px) {
  .about-container {
      flex-direction: column; /* Stack the sections vertically on smaller screens */
  }

  .left-section {
      order: 1; /* Ensure the image comes first */
      margin-bottom: 30px; /* Add some space between the sections when stacked */
  }

  .right-section {
      order: 2; /* Ensure the description follows the image */
  }
}/* Why Us Section */
.why-us {
  background-color: #A4D3E8;
  padding: 20px;
  min-height: 70px; /* Set a minimum height to allow room for content */
  display: flex;
  align-items: center; /* Vertically center the content */
}

.why-us h2 {
  color: #157697;
  font-size: 26px;
  text-align: left; /* Align heading to the left */
  flex: 1; /* Allow the heading to take up the left side */
}

.why-us-content {
  display: flex;
  justify-content: center; /* Center the items horizontally */
  align-items: center; /* Align the items vertically */
  flex: 3; /* Give more space to the content section */
}

.why-us-item {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  margin: 0 30px; /* Space between the items */
}

.why-us-item img {
  width: 50px; /* Adjust image size */
  height: auto;
  margin-bottom: 5px;
}

.why-us-item p {
  font-size: 14px;
  color: #157697;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .why-us {
    flex-direction: column; /* Stack items vertically on small screens */
    text-align: center;
  }
  
  .why-us h2 {
    text-align: center; /* Center heading on small screens */
    margin-bottom: 20px;
  }
  
  .why-us-content {
    flex-direction: column; /* Stack items vertically */
  }
  
  .why-us-item {
    margin: 10px 0; /* Add spacing between items on small screens */
  }
}

/* Footer Social Links Styling */
.footer-social-links {
  display: flex;
  gap: 15px; /* Space between icons */
}

.footer-social-links a {
  color: #157697; /* Default icon color */
  font-size: 24px; /* Icon size */
  transition: color 0.3s ease-in-out; /* Smooth transition on hover */
}

.footer-social-links a:hover {
  color: #779843; /* Hover color for social icons */
}

.btn-square, .btn-sm-square, .btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  width: 38px;
  height: 38px;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  font-size: 1rem;
}

.rounded-circle {
  border-radius: 50% !important;
}

.bg-light {
  background-color: rgba(147, 200, 224, 0.8) !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: #157697;
  position: relative;
  min-height: 400px; /* Adjust height as needed */
}

/* Center the logo at the top */
.footer-first {
  text-align: center;
  margin-bottom: 20px;
}

/* Make the logo bigger */
.footer-first img {
  width: 150px; /* Adjust the size as per your needs */
  height: auto;
}

/* The footer sections in the middle */
.footer-sections {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px; /* Limit the width */
}

.footer-section {
  text-align: left;
  margin: 0 20px;
}

.footer-content h4 {
  margin-bottom: 10px;
  color: white;
}

footer p {
  color: white;
}

/* Center the footer-end at the bottom */
.footer-end {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-size: 14px; /* Adjust font size */
}

/* Style the links */
.btn-btn-link {
  display: block;
  color: white; /* Default color */
  font-family: 'Arial', sans-serif;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.btn-btn-link::after {
  content: "→";
  position: absolute;
  right: -20px;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.btn-btn-link:hover {
  color: #779843;
}

.btn-btn-link:hover::after {
  right: -5px;
  opacity: 1;
}

/* Responsive Design: Stack sections vertically on smaller screens */
@media screen and (max-width: 768px) {
  .footer-sections {
    flex-direction: column; /* Stack the sections in a column */
    align-items: center; /* Center align each section */
  }

  .footer-section {
    margin: 10px 0; /* Add some spacing between the sections */
    text-align: center; /* Center text for each section on smaller screens */
  }

  .footer-first img {
    width: 120px; /* Reduce logo size on small screens */
  }

  .footer-end {
    font-size: 12px; /* Adjust font size for the footer-end */
    padding: 10px 0;
  }

  .footer-social-links {
    justify-content: center; /* Center social links on small screens */
  }
}
