    /* Custom Styles for Golden Theme */
    .navbar-dark .navbar-nav .nav-link {
      color: #fff !important; /* White */
    }
    .navbar-dark .navbar-nav .nav-link:hover {
      color: #eee !important; /* Lighter White */
    }
    .bg-dark {
      background-color:white !important; /* White */
      color: #0f5756!important; /* Golden */
    }
    .bg-light {
      background-color: #0f5756 !important; /* Golden */
      color: #fff !important; /* White */
    }
    .text-dark {
      color: white !important; /* Golden */
    }
    .fontsize{
      font-size: 20px;
      font-weight: 600;}
  
html{
  scroll-behavior: smooth;
}

.icon-color a {
  color: white;
}
.Article-font p { 
  font-size: 22px;
  line-height: 1.6;
  margin-top: 30px;
  color:rgb(64,64,64);
}


/* header */
.header-anchor a {
  font-size: 14px !important;
  text-decoration: none !important;
  color: white !important;
}
.header-bg{
  background-color: #0f5756 !important;
  padding: 5px 0px !important;
}
/* header ends */

/* Custom Styles */
.carousel-item {
  text-align: center;
}
.client-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.client-name {
  font-weight: bold;
  font-size: 20px;
}
.card-title, .card-text{
  color: black;
}
.nav-link{
  color: #0f5756;
}
.navbar-color{
  background-color:white;
}
.v-height{
  height: 500px !important; 
  width:auto;
}

.navbar{
  position: sticky;
  top: 0px;
  z-index: 999;
}
.sidefix {
  width: 150px;
  height: auto;
  position: fixed;
  z-index: 999;
  right: -70px;
  top: 40%;
}
.card{
  transition: all .5sec;
}
.card:hover{
  transform: scale(1.15);
}
.text-gold{
  color: black;
}
.icon{
  color: #0f5756;
}
.pad-top{
  padding-top: 50px;
}
/* video text overlay */
.overlay-text{
  position: absolute;
  z-index: 1;
  top: 220px;
  right: 160px;
  opacity: 90%;
}
@media(min-width:768px) {
  #top-text{
    color:white;
    font-size: 40px;
    text-align: center;
  }
  .overlay-text{
    position: absolute;
    z-index: 1;
    top: 210px;
    right: 110px;
    opacity: 90%;
    left: 100px;
  }
}
@media(min-width:768px) {
  #top-text{
    color:white;
    font-size: 32px;
    text-align: center;
  }
  .overlay-text{
    position: absolute;
    z-index: 1;
    top: 200px;
    left: 130px;
    opacity: 90%;
  }
}
@media(max-width:400px) {
  #top-text{
    color:white;
    font-size: 14px;
    text-align: center;
  }
  .overlay-text{
    position: absolute;
    z-index: 1;
    top: 190px;
    left: 10px;
    opacity: 90%;
    right: 12px;
  }
}


/* background image navbar */
 #custom-navbar{
  backdrop-filter : blur(10px); /* Apply a blur effect */
 }
    


.custom-footer {
  background-image: url('images/5423403.jpg');
  background-size: cover;
  opacity: .5;
  z-index: 999;
}

/* certificate slider */
.logos-slide img {
  height: 120px;
  width: 120px;
  margin: auto;
  margin: 0 50px;
}
.logos-slide{
  white-space: nowrap;
  display: inline-block;
  animation: 10s slide infinite linear;
}
.logos{
  padding:60px 0px;
  overflow: hidden;
  white-space: nowrap;
}
@keyframes slide{
  from{
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media(max-width:400px)
{
  .logos-slide img {
    height: 80px;
    width: 80px;
    margin: auto;
    margin: 0 50px;
  }
}
/* certficate carousel ends */

.glass-effect{
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

/* @media (max-width:700px){
  #top-text{
    font-size: 12px;
    text-align: center;
  }
} */
.card{
  width: 350px;
  height: 500px;
}
.card-title {
  max-height: 2.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reveal{
transform: translateY(40px);
opacity: 0;
transition: all 2s ease;
}
.gallery-anim{
  transform: translateY(0px);
  opacity: 1;
}
.aside-reveal{
  transform: translateY(0px);
  opacity: 1;
}


/* gallery */

.gallery-container {
  display: flex;
  margin: 100px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 100%;
  justify-content: space-between;
}

.gallery-item {
  width: 400px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}

.gallery-item:hover {
  transform: scale(1.3);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .gallery-item {
      width: calc(50% - 10px);
  }
  .gallery-container {
    display: flex;
    margin: 40px 14px;
  }
  .gallery {
    gap: 30px;
  }
  
}

@media (max-width: 480px) {
  .gallery-item {
      width: calc(100% - 10px);
  }
  .gallery-container {
    display: flex;
    margin: 40px 14px;
  }
  .gallery {
    gap: 30px;
    
  }
}
/* gallery ends */



/* contact us form */

.centered-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.user-form {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 5px;
}
.error {
  color: red;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .user-form {
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .user-form {
      padding: 10px;
  }
}
/* contact us form ends */

/* download product catalogue */

.download-section {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}

.download-section a {
  display: inline-block;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
}

.download-section a:hover {
  background: #0056b3;
}
/* download product catalogue ends */

.submit-button{
  border-radius: 5px;
  padding: 5px 30px;
  background-color: rgb(0, 123, 255);
  color: white;
}
.submit-button:hover{
  background-color: #0056b3;
}