nav{

       
    float:left;
}


#aboutus{
   margin-top: 350px; 
}
#recognitions{
    margin-top: 350px;
   
}
 
#ourmaterials{
    margin-top: 350px;
}
#contactus{
    margin-top: 350px;
  
}



header::after{
    content:'';
    display: table;
    clear: both;
}
nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
nav li{
    display: inline-block;
    margin-right: 70px;
    padding-top: 23px;
    position: relative;
}
.logo{
    float: left;
    width: 40px;
    height: 50px;
    padding:10px 0;
}
nav a {
    color:rgb(0, 255, 213);
    text-decoration: none;
    text-transform: uppercase; 
     
}
nav a:hover{
    color: rgb(108, 174, 245);
}
nav a::before{
    content:'';
    display: block;
    height: 5px;
    width:0%;
    background-color: rgb(164, 252, 0);
    position: absolute;
    top:0;
transition: all ease-in-out 250ms;
}
nav a:hover::before{
width:100%;
}

body {
  background-color: rgba(138, 0, 50, 0.046);
  background-repeat: no-repeat;
  background-size: cover;}

  section {
    max-width: 1000px auto;
   margin: 100px auto;
   padding: 20px;

    border: 15px solid rgb(204, 208, 203);
    padding: 50px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .section-header {
    background-color: #ffffff; /* Blue */
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 400px;
    margin-left: 100;
}


/* Shop Section Layout */

/* Shop Button Styling */

/* Shop Section Layout */
.shop-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
}

/* Images Styling */
.shop-image1 {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.shop-image2 {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.shop-image1:hover {
    transform: scale(1.05);
}
.shop-image2:hover {
    transform: scale(1.05);
}
/* Shop Button Styling */
.shop-button {
    padding: 16px 50px;
    background-color: #00b4d8;
    color: white;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px #00b4d8;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.shop-button:hover {
    background-color: #0077b6;
    transform: scale(1.08);
    box-shadow: 0 0 20px #00b4d8;
}

/* Button Glow Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 10px #00b4d8; }
    50% { box-shadow: 0 0 20px #00b4d8, 0 0 40px #00b4d8; }
    100% { box-shadow: 0 0 10px #00b4d8; }
}

.ourmaterials {
  background: #e6f7ff;
  padding: 40px;
  border-radius: 16px;
  max-width: 800px;
  margin: 60px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}
.ourmaterials h2 {
  text-align: center;
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 25px;
}
.materials-list {
  list-style: none;
  padding: 0;
}
.materials-list li {
  background: white;
  padding: 15px 20px;
  margin: 10px 0;
  border-left: 6px solid #00b4d8;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #333;
  transition: transform 0.2s ease;
}
.materials-list li:hover {
  transform: translateX(5px);
  background-color: #f1fcff;
}

.recognition-gallery {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  margin-top: 20px;
}

.recognition-gallery img {
  width: 300px;
  height: auto;
  display: inline-block;
  margin-right: 20px;
  border: 4px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.recognition-gallery img:hover {
  transform: scale(1.05);
}
