*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
  overflow-x:hidden;
  /*background: url('laptop.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  /*font-family:Verdana, sans-serif;*/
  height: 100%;
  font-family: Arial, sans-serif;
}
nav{
  background-color: white;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: white;
  z-index: 1000;
  
}
.nav-logo {
  height: auto;
  max-height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 60px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
nav a:hover{
  background-color: #f0f0f0;
}
nav li:first-child{
  margin-right: auto;
}
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}


/*For Responsive banner*/

    .slideshow-container {
      position: relative;
      height: 100vh;
      width: 100vw;
      overflow: hidden;
    }

    .mySlide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .mySlide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
      z-index: 0;
    }

    .slide-content {
      position: absolute;
      text-align: center;
      color: white;
      padding: 20px;
      font-size: 1.5rem;
      width: 80%; /* Makes sure the text fits nicely on smaller screens */
      max-width: 600px;
      border-radius: 8px;
      top: 50%; /* Align text vertically */
      transform: translateY(-50%); /* Adjust to truly center */
      z-index: 1; /* Ensures the content is above the overlay */
    }

    /*.slide-button {
      padding: 12px 20px;
      background-color: #007BFF;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      margin-top: 20px;
    }

    .slide-button:hover {
      background-color: #0056b3;
    }*/

    .active {
      opacity: 1;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .slide-content {
        font-size: 1.2rem;
        padding: 16px;
      }

      .slide-button {
        font-size: 0.9rem;
        padding: 10px 16px;
      }
    }

/*For social media floating icons*/

.social-icons {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between icons */
    z-index: 9999;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.facebook {
    background-color: #3b5998; /* Facebook color */
}
.twitter {
    background-color: #25D366; /* Twitter color */
}
.instagram {
    background-color: #C13584; /* Instagram color */
}
.linkedin {
    background-color: #0077B5; /* LinkedIn color */
}

.icon:hover {
    transform: scale(1.1); /* Scale effect on hover */
}

@media (max-width: 600px) {
    .icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}


/*About Us*/
.about-us {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.about-image {
    flex: 1;
    min-width: 300px; /* Minimum width for the image section */
    padding: 20px;
    text-align: center;
    
}

.about-image img {
    max-width: 100%;
    height: auto; 
    border-radius: 4px;
}

.learn-more-button,.slide-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00e676, #00bcd4); /* Green to light blue */
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4); /* Soft green glow */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.learn-more-button:hover , .slide-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00bcd4, #00e676); /* Invert gradient on hover */
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6); /* Stronger glow */
}

.about-text {
    flex: 1;
    min-width: 300px; /* Minimum width for the text section */
    padding: 20px;
    text-align: justify;
    line-height: 1.8;
}

.about-text h2 {
    margin-bottom: 10px;
    color:#07345d;
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
    }

    .about-image, .about-text {
        min-width: 100%; /* Full width on smaller screens */
    }
}

/*about us page*/

/*Brand Associations*/

