 
  */

    html {
      scroll-behavior: smooth;
    }
    /* header css */
  
      .logo {
       position: sticky;
       top: 20px;
       left: 20px;
       display: flex;
    }

    img[alt="Company logo"] {
     width: 80px;      
     height: auto;
     flex-shrink: 0;
     object-fit: contain;
    }
      
    h1{
        position: relative;
        text-align: center;
        padding: 30px 20px;
        color:#ffffff;
        font-family: 'Arial', Georgia, 'Times New Roman', Times, serif;
        font-weight:normal;    
        font-size: 1.5em;
    }
    
    header{
        width: 100%;
        padding: 10px 30px 20px;
    }
   header{
    background-color: #004bad;
   } 
   

 /* Main css */

.reverse {
  flex-direction: row-reverse;
}

/* About Us and Our Services css */

.About-image,
.Services-image,
.About-content,
.Services-content {
  flex: 1;

}

.About-us, 
.Our-Services {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.About-image , 
.Services-image {
  width: 55%;
  height: auto;
  max-width: 700px;
}

.About-image img, 
.Services-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


@media (max-width: 900px) {
  .About-us {
    flex-direction: column;
  }

  .About-image,
  .About-content {
    width: 100%;
  }
    }

    @media (max-width: 900px) {
  .Our-Services {
    flex-direction: column;
  }                 

  .Services-image,
  .Services-content {
    width: 100%;
  }        
}
/* Gallery css */
 
.Gallery {
  align-items: right;
  gap: 40px;
  padding: 40px;
  background-color: rgb(251, 244, 234);
}

.gallery-box {
  position: relative;
  max-width: 900px;
  height: 700px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit:scale-down;
  display: block;
  transition: opacity 0.5s ease-in-out;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px 17px;
  cursor: pointer;
  border-radius: 50%;
}

.gallery-btn:hover {
   background-color: #111;
   transition: 0.5s;
}

.gallery-btn.prev {
  left: 12px;
}

.gallery-btn.next {
  right: 12px;
}

@media (max-width: 700px) {
  .gallery-box {
    height: 280px;
  }
}

/* Contact Us css */
 
.Contact-us {
  background-color: rgba(188, 188, 188, 0.672);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.Contact-us-content{
  flex: 1;
}

.Contact-us-content h2 {
  margin-bottom: 15px;
}

.Contact-us-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item h3 {
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
.contact-items-wrapper {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.hours h3, .service-area h3 {
  margin-bottom: 15px;
}

.hours-list, .service-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li, .service-area-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hours-list li:last-child{
  border-bottom: none;
}

.hours-list span:first-child, .service-area-list span:first-child {
  font-weight: 500;
}

.hours-list span:last-child {
  opacity: 0.8;
}

.contact-item a:hover {
  text-decoration: underline;
  color: rgba(0, 78, 180, 0.8);
}
@media (max-width: 900px) {
  .Contact-us {
    flex-direction: column;
  }
}

@media (min-width: 901px) {
  .contact-items-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-items-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
    /* Navbar css */
   

    
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        cursor: pointer;
    }

   .navbar ul{
        list-style-position:inside;
        list-style-type:none;
        background-color:#000000;
        padding:0px;
        margin:0px;
        overflow:hidden;
        display: flex;
        justify-content: center;
        gap: 45px; 
    }
    .navbar a{
        color:#ffffff;
        text-decoration: none;
        padding:15px;
        display:block;
        text-align:center;
    }
    .navbar a:hover{
        background-color:#393939;
    }

     @media (max-width: 900px) {
  .navbar ul {
    gap: 15px;
  }
}


    /* Footer css */
    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }        
    footer{
        background-color: #000000;
    }
    .footerContainer{
        width: 100%;
        padding: 10px 30px 20px;
    }
    .soicalIcon{
        display:flex;
        justify-content: center;
    }
    .soicalIcon a{
        text-decoration:none;
        padding: 10px;
        background-color: #ffffff;
        margin: 10px;
        border-radius: 50px;
    }
    .soicalIcon a{
        font-size: 2em;
        color: #000000;
        opacity: 0.9;
    }

    /* Hover Efects on icons */
    .soicalIcon :hover{
        background-color: #111;
        transition: 0.5s;
    }
    .soicalIcon a:hover{
        color: #ffffff;
        transition: 0.5s;
    }
    .footerNav{
        margin: 30px 0;
    }
    .footerNav ul{
        display: flex;
        justify-content: center;
        list-style: none;
    }
    .footerNav ul li a{
        color: #ffffff;
        margin: 20px;
        text-decoration: none;
        font-size: 1.3em;
        opacity: 0.7;
        transition: 0.5s;
    }
    .footerNav ul li a:hover{
        opacity: 1;
    }
    .footerBottom{
        background-color: #000;
        padding: 12px;
        text-align: center;
    }
    .footerBottom{
        color: #ffffff;
    }
    .designer{
        opacity: 0.7;
        text-decoration: 1px;
        font-weight: 400;
        margin: 0px 5px;
    }
    @media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    } 
    .footerNav ul li{
        width:100%;
        text-align: center;
        margin: 10px;
    }
    .socialIcons a{
        padding: 8px;
        margin: 4px;
    }
}
    
