/* Base Reset */
* {
  margin: 0;
  padding: 0;
}
    body {
      font-family: 'Times New Roman', Times, serif;
      margin: 0;
      padding: 0;
      background-color: aliceblue;
      animation: fadeIn 1s ease-in-out;
    }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Header Flexbox Layout */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: aliceblue;
  padding: 10px 30px;
  animation: slideDown 1s ease-in-out;
              position: sticky;
      top: 0;
      z-index: 10;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo-title img {
  height: 60px;
  margin-right: 10px;
      pointer-events: none;

}

.logo-title h1 {
  font-size: 35px;
  color: #0A93C5;
  font-family: 'Times New Roman', Times, serif;
}

/* Nav on right */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #0A93C5;;
  font-size: 25px;
  text-decoration: none;
  transition: transform 0.3s;
}
.main-nav a:hover {
  transform: scale(1.1);
}

    a:link, a:visited {
      text-decoration: none;
    }
/* Sections */
section {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
  animation: fadeIn 1s ease-in;
}
h2{
  color: #0A93C5;
}
.head3Main {
  color: #0A93C5;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  margin-bottom: 20px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  background: #0A93C5;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
  font-size: large;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 75%;
  object-fit: cover;
      pointer-events: none;

}

.gallery-item h3 {
  padding: 10px;
  margin: 0;
  color: aliceblue;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-in-out 1s both;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
      pointer-events: none;

}

/* Responsive */
@media screen and (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    margin-top: 10px;
    flex-wrap: wrap;
  }
}

.info-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.info-section .tagline {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  color: #444;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.feature-card {
  background-color: #0A93C5;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-height: 100%;

  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 2px;
  pointer-events: none;
}
.feature-card p{
  color: #fff;
  font-size: x-large;
}

.feature-card-ceo {
  max-width: 300px;
  max-height: 450px;
  margin: 20px auto;
  background-color: #0A93C5;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card-ceo:hover {
  transform: scale(1.05);
}

.feature-card-ceo img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  pointer-events: none;
}

.feature-card-ceo p {
  color: #fff;
  font-size: larger;
      font-family: 'Times New Roman', Times, serif;
}
@keyframes floatInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float-in {
  animation: floatInUp 1s ease-out both;
}

.applications {
  background-color: #b6edf5;
  padding: 15px;
  border-left: 5px solid #0A93C5;
  font-size: 16px;
  border-radius: 5px;
}
.heading{
  font-size: large;
  color:#444;
}
.applications strong{
  color: #0A93C5;
  font-size: 21px;
}
.applications p{
  color:#444;
  font-size: large;
}

.main-footer {
  background-color: #0A93C5;
  color: aliceblue;
  padding: 40px 20px 20px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  animation: fadeIn 1s ease-in-out 1.5s both;
}

.main-footer h2 {
  margin-bottom: 5px;
  font-size: 28px;
  color: aliceblue;
}

.main-footer p {
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-contact a {
  color: aliceblue;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-social a {
  margin: 0 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  font-size: 14px;
  margin-top: 15px;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  background: #f0fbff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}

.logo-strip {
  display: flex;
}

.logo-strip img {
  height: 100px;
  margin: 0 30px;
  transition: opacity 0.3s;
}

.logo-strip img:hover {
  opacity: 1;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

@media (max-width: 768px) {
      main-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      nav {
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 15px;
      }
    }

.contact-cta {
  background-color: #e0f7fa;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid #0A93C5;
  border-bottom: 3px solid #0A93C5;
  margin-top: 40px;
}

.contact-cta h2 {
  font-size: 28px;
  color: #0A93C5;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-contact,
.btn-brochure {
  padding: 12px 24px;
  background-color: #0A93C5;
  color: aliceblue;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover,
.btn-brochure:hover {
  background-color: #0199ad;
  transform: scale(1.05);
}

    .featuresC {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .featureC-card {
      background-color: #0A93C5;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 250px;
      text-align: center;
      transition: transform 0.3s;
    }
    .featureC-card img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 6px;
    }
    .featureC-card p {
      color: aliceblue;
      font-size: 20px;
      line-height: 1.4;
    }

    .back-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: aliceblue;
      color: #0A93C5;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .back-button:hover {
  transform: scale(1.05);
    }