/* styles.css */

body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	overflow-x: hidden; /* Prevent horizontal scrolling */
}

body h1 {
  font-family: 'Jura', sans-serif; /* Change font family to Jura */
  font-size: 35px;
  font-style: italic; /* Italic style */
  text-align: center;
  color: #fff;
}

header {
    background-color: transparent;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

header img {
    width: 300px; /* Adjust the width of the logo as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 150px; /* Increase margin-right for space */
}

footer img {
    width: 300px; /* Adjust the width of the logo as needed */
    height: auto; /* Maintain aspect ratio */
}

.icon-container {
    padding: 1%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
  }



nav {
    margin-right: auto; /* Move nav to the left */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox for layout control */
    align-items: center; /* Align items vertically center */
}

nav ul li {
    margin-right: 50px;
}

nav ul li a {
    font-family: Jura, sans-serif; /* Use Jura font */
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    padding: 0 20px; /* Add padding to create space between links */
}

nav ul li a:hover {
    animation: colorTransition 1s infinite alternate; /* Apply the animation on hover */
}

@keyframes colorTransition {
    0% {
        color: #ff66b3; /* Pink */
    }
    100% {
        color: #00FFFF; /* Cyan */
    }
}

@keyframes colorTransitionWhite {
    0% {
        color: #fff; /* White */
    }
    50% {
        color: #00FFFF; /* Cyan */
    }
    100% {
        color: #ff66b3; /* Pink */
    }
}

@keyframes borderAnimation {
  0% {
    border-color: #ff66b3; /* Start with pink (#ff66b3) */
  }
  50% {
    border-color: #00FFFF; /* Change border color to cyan (#00FFFF) at the midpoint */
  }
  100% {
    border-color: #ff66b3; /* End with pink (#ff66b3) again */
  }
}

@keyframes revealText {
  0% {
    opacity: 0; /* Start with fully transparent */
    transform: translateY(100%); /* Move text downwards */
  }
  100% {
    opacity: 1; /* End with fully visible */
    transform: translateY(0); /* Move text back to its original position */
  }
}

main {
  background-color: #16171A;
}

/* Styling for the #about section */
#about {
  background-color: #16171A; /* Dark blue background */
  color: #fff; /* White text color */
  padding: 100px 20px;
  text-align: center; /* Center align the paragraphs */
}

#about p {
  font-family: 'Jura', sans-serif;
  font-size: 23px; /* Increase font size */
  max-width: 800px; /* Limit the width of paragraphs */
  margin: 0 auto 20px; /* Center the paragraphs horizontally and add bottom margin */
  text-align: center; /* Align text to the left */
  text-align-last: center; /* Center the last line of each paragraph */
  
  letter-spacing: -0.03em;
}

/* Style the About Us heading */
#about h2 {
  font-family: 'Jura', sans-serif; /* Change font family to Jura */
  font-size: 60px;
  margin: 0;
  text-align: center;
  animation: colorTransitionWhite 3s infinite; /* Apply the animation */
}

#about h3 {
  font-family: 'Jura', sans-serif; /* Change font family to Jura */
  font-size: 28px;
  font-style: italic; /* Italic style */
  text-align: center;
}


#hero {
    position: relative;
    z-index: 1;
    height: 100vh;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('BackgroundSpace.gif') center center/cover;
    z-index: -1;
    animation: animateBackground 3s linear infinite;
    padding: 5px;
}

/* Style the hero content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* Adjust text color for visibility */
  text-align: center;
}

.contact-info {
    font-family: 'Jura', sans-serif; /* Use Jura font */
    color: #fff; /* Set color to white */
    font-size: 20px; /* Set font size to match other nav items */
    animation: colorTransitionWhite 3s infinite; /* Apply the animation continuously */
}

.contact-info span {
    margin-left: 70px; /* Add space to the left of the phone number */
}



/* Styling for the #our-team section */
#our-team {
  background-color: #16171A;
  color: #fff;
  padding: 100px 20px 120px; /* Adjusted padding for consistent spacing */
  text-align: center;
}

#our-team h2 {
  font-family: 'Jura', sans-serif;
  font-size: 60px;
  margin: 0;
  text-align: center;
  animation: colorTransitionWhite 3s infinite;
}

#our-team h3 {
	font-size: 28px;
}



#our-team p {
  font-family: 'Jura', sans-serif;
  font-size: 23px; /* Increase font size */
  max-width: 800px; /* Limit the width of paragraphs */
  margin: 0 auto 20px; /* Center the paragraphs horizontally and add bottom margin */
  text-align: center; /* Align text to the left */
  text-align-last: center; /* Center the last line of each paragraph */
  margin-left: auto; /* Move paragraphs slightly to the left */
  margin-right: auto; /* Move paragraphs slightly to the left */
  word-spacing: -0.06em; /* Reduce word spacing */
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Adjust the gap between team members */
}

.team-member {
  text-align: center;
  border: 2px solid transparent;
  padding: 20px;
  display: flex; /* Use flexbox for layout */
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center elements horizontally */
}

.team-member .image-wrapper {
  width: 300px; /* Adjust the width of the wrapper */
  height: 300px; /* Adjust the height of the wrapper */
  overflow: hidden; /* Ensure the image stays within the wrapper */
  border-radius: 50%; /* Make the wrapper circular */
  position: relative; /* Position relative for absolute positioning */
}

.team-member .image-wrapper img {
  width: 100%; /* Make the image fill the wrapper */
  display: block; /* Ensure the image behaves as a block element */
  box-sizing: border-box; /* Set box-sizing to border-box */
}

.team-member .image-wrapper::before {
    content: ''; /* Add content for pseudo-element */
    position: absolute; /* Position absolutely relative to the wrapper */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent; /* Add border for animation */
    border-radius: 50%; /* Make the border circular */
    box-sizing: border-box; /* Include border in width and height */
    #animation: borderAnimation 2s infinite alternate; /* Apply the animation */
}

.team-member h3 {
  font-family: 'Jura', sans-serif; /* Use Jura font */
  font-size: 24px; /* Adjust font size as needed */
}

.team-member p {
  margin: 5px 0;
}

.personal-statement {
  font-family: Arial, sans-serif; /* Use default font */
  font-size: 17px !important; /* Adjust font size as needed and add !important to ensure it overrides other styles */
  text-align: left;
}

.team-members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Adjust alignment as needed */
}

.team-members-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Adjust alignment as needed */
    width: 100%; /* Ensure each row spans the full width */
    margin-bottom: 20px; /* Add some space between rows */
}

.team-member {
    text-align: center;
    border: 3px solid transparent; /* Initial transparent border */
    padding: 20px;
    width: calc(33.33% - 20px); /* Adjust width based on the number of team members per row */
    box-sizing: border-box; /* Include padding in the width calculation */
    margin-bottom: 20px; /* Add space between team members */
    animation: borderAnimationGrid 2s infinite alternate; /* Apply the animation */
}

@keyframes borderAnimationGrid {
    0% {
        border-color: white; /* White */
    }
    100% {
        border-color: white; /* White */
    }
}

/* Styling for the #our-services section */
#our-services {
  background-color: #16171A;
  color: #fff;
  padding: 120px 20px; /* Adjusted padding for consistent spacing */
  text-align: center;
}

#our-services h2 {
  font-family: 'Jura', sans-serif;
  font-size: 60px;
  margin: 0;
  text-align: center;
  animation: colorTransitionWhite 3s infinite;
}

#our-services h3 {
  font-style: italic;
  font-family: Jura, sans-serif;
  font-size: 28px;
  margin-top: 20px; /* Added margin-top for spacing */
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center align items horizontally */
  margin-top: 40px; /* Adjust margin-top for spacing */
}

.product-list {
  width: 100%; /* Set width to 100% */
  display: flex;
  justify-content: space-around; /* Space items evenly */
}

.product-item {
  font-family: 'Roboto', sans-serif; /* Use Roboto font for product items */
  font-size: 20px;
  padding: 20px 40px; /* Increase padding for larger size */
  border: 2px solid transparent; /* Add border for hover effect */
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.product-item:hover {
  background-color: #222; /* Darken background on hover */
  border-color: #fff; /* Change border color on hover */
}

/* Adjust padding to align the heading to the top */
.product {
  background-color: #222; /* Dark grey background color */
  color: #fff;
  padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
  border-radius: 10px;
  width: calc(98% - 40px); /* Set width to 100% minus the padding on both sides */
  margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
  text-align: center; /* Center align text */
}

/* Align the heading inside the product box to the top */
.product h3 {
  margin-top: 0; /* Reset margin */
  animation: revealText 0.5s ease-in-out forwards; /* Apply the animation */
  opacity: 0; /* Set initial opacity to 0 */
  transform: translateY(100%); /* Set initial transform */
}


.product-title {
  font-family: 'Jura', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-description {
  font-family: Jura, sans-serif; /* Use Jura font */
  font-size: 18px; /* Keep the font size */
  line-height: 1.6; /* Keep the line height */
  text-align: left; /* Align the text to the left */
}

.ending-line {
  text-align: left; /* Center align the text */
  margin-top: 50px; /* Add top margin for spacing */
}

.service-description ul.benefits-list {
  list-style-type: disc;
  margin-top: 10px;
  text-align: left; /* Align the text to the left */
  max-width: 800px; /* Limit the width of the list */
}

/* Add styling for the chatbot images */
.chatbot-images {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.chatbot-images img {
  width: 30%; /* Adjust the width of the images */
  border-radius: 10px; /* Add border radius for rounded corners */
}

/* Add style for the active product item */
.active {
  background-color: #040f13; /* Set background color for active item */
  color: white; /* Set text color for active item */
  padding: 25px 25px; /* Adjust padding for active item */
  border: 2px solid transparent; /* Remove border for active item */
}

/* Keep highlight effect for active product item */
.active:hover {
  background-color: #de3161; /* Set background color for active item on hover */
}

#small-navbar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.circle {
  width: 40px;
  height: 40px;
  background-color: #040f13;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000000;
}

.circle:hover {
  background-color: #fff; /* Change background color on hover */
  color: #00000d; /* Change text color on hover */
  animation: colorTransition 0.5s infinite alternate; /* Added hover effect */
}

.menu {
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #040f13;
  padding: 10px;
  border-radius: 5px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 15px; /* Increased margin */
  transition: color 0.3s ease; /* Added transition for color change */
}

.menu a:hover {
  animation: colorTransition 0.5s infinite alternate; /* Added hover effect */
}

.menu.show {
  transform: scaleY(1);
}

#menu-toggle {
        margin-top: 25px; /* Move menu toggle down by 5px */
    }
	
/* Footer */
footer {
	font-family: Jura, sans-serif; /* Use Jura font */
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}




@media only screen and (min-width: 2560px) {

  .icon-container {
    padding: 1%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }

  header {
        background-color: transparent;
        color: #fff;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header img {
        max-height: 100%; /* Decrease logo size */
        margin-right: 600px; /* Adjust margin */
        max-width: 100%;
        transform: translate(50%, 50%) scale(1.5);
    }

    nav ul li a {
      font-size: 250%;
      transform: translate(50%, 50%) scale(1.5);
      }

    .contact-info {
      font-size: 250%; /* Decrease font size */
		  margin-left: 400px;
    }
}



@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    background-color: transparent;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
  margin-right: 0; /* Remove margin-right */
}
nav {
  display: none; /* Hide the navigation on mobile screens */
}
.icon-container {
  padding: 1%;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
}
.product {
  background-color: #222; /* Dark grey background color */
  color: #fff;
  padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
  border-radius: 10px;
  width: calc(80% - 4vw); /* Set width to 100% minus the padding on both sides */
  margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
  text-align: center; /* Center align text */
}
.team-members {
  grid-template-columns: 2fr; /* Display one team member per row */
}

.team-member {
  width: 100%; /* Full width for each team member */
  margin-bottom: 10px; /* Add space between team members */
}

.team-member .image-wrapper {
  width: 120px; /* Adjust the width of the image wrapper */
  height: 120px; /* Adjust the height of the image wrapper */
}
}

@media only screen and (min-width: 1280px) and (max-width: 1366px) {
    /* Header Styles */
    .product {
      background-color: #222; /* Dark grey background color */
      color: #fff;
      padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
      border-radius: 10px;
      width: calc(90% - 4vw); /* Set width to 100% minus the padding on both sides */
      margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
      text-align: center; /* Center align text */
    }

    header {
        background-color: transparent;
        color: #fff;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header img {
        max-height: 70px; /* Decrease logo size */
        margin-right: 0px; /* Adjust margin */
    }

    nav ul {
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center; /* Align items vertically */
    }

    nav ul li {
        margin-right: 0px; /* Adjust margin */
		margin-left: 10px;
    }
	
	nav ul li a {
		font-size: 19px;
    }
	

    .contact-info {
        font-size: 18px; /* Decrease font size */
		margin-left: 0px;
    }
	
	.contact-info span {
		margin-left: 5px;
	}
	
  .icon-container {
    padding: 1%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.65);
  }

    /* Main Content Styles */
    main {
        padding-top: 80px; /* Adjust spacing */
    }


    #menu-toggle {
        margin-top: 60px; /* Move menu toggle down by 5px */
	}
}

@media only screen and (min-width: 431px) and (max-width: 767px) {

  header {
    background-color: transparent;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
  margin-right: 0; /* Remove margin-right */
}
nav {
  display: none; /* Hide the navigation on mobile screens */
}
.icon-container {
  padding: 1%;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
}
.product {
  background-color: #222; /* Dark grey background color */
  color: #fff;
  padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
  border-radius: 10px;
  width: calc(80% - 4vw); /* Set width to 100% minus the padding on both sides */
  margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
  text-align: center; /* Center align text */
}
.team-members {
  grid-template-columns: 2fr; /* Display one team member per row */
}

.team-member {
  width: 100%; /* Full width for each team member */
  margin-bottom: 10px; /* Add space between team members */
}

.team-member .image-wrapper {
  width: 120px; /* Adjust the width of the image wrapper */
  height: 120px; /* Adjust the height of the image wrapper */
}

}

@media only screen and (max-width: 400px) and (max-height: 680px) {
  .icon-container {
    padding: 1%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.2);
  }
  .team-members {
    grid-template-columns: 1fr; /* Display one team member per row */
  }
  
  .team-member {
    width: 100%; /* Full width for each team member */
    margin-bottom: 20px; /* Add space between team members */
  }
  
  .team-member .image-wrapper {
    width: 120px; /* Adjust the width of the image wrapper */
    height: 120px; /* Adjust the height of the image wrapper */
  }
  
  .team-member h3 {
    font-size: 16px; /* Decrease font size for team member names */
  }
  
  .team-member p {
    font-size: 14px; /* Decrease font size for team member descriptions */
  }
  .product {
    background-color: #222; /* Dark grey background color */
    color: #fff;
    padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
    border-radius: 10px;
    width: calc(80% - 4vw); /* Set width to 100% minus the padding on both sides */
    margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
    text-align: center; /* Center align text */
  }
}

@media only screen and (max-width: 400px) and (min-height: 681px) {
  .icon-container {
    padding: 1%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
  }
  .team-members {
    grid-template-columns: 1fr; /* Display one team member per row */
  }
  
  .team-member {
    width: 100%; /* Full width for each team member */
    margin-bottom: 20px; /* Add space between team members */
  }
  
  .team-member .image-wrapper {
    width: 120px; /* Adjust the width of the image wrapper */
    height: 120px; /* Adjust the height of the image wrapper */
  }
  
  .team-member h3 {
    font-size: 16px; /* Decrease font size for team member names */
  }
  
  .team-member p {
    font-size: 14px; /* Decrease font size for team member descriptions */
  }
  .product {
    background-color: #222; /* Dark grey background color */
    color: #fff;
    padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
    border-radius: 10px;
    width: calc(80% - 4vw); /* Set width to 100% minus the padding on both sides */
    margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
    text-align: center; /* Center align text */
  }
}

@media only screen and (min-width: 400px) and (max-width: 430px) {
  /* Adjust styles for smaller screens like iPhone 14 Pro Max */
  .product {
    background-color: #222; /* Dark grey background color */
    color: #fff;
    padding: 30px 40px 50px; /* Reduce top padding and maintain overall padding */
    border-radius: 10px;
    width: calc(80% - 4vw); /* Set width to 100% minus the padding on both sides */
    margin: 0 auto 30px; /* Center the box horizontally and add margin between products */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
    text-align: center; /* Center align text */
  }
  .icon-container {
    padding: 1%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.4);
  }
  header {
        justify-content: center; /* Center header contents */
    }

    header img {
        margin-right: 0; /* Remove margin-right */
    }

    nav {
        display: none; /* Hide the navigation on mobile screens */
    }

    #menu-toggle {
        margin-top: 15px; /* Move menu toggle down by 5px */
    }

#about p {
  font-size: 21px; /* Increase font size */
  max-width: 800px; /* Limit the width of paragraphs */
  margin: 0 auto 20px; /* Center the paragraphs horizontally and add bottom margin */
  text-align: center; /* Align text to the left */
  text-align-last: center; /* Center the last line of each paragraph */
  margin-left: auto; /* Move paragraphs slightly to the left */
  margin-right: auto; /* Move paragraphs slightly to the left */
  word-spacing: -0.05em;
  letter-spacing: -0.03em;
}

  
  .team-members {
    grid-template-columns: 1fr; /* Display one team member per row */
  }
  
  .team-member {
    width: 100%; /* Full width for each team member */
    margin-bottom: 20px; /* Add space between team members */
  }
  
  .team-member .image-wrapper {
    width: 120px; /* Adjust the width of the image wrapper */
    height: 120px; /* Adjust the height of the image wrapper */
  }
  
  .team-member h3 {
    font-size: 16px; /* Decrease font size for team member names */
  }
  
  .team-member p {
    font-size: 14px; /* Decrease font size for team member descriptions */
  }
}
