* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: grey;
}

.hero img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: zoom-in 3s linear infinite;
}

.no-animation {
  animation: none !important;
  width: 180px;
}
/*.hea {
  width: 400px;
  position: absolute;
  top: 40px;
  left: 100px;
  z-index: 1000;
  padding: 10px;
}

.logo-img {
  width: 180px;
  height: auto;
  max-width: 100%;
  animation: none !important; /* Disable any unwanted animations */

.logo-img {
  width: 250px !important;   /* Increase the width */
  height: auto !important;   /* Keep aspect ratio */
  max-width: none !important;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    align-items: end !important;
  }

  .navbar-nav {
    align-items: end !important;
    text-align: right;
    margin-left: auto;
  }

  .navbar-nav .nav-link {
    text-align: right;
  }
}



.img-fluid{
  width: 180px;
  height: auto;
  display: block;
  max-width: 100px;
}


@media (max-width: 768px) {
  .logo-img {
    margin: 0 auto;
  }
}




@keyframes zoom-in {
  100% {
    width: 120%;
  }
}

.content {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translateY(100px);
  animation: textup 12s linear infinite;
}

@keyframes textup {
  10% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}

.content1 { animation-delay: 0s; }
.content2 { animation-delay: 3s; }
.content3 { animation-delay: 6s; }
.content4 { animation-delay: 9s; }

h1, h2, h3 {
  color: #eaeaea;
}

h1 {
  font-weight: 500;
  margin: 10px 0;
}

h2 {
  font-weight: 400;
  margin-bottom: 10px;
}

h3 {
  font-weight: 300;
  margin: 20px 0 60px;
}

hr.thick {
  height: 2px;
  background-color: #eaeaea;
  border: none;
}

.slide1 { animation: slide1 12s linear infinite; }
.slide2 { animation: slide2 12s linear infinite; }
.slide3 { animation: slide3 12s linear infinite; }
.slide4 { animation: slide4 12s linear infinite; }

@keyframes slide1 {
  0%, 100% { visibility: visible; }
  25%, 50%, 75% { visibility: hidden; }
}

@keyframes slide2 {
  0%, 25%, 75%, 100% { visibility: hidden; }
  50% { visibility: visible; }
}

@keyframes slide3 {
  0%, 50%, 100% { visibility: hidden; }
  75% { visibility: visible; }
}

@keyframes slide4 {
  0%, 75% { visibility: hidden; }
  100% { visibility: visible; }
}

/*.main-nav {
  position: absolute;
  top: 20px;
  right: 5%;
  z-index: 10;
}*/

nav {
  position: absolute;
  top: 30px;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100px;
  font-weight: 500;
}
/*.main-nav ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
}*/

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li {
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav ul li:hover {
  transform: scale(1.2);
}
nav ul li a {
  color: #fcfafa;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 8px;
}
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    right: 10px;
    top: 80px;
  }

/*.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s, transform 0.3s;
}*/

/*.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #ff005d;
  transform: scale(1.1);
}*/

nav ul li a.active,
nav ul li:hover a {
  color: #ff005d;
}

.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  padding: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icons a.whatsapp { background-color: #25d366; }
.social-icons a.linkedin { background-color: #0077b5; }
.social-icons a.facebook { background-color: #3b5998; }

.social-icons a:hover {
  opacity: 0.8;
}

footer.footer {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 1050;
}

footer.footer a {
  color: #ffffff;
  transition: color 0.3s ease;
}

footer.footer a:hover {
  color: #adb5bd;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    top: 20%;
    left: 5%;
    width: 90%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    right: 10px;
    top: 80px;
  }

  .hea img {
    width: 150px;
  }

  h1 { font-size: 24px; }
  h2 { font-size: 18px; }
  h3 { font-size: 14px; }
}
header.container-fluid {
  background-color: #000; /* or dark shade */
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1030;
}

header .logo-img {
  width: 150px;
  height: auto;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.navbar-nav .nav-item {
  margin-left: 20px;
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link.active {
  color: red !important;
}
.navbar-nav .nav-link {
  font-size: 1.5rem; /* Increase this value as needed */
}
@media (max-width: 768px) {
  .navbar-nav {
    padding: 0 !important;
    margin: 0 !important;
  }

  .navbar-nav .nav-item {
    margin: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 2px 4px !important; /* Adjust to your preference */
  }
}

.navbar-collapse {
  padding-top: 0.5rem;
  margin-top: 0;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
@media (max-width: 768px) {
  .navbar-toggler {
    margin-right: 15px; /* adjust as needed */
  }
}
@media (max-width: 768px) {
  .navbar-toggler {
    margin-right: 15px; /* move toggle button right */
  }

  .navbar-collapse {
    text-align: right; /* right-align dropdown content */
    padding-right: 15px; /* optional spacing */
  }
}



