/* RESET */
 body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
}

/* NAVIGATION */
nav.custom-navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 5%;
      flex-wrap: wrap;
    }

    .logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #000;
      font-weight: bold;
    }

    .logo-link img {
      height: 100px;
      margin-right: 10px;
    }



    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: #333;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li {
    position: relative;
    list-style: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .nav-links a {
      text-decoration: none;
      color: #333;
      padding: 10px;
      display: block;
      white-space: nowrap;
    }

    .nav-links a:hover {
      background-color: #f0f0f0;
      border-radius: 4px;
    }

    .nav-links a.active {
      background-color: #0D1A52;
      border-radius: 4px;
      color: #ffffff;
    }

    .dropdown label.active {
      background-color: #0D1A52;
      border-radius: 4px;
      color: #ffffff;
    }

    .dropdown-menu,
    .sub-dropdown-menu {
      display: none;
      position: absolute;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      top: 100%;
      left: 0;
      min-width: 220px;
      z-index: 99;
    }

    .dropdown:hover > .dropdown-menu,
    .sub-dropdown:hover > .sub-dropdown-menu {
      display: block;
    }

    .sub-dropdown-menu {
      left: 100%;
      top: 0;
    }

    /* Mobile View */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        background-color: #fff;
        margin-top: 10px;
      }

      .nav-links li {
        position: relative;
        list-style: none;
        font-size: 14px;
        display: block;
    }

      .nav-links.open {
        display: flex;
        margin-left: -50px;
      }

      .dropdown-menu,
      .sub-dropdown-menu {
        position: static;
        box-shadow: none;
      }

      .dropdown:hover > .dropdown-menu,
      .sub-dropdown:hover > .sub-dropdown-menu {
        display: none;
      }

      .dropdown > input:checked ~ .dropdown-menu,
      .sub-dropdown > input:checked ~ .sub-dropdown-menu {
        display: block;
        margin-left: -20px;
      }

      .dropdown > label,
      .sub-dropdown > label {
        cursor: pointer;
        padding: 10px;
        display: block;
      }

      .dropdown > label::after,
      .sub-dropdown > label::after {
        content: " ▼";
        float: right;
      }

    }


    .dropdown-menu li:hover a {
      background-color: #0D1A52;
      border-radius: 4px;
      color: white;
    }

    .dropdown > input:checked + label {
    background-color: #f9f9f9;
    border-radius: 4px;
  }

    input[type="checkbox"] {
      display: none;
    }

     @media (max-width: 320px) {
          .input-icon-wrapper, .textarea-icon-wrapper {
          position: relative;
          width: 80%;
          margin-bottom: 15px;
}
    }

/* Hero section */
    .hero-section {
  position: relative;
  background: rgba(0, 0, 0, 0.5); /* optional dark overlay */
  height: 700px;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: left;
}

.hero-overlay {
  
  padding: 40px;
  text-align: left;
  color: white;
  border-radius: 8px;
  padding: 20px;
}

    @media (max-width: 768px) {
  .hero-section {
    background: url('iso/vecteezy_hand-shows-the-sign-of-the-top-service-quality-assurance_7252255.jpg') no-repeat center center / cover;
    height: 80vh;
    text-align: center;
    padding: 20px;
  }
  
}


    /* Heading Styling */
    .hero-heading {
      font-size: 3rem;
      font-weight: bold;
      margin: 0;
      opacity: 0;
      animation: fadeInText 2s ease-in-out forwards;
      padding: 20px;
      overflow-y: hidden;
    }

    /* Subheading Styling */
    .hero-subheading {
      font-size: 1.5rem;
      margin-top: 10px;
      opacity: 0;
      animation: fadeInText 2s 0.5s ease-in-out forwards;
      padding: 20px;
    }

    /* Call to Action Button */
    .cta-button {
      margin-top: 20px;
      padding: 12px 30px;
      font-size: 1.2rem;
      background-color: #007BFF;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      opacity: 0;
      animation: fadeInText 2s 1s ease-in-out forwards;
      transition: background-color 0.3s;
      margin-left: 10%;
    }

    /* Hover Effect for CTA */
    .cta-button:hover {
      background-color: #0056b3;
    }
    @media screen and (max-width: 768px) {
      .hero-heading {
      font-size: 22px;
      font-weight: bold;
      margin: 0;
      opacity: 0;
      animation: fadeInText 2s ease-in-out forwards;
      padding: 10px;
      overflow-y: hidden;
    }
    .hero-subheading{
      font-size: 18px;
    }
    }

    /* Keyframe Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes fadeInText {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
/* Hero section end */

/* Service Section Styles */
.iso-certifications {
  padding: 20px 20px;
  background-color: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 32px;
  color: #0D1A52;
  font-weight: bold;
  margin: 0;
}

.iso-certifications .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.iso-certifications .card {
  
  border-radius: 100px;
  padding: 30px 25px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
  /* box-shadow:
    0 0 5px #9c8503,
    0 0 10px #9c8503,
    0 0 20px #9c8503,
    0 0 40px #9c8503 inset; */
  transition: all 0.3s ease;
}

.iso-certifications .card:hover {
  transform: translateY(-6px);
  border-color: #d4af3752;
  box-shadow:
    0 0 10px #97969615,
    0 0 20px #97969615,
    0 0 30px #97969615,
    0 0 50px #97969615 inset;
}

.iso-certifications .card img {
  max-width: 110px;
  margin-bottom: 20px;
  
}

.iso-certifications .card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  animation: pulseBlink 1.5s infinite ease-in-out;
  transition: background 0.3s ease;
}

.iso-certifications .card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
 
}

@media screen and (max-width: 768px) {
      .iso-certifications .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 5px;
}
    }


/* Certification css */

.certifications {
  padding: 60px 20px;
  background-color: #fff;
}

.cert-heading {
  text-align: center;
  font-size: 32px;
  color: #0D1A52;
  margin-bottom: 40px;
  font-weight: bold;
}

.certification-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.certification-cards .card {
  background: #fff;
  
  border-radius: 100px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  /* box-shadow:
    0 0 5px #9c8503,
    0 0 10px #9c8503,
    0 0 20px #9c8503,
    0 0 40px #9c8503 inset; */
  transition: all 0.3s ease;
}

.certification-cards .card:hover {
  transform: translateY(-5px);
  border-color: #d4af3752;
  box-shadow:
    0 0 10px #97969615,
    0 0 20px #97969615,
    0 0 30px #97969615,
    0 0 50px #97969615 inset;
}

.certification-cards .card img {
  max-width: 120px;
  margin-bottom: 15px;

}

.certification-cards .card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
  animation: pulseBlink 1.5s infinite ease-in-out;
  transition: background 0.3s ease;
}

.certification-cards .card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}


/*  Countries section */
.countries-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #232323;
    color: white;
}

.countries-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

.country-card {
    position: relative; /* Ensure the tooltip is positioned relative to the country card */
    display: inline-block;
    width: 150px;
    height: 100px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 0; /* Set a base z-index for the card */
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-card:hover img {
    transform: scale(1.1); /* Slight zoom effect when hovered */
}

.tooltip {
    position: absolute;
    top: -30px; /* Adjust to position above the flag */
    left: 50%;
    transform: translateX(-50%);
    /* background-color: rgba(0, 0, 0, 0.7); */
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
    z-index: 9999; /* High z-index to make sure the tooltip is always on top */
}

.country-card:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .countries-section h2 {
        font-size: 28px;
    }
}


/* accreditations-section */
.accreditation-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('iso/hero6-min.jpg') center/cover no-repeat;
  color: #fff;
  padding: 200px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
  padding: 10px 10px;
  border-radius: 12px;
  backdrop-filter: blur(10px); /* background blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  animation: fadeInHero 1.2s ease-in-out both;
}

.accreditation-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.accreditation-hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #666666;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #4400ff;
}

/* Fade-in animation */
@keyframes fadeInHero {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .accreditation-hero h1 {
    font-size: 28px;
  }

  .accreditation-hero p {
    font-size: 16px;
  }
}


 .accreditations-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0D1A52;
}
.accreditations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers items in each row */
  gap: 20px;
  max-width: 900px; /* set a width limit */
  margin: 0 auto;    /* centers the whole grid in the page */
  padding: 20px;
}

.accreditation-card {
  /* border: 2px solid #0D1A52; */
  border-radius: 100px;
  padding: 25px 15px;
  max-width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease both;
  overflow: hidden;
  position: relative;
}

.accreditation-card:hover{
 border-color: #d4af3752;
  box-shadow:
    0 0 10px #97969615,
    0 0 20px #97969615,
    0 0 30px #97969615,
    0 0 50px #97969615 inset;
}
.accreditation-card img {
  max-width: 100px;
  margin-bottom: 15px;
  
}

.accreditation-card h3 {
  margin: 15px 0;
  font-size: 16px;
  
}

.info-box {
  flex: 1 1 45%;
}

/* Vertical line between the two boxes */
.with-border {
  border-left: 2px solid rgba(0, 0, 0, 0.5);
  padding-left: 80px;
}

/* Blinking button */
.accreditation-card .read-more {
  padding: 8px 16px;
  background-color: #0047ab;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  animation: pulseBlink 1.5s infinite ease-in-out;
  transition: background 0.3s ease;
  margin-bottom: 40px;
}

/* Animations */

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blinkRotate3D {
  0% {
    opacity: 0;
    transform: rotateY(0deg);
  }
  20% {
    opacity: 1;
    transform: rotateY(90deg);
  }
  40% {
    opacity: 0.7;
    transform: rotateY(180deg);
  }
  60% {
    opacity: 1;
    transform: rotateY(270deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(360deg);
  }
}



@keyframes pulseBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


.read-more {
  background: #0D1A52;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-top: auto;
}
.read-more:hover {
  background: #D4AF37;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
}
.close {
  color: #aaa;
  font-size: 28px;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.close:hover {
  color: #000;
}


/* ISO Standards */
.iso-hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('iso/vect6-min.jpg') center/cover no-repeat;
  color: #fff;
  /* padding: 180px 20px; */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.iso-hero-content {
    background: rgba(0, 0, 0, 0.7); /* semi-transparent dark overlay */
  padding: 40px 20px;
  max-width: 800px;
  overflow-y: hidden;
  padding: 20px;
}

.iso-hero-content h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.iso-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-button {
  background-color: #646464;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #000000;
  color: #fff;
}

.iso-certification-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0D1A52;
  font-weight: bold;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 70px;
  max-width: 1200px;
  margin: auto;
}

.iso-card {
  background: #f9f9f9;
  border: 2px solid #0808082f;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  box-shadow:
                0 0 5px #727272,
                0 0 10px #727272,
                0 0 20px #727272,
                0 0 40px #727272 inset;
            transition: all 0.3s ease;
}

.iso-card:hover {
  transform: translateY(-5px);
  border: 2px solid #1960f8;
  box-shadow:
                0 0 5px #000000,
                0 0 10px #000000,
                0 0 20px #000000,
                0 0 40px #000000 inset;
            transition: all 0.3s ease;
}

.iso-card img {
  width: 100%;
  height: 160px;           /* or adjust as needed */
  object-fit: cover;       /* makes sure it fills nicely */
  border-radius: 8px 8px 0 0; /* optional: rounded top */
  margin-bottom: 15px;
}

.iso-card h3 {
  font-size: 16px;
  color: #ff9900;
  margin-bottom: 10px;
}

.iso-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Accreditation */
.accreditation-list-section {
  padding: 60px 20px;
  background: #fff;
}

.accreditation-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.accreditation-intro h2 {
  font-size: 32px;
  color: #0D1A52;
  margin-bottom: 10px;
}

.accreditation-intro p {
  font-size: 16px;
  color: #555;
}

.accreditation-entry {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 5px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.accreditation-entry img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.accreditation-entry h3 {
  font-size: 18px;
  color: #0D1A52;
  margin-bottom: 8px;
}

.accreditation-entry p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .accreditation-entry {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .accreditation-entry img {
    margin-bottom: 10px;
  }
}



/* WhatsApp Icon Styling */


.whatsapp-icon {
  position: fixed;
    bottom: 10px;
    left: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  color: white;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 0 8px #25D366;
  animation: pulse 2s infinite;
  transition: box-shadow 0.3s ease;
  z-index: 99999;
}

.whatsapp-icon:hover {
  box-shadow: 0 0 20px 6px #25D366;
  animation: pulse 1.5s infinite;
}

/* Pulse animation for glow */
@keyframes pulse {
  0% {
    box-shadow: 0 0 6px 2px #25D366;
  }
  50% {
    box-shadow: 0 0 18px 6px #25D366;
  }
  100% {
    box-shadow: 0 0 6px 2px #25D366;
  }
}

/* Footer */
.footer {
  background-color: #1c1f26;
  color: white;
  position: relative;
  padding-top: 120px; /* makes space for gradient box to enter from top */
  padding-bottom: 40px;
  overflow: visible;
}

.footer-content a.footer-logo-img-link {
  position: relative;
  top: -125px; /* move up by 15px, adjust as needed */
  left: -70px;
  display: inline-block; /* ensure it behaves like an inline block */
}

.footer-logo-img-link .footer-logo-img{
  height: 100px;
}


.gradient-box {
  position: absolute;
  top: -60px; /* half of its height to overlap */
  left: 50%;
  transform: translateX(-50%);
  background:white;
  color: rgb(0, 0, 0);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 90%;
  border-radius: 10px;
  z-index: 2;
   box-shadow:
    0 0 5px #656565,
    0 0 10px #737373,
    0 0 20px #666666,
    0 0 40px #727272 inset;
  transition: all 0.3s ease;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  z-index: 1;
  position: relative;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}



.footer-column h4 {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 4px 0;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 5px 10px;
}

.footer-bottom a {
  color: #333;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    margin: 5px 0;
  }
}


@media (max-width: 768px) {
  .gradient-box,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .gradient-box {
    padding: 20px;
  }
  .footer-content a.footer-logo-img-link {
  position: relative;
  top: 190px; /* move up by 15px, adjust as needed */
  left: 0px;
  display: inline-block; /* ensure it behaves like an inline block */
}

.gradient-box {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: rgb(0, 0, 0);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 0 5px #656565, 0 0 10px #737373, 0 0 20px #666666, 0 0 40px #727272 inset;
    transition: all 0.3s ease;
}
}

@media (max-width:1024px){
  .gradient-box {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: rgb(0, 0, 0);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 800px;
    width: 90%;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 0 5px #656565, 0 0 10px #737373, 0 0 20px #666666, 0 0 40px #727272 inset;
    transition: all 0.3s ease;
}

.info-box {
    flex: 1 1 40%;
    font-size: 12px;
}

.footer-content a.footer-logo-img-link {
  position: relative;
 
  left: -15px;
  display: inline-block; /* ensure it behaves like an inline block */
}
}


    /* Floating Buttons */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
      color: white;
    }

    .floating-buttons a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: white;
      font-size: 22px;
      text-align: center;
      line-height: 50px;
      text-decoration: none;
    }

    .call-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #2806e7; /* Call button green */
  border-radius: 50%;
  color: white;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 0 8px #1202f3;
  animation: pulseCall 2s infinite;
  transition: box-shadow 0.3s ease;
}

.call-btn:hover {
  box-shadow: 0 0 20px 6px #3a06f7;
  animation: pulseCall 1.5s infinite;
}

/* Pulse animation for call button glow */
@keyframes pulseCall {
  0% {
    box-shadow: 0 0 6px 6px #03ddec;
  }
  50% {
    box-shadow: 0 0 18px 12px #03bae7;
  }
  100% {
    box-shadow: 0 0 6px 6px #04f3f3;
  }
}

    .whatsapp-btn { background-color: green; }

    .enquiry-tab {
      position: fixed;
      right: 0;
      bottom: 100px;
      background: #0047ab;
      color: white;
      padding: 10px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-size: 14px;
      font-weight: bold;
      text-align: center;
      border-radius: 6px 0 0 6px;
      z-index: 999;
    }

    .footer-logo {
      position: fixed;
      bottom: 10px;
      left: 10px;
      width: 60px;
      height: auto;
      z-index: 999;
    }

    @media (max-width: 768px) {
      .gradient-box {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-content {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-column {
        overflow-y: hidden;
        flex: 1 1 160px;
        margin: 10px;
      }
    }

    
