/* General Reset & Base Styles */

body {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: 'Segoe UI', sans-serif;

}



.nav-name{

  color: white;

  font-weight: bold;

  margin-left: 5%;

  font-size: 130%;

}



.main-cat{

  text-decoration: none;

}



.adjust-nav{

  display: flex;

  flex-wrap: wrap;

}



.top-info{

font-weight: bold;

}





.company-logo{

animation: rotate 2s linear infinite;

}



@media (max-width: 576px) {

  .nav-top-contact{

  font-size: 12px; /* Adjust font size for extra small screens */

}

}





.nav-top-contact{

display: flex;

flex-wrap: wrap;

}

.nav-top-content{

 flex-grow: 1;

 flex-basis: 200;

 text-align: center;

 align-items: center;

 justify-content: space-around;

 padding: 1% ;

}



.nav-top-content span{

  font-weight: bold;

  font-size: clamp(14px, 2vw, 18px);

}



.circular-image {

  width: 200px; /* Adjust width and height as needed */

  height: 200px;

  border-radius: 50%; /* Ensure the image is circular */

  animation: rotate 10s linear infinite; /* Apply the rotate animation */

}



@keyframes rotate {

  from {

    transform: rotate(0deg); /* Start the rotation from 0 degrees */

  }

  to {

    transform: rotate(360deg); /* Rotate the image to 360 degrees */

  }

}



.container-fluid{

  background-color: #e3be9b;

}

#navbarDropdown:hover{

  color: rgb(0, 0, 0);

}

.dropdown-menu .dropdown-item:hover{

 background-color: rgb(43, 226, 202);

}





/* Search BTn*/



/* CSS */





/* CSS */

.btn64 {

  font-size: 12px;

  padding: 0.6em 1em;

  border: none;

  text-decoration: none;

  outline: none;

  color: rgb(17, 2, 2);

  background: #111;

  cursor: pointer;

  position: relative;

  z-index: 0;

  border-radius: 10px;

  user-select: none;

  -webkit-user-select: none;

  touch-action: manipulation;

}



.btn64:before {

  content: "";

  background: linear-gradient(

    45deg,

    #ff0000,

    #ff7300,

    #fffb00,

    #48ff00,

    #00ffd5,

    #002bff,

    #7a00ff,

    #ff00c8,

    #ff0000

  );

  position: absolute;

  top: -2px;

  left: -2px;

  background-size: 400%;

  z-index: -1;

  filter: blur(5px);

  -webkit-filter: blur(5px);

  width: calc(100% + 4px);

  height: calc(100% + 4px);

  animation: glowing-button-85 20s linear infinite;

  transition: opacity 0.3s ease-in-out;

  border-radius: 10px;

}



@keyframes glowing-button-85 {

  0% {

    background-position: 0 0;

  }

  50% {

    background-position: 400% 0;

  }

  100% {

    background-position: 0 0;

  }

}

.btn64:hover{

  color: #f8f9fa;

  

  

}



.btn64:after {

  z-index: -1;

  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: #d8d5d5;

  left: 0;

  top: 0;

  border-radius: 10px;

}



/* ABOUT SECTION */

#about-main {

  padding: 0;

  margin: 0 auto;

  width: 100%;

}



.about-section {

  background: linear-gradient(to right, #5b86e5, #36d1dc);

  padding: 40px 20px;

  text-align: center;

  color: #fff;

}



.section-title {

  font-size: clamp(2rem, 5vw, 2.8rem);

  font-weight: bold;

  margin: 0;

  letter-spacing: 1px;

}



/* ABOUT CONTENT */

.container2 {

  width: 100%;

  padding: 30px 5%;

  background-color: #f9f9f9;

}



.container3 {

  max-width: 1200px;

  margin: 0 auto;

}



.containerbox {

  background-color: #fff;

  padding: 40px;

  border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  color: #333;

}



.subheading {

  font-size: clamp(1.4rem, 3vw, 1.8rem);

  color: #245b8d;

  margin-bottom: 20px;

  border-left: 4px solid #36d1dc;

  padding-left: 10px;

}



.containerbox p {

  font-size: 16px;

  margin-bottom: 15px;

  text-align: justify;

  line-height: 1.8;

  word-break: break-word;

}



/* List Styling */

.iso-list {

  padding-left: 20px;

  margin-bottom: 20px;

}

.iso-list li {

  font-size: 16px;

  margin-bottom: 8px;

  list-style-type: disc;

  color: #444;

}



/* Circular Logo */

.circular-image {

  width: 200px;

  height: 200px;

  border-radius: 50%;

  animation: rotate 10s linear infinite;

}



@keyframes rotate {

  from {

    transform: rotate(0deg);

  }

  to {

    transform: rotate(360deg);

  }

}



/* BUTTON */

.btn64 {

  font-size: 12px;

  padding: 0.6em 1em;

  border: none;

  color: rgb(17, 2, 2);

  background: #111;

  cursor: pointer;

  position: relative;

  z-index: 0;

  border-radius: 10px;

}



.btn64:before {

  content: "";

  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);

  position: absolute;

  top: -2px;

  left: -2px;

  background-size: 400%;

  z-index: -1;

  filter: blur(5px);

  width: calc(100% + 4px);

  height: calc(100% + 4px);

  animation: glowing-button-85 20s linear infinite;

  border-radius: 10px;

}



@keyframes glowing-button-85 {

  0% { background-position: 0 0; }

  50% { background-position: 400% 0; }

  100% { background-position: 0 0; }

}



.btn64:hover {

  color: #070707;

}



.btn64:after {

  z-index: -1;

  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: #d8d5d5;

  left: 0;

  top: 0;

  border-radius: 10px;

}



/* DROPDOWN */

#navbarDropdown:hover {

  color: rgb(14, 14, 14);

}

.dropdown-menu .dropdown-item:hover {

  background-color: rgb(43, 226, 202);

}



/* FOOTER */

footer {

background-color: #121921;

color: white;

font-family: sans-serif;

margin-top: 120px;

}


  .iso-certs, .about, .useful-links, .get-in-touch {
  margin-bottom: 5%;
  margin-top: 5%;
  flex-grow: 1;
  flex-basis: 200;
  }



.footer {

display: flex;

justify-content: space-around;

flex-wrap: wrap;

padding: 50px 30px 50px 30px;

margin-top: 50px;

}



.head {

font-size: 17px;

margin-bottom: 40px;

letter-spacing: 1px;

font-weight: bold;

}



.head-border {

border-bottom: 1px solid red;

padding-bottom: 20px;

}



.list span {

font-size: small;

line-height: 2.5;

letter-spacing: 1px;

color: rgb(185, 184, 184);

}





.list span:hover {

cursor: pointer;

color: white;

font-weight: bold;

}



.list-contact span {

/* padding: 20px; */

font-weight: bold;

letter-spacing: 1px;

}



.list-contact img {

height: 30px;

width: 30px;

background-color: white;

border-radius: 10px;

padding: 7px;

margin-bottom: 3px;

}





.footer-2 {

text-align: center;

/* margin-bottom: 10%; */

}



.footer-2 h3 {

font-size: medium;

font-family: 'Poppins', sans-serif;

padding: 30px 0 70px 0;

border-top: 0.5px solid rgb(113, 113, 113);

}




/* MEDIA QUERIES */

@media (max-width: 768px) {

  .containerbox {

    padding: 20px;

  }



  .section-title {

    font-size: 2rem;

  }



  .footer {

    flex-direction: column;

    align-items: center;

  }



  .footer > div {

    margin-bottom: 30px;

  }

}



@media (max-width: 576px) {

  .nav-top-contact {

    font-size: 12px;

  }



  .container2 {

    padding: 20px 4%;

  }



  .circular-image {

    width: 140px;

    height: 140px;

  }

}



