/* Base reset */
* {
  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 Section */
.hero {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 20px 0;
}

/* Logo Container */
.hea {
  width: 400px;
  position: absolute;
  top: 40px;
  left: 100px;
  z-index: 1000;
  padding: 10px;
}

.logo-img {
  width: 250px !important;   /* Increase the width */
  height: auto !important;   /* Keep aspect ratio */
  max-width: none !important;
  object-fit: contain;
}
.no-animation {
  animation: none !important;
  width: 180px;
}

/* Navigation Bar */
nav {
  position: absolute;
  top: 30px;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100px;
  font-weight: 500;
}

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: #0b0b0b;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 8px;
}

nav ul li a.active,
nav ul li:hover a {
  color: #ff005d;
}

/* Cards */
.row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.ab_card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.ab_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ab_card img.about-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ab_card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.ab_card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 14px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  nav {
    position: static;
    justify-content: center;
    margin-top: 20px;
    height: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hea {
    position: static;
    margin: 20px auto;
    width: 250px;
  }

  .hea img {
    width: 100%;
  }
}
/* Social Icons */
.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
  z-index: 9999;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.8;
}

.social-icons a.whatsapp {
  background-color: #25d366;
}
.social-icons a.linkedin {
  background-color: #0077b5;
}
.social-icons a.facebook {
  background-color: #3b5998;
}
.nav-link.active {
  color: red !important;
}
.navbar-nav .nav-link {
  font-size: 1.5rem; /* Increase this value as needed */
}
