/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #000000;
}


/* Custom Header Styling */
/*  */
* /* Default Styling */
/* Global Reset */
/* Global Reset */
/* Global Reset */
/* Global Reset */
/* Global Reset */
/* Global Reset */
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text color */
}

/* Header Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text color */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

/* .header:hover {
  background-color: #9b4343; /* Darken on hover */

.logo img {
  width: 70px;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar .nav-list {
  display: flex;
  list-style: none;
  margin-left: auto;
  align-items: center;
}

.navbar .nav-list li {
  margin-left: 30px;
  transition: transform 0.3s ease;
}

.navbar .nav-list li a {
  text-decoration: none;
  color: #000000; /* Black text color */
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .nav-list li a:hover {
  color: #003366; /* Smooth hover effect */
  transform: translateY(-2px);
}

/* Hamburger Icon Styling */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger .line {
  height: 3px;
  background-color: #000000; /* Black hamburger lines */
  width: 100%;
  border-radius: 5px;
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    position: relative;
  }

.logo img {
    width: 50px !important;
    height: 50px !important;
  }

  .navbar .nav-list {
    display: none;
    flex-direction: column;
    width: 40%;
    margin-top: 0px;
    position: absolute;
    top: 10%;
    left: 55%;
    transform: translateX(-50%);
    background-color: #ffffff; /* White background */
    padding: 0px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* Add shadow for menu */
    z-index: 999;
  }

  .navbar .nav-list li {
    margin: 15px 0;
    width: 50%;
    text-align: left;
    padding-left: 15px;
    transition: transform 0.3s ease;
  }

  .navbar .nav-list li a {
    padding: 10px 0;
    width: 50%;
    color: #000000; /* Black text color */
  }

  .hamburger {
    display: flex;
  }

  .navbar.active .nav-list {
    display: flex;
  }

  .navbar.active .nav-list li {
    transform: translateY(10px);
  }
}



/* Hero Section Styling */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}


.logo img {
  max-width: 150px;  /* Adjust the logo size */
  height: auto;  /* Maintain aspect ratio */
}



/* For mobile screens */
@media (max-width: 768px) {
  .hero {
    height: 50vh;  /* Adjust height for mobile devices */
    background-size: contain;  /* Ensure the image maintains aspect ratio on smaller screens */
  }


}

/* For larger desktop screens */
@media (min-width: 1024px) {
  .hero {
    height: 100vh;  /* Ensures the section takes full height of the screen */
    background-size: contain;  /* Image keeps its original shape */
  }

  
}


/* Footer */

.footer {
  background: #2c3e50;
  color: #fff;
  padding: 50px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Section */
.footer-left {
  flex: 1 1 280px;
  line-height: 1.6;
}

.footer-left h3 {
  margin-bottom: 8px;
  color: #fff;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

.footer-left p,
.footer-left address {
  margin: 4px 0 15px;
}

/* Right Section */
.footer-right {
  flex: 0 1 200px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap; 
}

.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.social-links li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.social-links li:hover {
  transform: scale(1.1);
  background-color: #ddd;
}

.social-links img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full fill */
}



/* Footer bottom */
.footer-right .copyright {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-top: auto;
  white-space: nowrap;  
}

/* fotter */




/* Shared Styles  about , contac*/
/* ABOUT WESIX */
.about-wesix {
  background-color: #f0f8ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #34495e;
}

.about-wesix .container {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-wesix .container:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-wesix h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.about-wesix p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #2c3e50;
}

/*  */
/* General Styles AI-Powered Solutions for the Real World*/
/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* What We Do Section */
.what-we-do {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #16a085;
}

/* Service Cards Container */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns for larger screens */
  gap: 30px;
}

/* Individual Service Card */
.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px); /* Lift effect on hover */
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;  /* 1 column on mobile */
  }

  .header {
    padding-left: 30px;  /* Adjust left padding for smaller screens */
  }

  .logo img {
    width: 120px;  /* Adjust logo size for smaller screens */
    height: 120px;
  }

  .tagline {
    font-size: 1.2rem;
    max-width: 100%;  /* Ensure tagline can span full width on mobile */
    margin-top: 10px;  /* Add space between the logo and tagline */
    text-align: center;  /* Center-align the tagline text */
  }
}


/* our eco system */


/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Ecosystem Section */
.ecosystem {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #16a085;
}

/* Platform List */
.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns for larger screens */
  gap: 30px;
}

/* Individual Platform */
.platform {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.platform:hover {
  transform: translateY(-10px); /* Lift effect on hover */
}

.platform h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.platform p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platforms {
    grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .platforms {
    grid-template-columns: 1fr;  /* 1 column on mobile */
  }

  .header {
    padding-left: 30px;  /* Adjust left padding for smaller screens */
  }

  .logo img {
    width: 120px;  /* Adjust logo size for smaller screens */
    height: 120px;
  }

  .tagline {
    font-size: 1.2rem;
    max-width: 100%;  /* Ensure tagline can span full width on mobile */
    margin-top: 10px;  /* Add space between the logo and tagline */
    text-align: center;  /* Center-align the tagline text */
  }
}
/*industry  */
/* General Styles */
/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Industries We Serve Section */
.industries {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #16a085;
}

/* Industry Cards Container */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns for larger screens */
  gap: 30px;
}

/* Individual Industry Card */
.industry-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-10px); /* Lift effect on hover */
}

.industry-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.industry-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .industry-cards {
    grid-template-columns: 1fr;  /* 1 column on mobile */
  }
}





/* fotter info add new sections */
