/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	  background-color: #f9f9eb;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Navigation Menu */
nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Hero Section */
.hero {
/*    background-color: #007bff;	*/
	  background-image: url('images/blue-waves-pattern-vector.jpg');
    color: #fff;
    text-align: center;
    padding: 100px 0;
	  opacity: 0.7;

/*    -webkit-clip-path: polygon(0 0, 100% 35%, 100% 65%, 0% 100%);
        clip-path: polygon(0 0, 100% 35%, 100% 65%, 0% 100%);
*/        
    border-bottom-left-radius: 0; /* Ensures the right side remains straight */
    border-bottom-right-radius: 50% 75%; 		 /* Curves the bottom left corner */

}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
}

.hero .btn {
    display: inline-block;
    background-color: #fff;
    color: #007bff;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Testimonial Section */
.testimonials {
  padding-top: 20px;
}

.testimonial {
    margin-top: 10px;
    padding-top: 10px;
}

.testimonial p {
    font-style: italic;
}

.testimonial .author {
    margin-top: 10px;
    font-weight: bold;
}

.testimonials .line {
  padding-top: 20px;
  border-bottom: 1px solid #ccc;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.products {
  h2 {
    margin-bottom: 40px;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .product {
    width: calc(25% - 20px);
    margin: 10px;
    padding: 20px;
    background-color:#363535;  /* #fff;  */
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    border-radius: 15px;
    /* box sshadow  */
    box-shadow: 1px 1px 2px rgb(51, 50, 50), 0 0 20px rgb(134, 134, 236), 0 0 5px rgb(74, 74, 143); /* 5px 5px 2px 8px #dee4e6; */
    /* box swing anim  */
    /* perpetual swing
    -moz-animation: 3s ease 0s normal none infinite swing;
    -moz-transform-origin: center top;
    -webkit-animation: swing 3s infinite ease-in-out;
    -webkit-transform-origin: top;
    */

    /* box anim - swing on hover  */
    transform-origin: top center; /* Set the rotation origin */
    /*  animation: swinging 2s ease-in-out forwards infinite; / * Apply the animation */

    transition: transform 0.3s ease-in-out;
  }

  .product img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
  }

  .product h3 {
    font-size: 20px;
    margin-bottom: 10px;

    color: orangered;
    overflow-x: hidden;   /* stop h3 text flowing outside right boundary for small screen */
  }

  .product p {
    line-height: 1.5;

    font-size: 1em;
    color: whitesmoke;
  }

  .product:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    /* box anim - swing on hover  */
    transform: rotate(15deg);  /* swing left by 15deg  */
    
  }
}


/* customers Section	*/
.customers {
	padding-top: 2em;
}

.customer {
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

/* Customers List Styling */
.customer-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
}

.customer-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #2d2d2d;
    padding-right: 0;
}

.customer-list li:not(:last-child)::after {
    content: '\25C6'; /* Diamond character */
    color: #007bff;
    font-size: 1em;
    padding: 0 20px;
    font-weight: bold;
}

/* people Section	*/
.peoples {
	padding-top: 2em;
}

.people {
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

/* Our People Section */
.peoples .people-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.peoples .people-card {
    width: calc(33.33% - 20px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.peoples .hero-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.peoples .hero-image h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.peoples .people-card p {
    padding: 10px;
    font-size: 1em;
    color: #333;
}


/* contact Section	*/
.contacts {
	padding-top: 1px;
	padding-bottom: 3em;
	background: #F5F5DC;
}

.contact {
    margin-top: 30px;
    padding-top: 20px;
}


/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Goto Top btn Styles	*/
#homeBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 5px;
}

#homeBtn:hover {
  background-color: #47b48c;	/* #555;	*/
}

/*   button with icon */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button img {
  width: 20px; /* Adjust image width as needed */
  margin-right: 5px;
}

.button:hover {
  background-color: #0056b3;
}

/* box shake anim  */
/*
.product:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
*/


/* box swing anim */
/* perpetual swing
@-moz-keyframes swing {
  0% { -moz-transform: rotate(-3deg); }
  50% { -moz-transform: rotate(3deg); }
  100% { -moz-transform: rotate(-3deg); }
}

@-webkit-keyframes swing {
  0% { -webkit-transform: rotate(-3deg); }
  50% { -webkit-transform: rotate(3deg); }
  100% { -webkit-transform: rotate(-3deg); }
}
*/

/* box anim - swing on hover  */
@keyframes swinging {
  0% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(-10deg); }
}
