*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    box-shadow: inset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    padding: 15px 40px;
}
nav{
    display: flex;
    gap: 20px;
}
a{
    color: white;
    text-decoration: none;
}
h1 {
    color: white;
    font-size: 50px; /* change to whatever size you want */
    font-weight: bold; /* optional, makes it bolder */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.1s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Loader text */
#loader h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3498db; /* DP World blue */
  animation: pulse 1.5s infinite;
  font-family: Arial, sans-serif;
}

/* Simple animation */
@keyframes pulse {
  0% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.3; transform: scale(0.95); }
}

/* Banner */
.banner {
  display: none; /* hidden until background loads */
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}



.animation{
  display: flex;
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.counter {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.1); /* semi-transparent black */
    border-radius: 5px;
    color: gold;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.products{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,auto);
    gap: 20px;
    margin-top: 20px;
    padding: 20px 50px ;
}
.box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
html {
  scroll-behavior: smooth;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.box .image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.box .image-pot {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.box .image-pot img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image cover the entire div */
  transition: transform 0.3s;
}


.box .image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s;
}



.box:hover .image img {
    transform: scale(1.1); /* zoom effect on hover */
}

.box .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.box .content {
    padding: 15px;
    text-align: center;
}

.box .content p {
    color: #555;
    margin-bottom: 15px;
}

.box .content button {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.box .content button:hover {
    background-color: #34495e;
}

.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-social h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #27ae60;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

@media(max-width:768px){
  h1{
    font-size: 20px;
  }

  .banner{
    height: 40vh;
  }
  .animation{
  display: flex;
  gap: 10px;
  justify-content: center;
  text-align: center;
}
  .counter {
    font-size: 10px;
    display: inline-block;
    padding: 1px 2px;
    background-color: rgba(0, 0, 0, 0.1); /* semi-transparent black */
    border-radius: 2px;
    color: gold;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.products{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(1,auto);
    gap: 20px;
    margin-top: 20px;
    padding: 20px 50px ;
}
}




