* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideDown 1s ease-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

header img {
  height: 50px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

nav {
  transition: all 0.3s ease;
}

header nav a {
  color: white;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: #00ffe5;
}
#callme {
    position: fixed;
    right: 10px;
    top: 190px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}

#callme #callmeMain {
    position: relative;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green */
    width: 70px;
    height: 70px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
}

/* Pulsing shadow effect */
#callme #callmeMain::before,
#callme #callmeMain::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: pulse 2s infinite ease-out;
}

#callme #callmeMain::after {
    animation-delay: 1s; /* second layer delay */
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  color: #00ffe5;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  word-break: break-word;
  background: #222;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  border: 2px solid #00ffe5;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 229, 0.3);
}

.about {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
#customer {
    margin-top:60px;
    text-align: center;
}
.clients-section {
    background:#b7f7f1;
    margin: 30px;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }

  .clients-track {
    display: inline-block;
    animation: scroll 25s linear infinite;
  }

  .clients-track img {
    height: 60px;
    margin: 0 30px;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }

  .clients-track img:hover {
    transform: scale(1.1);
  }

#customer-offer{
    margin-top:100px;
    text-align: center;
}
.offer-section {
  color: white;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.offer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
 
  border-radius: 12px;
  border: 2px solid #00ffe5;
  overflow: hidden;
}

/* Price Section */
.price-box {
   
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 2px solid #00ffe5;
}
.Offer1 {
     margin-top:100px;
  color: #00ffe5;
}
.old-price {
    
  text-decoration: line-through;
  font-size: 18px;
  color: #999;
}
.new-price {
    
  font-size: 32px;
  font-weight: bold;
  color: White;
  margin: 10px 0;
}
.limited-offer {
     
  display: inline-block;
  padding: 5px 10px;
  background: #ffd60a;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}
.whatsapp-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
    margin-top: 12px;
    transition: background-color 0.2s ease-in-out;
    max-width: 100%;
    flex-wrap: wrap; /* allows wrapping on small screens */
}

.whatsapp-offer-btn:hover {
    background-color: #1ebe5b;
}

.whatsapp-offer-btn img {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .whatsapp-offer-btn {
        font-size: 14px;
        padding: 8px 12px;
        width: 100%; /* full width on mobile */
    }

    .whatsapp-offer-btn img {
        width: 18px;
        height: 18px;
    }
}

/* Content Section */
.content-box {
  flex: 2;
  padding: 20px;
  border-right: 2px solid #00ffe5;
}
.Offer2 {
     margin-top:100px;
  color: #00ffe5;
}
.content-box p {
  color: white;
  line-height: 1.6;
  font-size: 16px;
}

/* Facilities Section */
.facility-box {
  flex: 1.5;
  padding: 20px;
}
.Offer3{
    
  color: #00ffe5;
}
.facility-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.facility-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid #00ffe5;
  color: white;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .offer-container {
    flex-direction: column;
  }
  .price-box, .content-box {
    border-right: none;
    border-bottom: 2px solid #00ffe5;
  }
  .Offer1 {
    margin-top: 10px; /* or 0 if you want no margin at all */
  }
  .Offer2 {
    margin-top: 10px; /* or 0 if you want no margin at all */
  }
}

#space{
    margin-bottom: 100px;
}
#promo-video {
  padding: 2rem;
  background: #111;
}

#promo-video h2 {
  color: #00ffe5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.video-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content {
  flex: 1;
  width: 50%;
  padding-top: 95px;
  padding-bottom: 95px;
  padding-right:2px;
  padding-left:2px;
  background-color: #222222;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.text-content h3 {
  color: #00bfa6;
}

.text-content p {
  color: white;
  font-size: 16px;
  margin: 0;
}

.read-more {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #00bfa6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.read-more:hover {
  background-color: #009688;
}

#promo-video video {
  flex: 1;
  width: 50%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

#promo-video video:hover {
  transform: scale(1.02);
}

footer{
    background: #111;
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #aaa;
}
.footer {
  background: #111;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: #00ffe5;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Desktop view */
@media (min-width: 769px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 1rem;
  }

  nav.show {
    max-height: 500px;
  }

  nav a {
    margin-left: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
  }

  header {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .card {
    font-size: 1rem;
    padding: 1.2rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

  .services {
    gap: 1.2rem;
  }

  #promo-video video {
    width: 100% !important;
  }

  .text-content {
    width: 100% !important;
    padding: 15px !important;
    background-color:#fafcfc;
    
  }
  .text-content p {
  color:#000000;
}

  .video-container {
    flex-direction: column;
  }
}
/* RESPONSIVE */
  @media (max-width: 1024px) {
    .clients-track img {
      height: 50px;
      margin: 0 20px;
    }
    .clients-track {
      animation-duration: 20s;
    }
  }

  @media (max-width: 768px) {
    .clients-track img {
      height: 40px;
      margin: 0 15px;
    }
    .clients-track {
      animation-duration: 15s;
    }
  }

  @media (max-width: 480px) {
    .clients-track img {
      height: 30px;
      margin: 0 10px;
    }
    .clients-track {
      animation-duration: 12s;
    }
  }

  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  /* Responsive */
  @media (max-width: 768px) {
    .offer-section {
      flex-direction: column;
      padding: 20px 10px;
    }

    .price-box, .content-box, .facility-box {
      flex: 1 1 100%;
    }

    .price-box {
      padding: 15px;
    }

    .old-price {
      font-size: 16px;
    }

    .new-price {
      font-size: 26px;
    }

    .content-box h2 {
      font-size: 20px;
    }

    .content-box p {
      font-size: 14px;
    }

    .facility-box h3 {
      font-size: 18px;
    }

    .facility-box ul li {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .offer-section {
      padding: 15px 5px;
      gap: 15px;
    }

    .new-price {
      font-size: 24px;
    }

    .old-price {
      font-size: 14px;
    }

    .limited-offer {
      font-size: 12px;
      padding: 4px 8px;
    }

    .content-box h2 {
      font-size: 18px;
    }

    .content-box p {
      font-size: 13px;
    }

    .facility-box h3 {
      font-size: 16px;
    }

    .facility-box ul li {
      font-size: 13px;
    }
  }