body {
  scroll-behavior: smooth;
}
 html, body {
       height: 100%;            /* full height page */
     }
    body {
      display: flex;
      flex-direction: column;  /* stack content vertically */
    }

   main {
      flex: 1;                 /* take all available space */
    }
section {
  padding: 80px 0;
}
.navbar {
  background: #212529;
  height: 10vh;
}
.navbar-brand, .nav-link {
  color: #fff !important;
}
.hero {
  background: url('../images/main-bg.png') center/cover no-repeat;
  color: white;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}
footer {
  background: #212529;
  color: #fff;
  padding: 20px 0;
}

/* Equal height for About Us cards */
.about-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

/* Make images consistent */
.about-card img {
  max-height: 180px;
  object-fit: cover;
}

/* Add equal height for row */
#about .row {
  display: flex;
  flex-wrap: wrap;
}
#about .col-md-6 {
  display: flex;
}

/* Expertise Section */
.expertise-card {
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Accordion button style */
.accordion-button {
  background-color: #21252936 !important;
  /* color: #fff !important; */
  font-weight: 600;
  border-radius: 12px 12px 0 0;
}
.accordion-button.collapsed {
  background-color: #f8f9fa;
  color: #333;
}
.accordion-body {
  font-size: 0.95rem;
  color: #555;
}

.logo a svg {
  transition: fill 0.3s ease; /* smooth transition */
}

.logo a:hover svg.bi-linkedin {
  fill: #0A66C2; /* LinkedIn blue */
}

.logo a:hover svg.bi-whatsapp {
  fill: #25D366; /* WhatsApp green */
}

.logo a:hover svg.bi-envelope-fill {
  fill: #0072C6; /* Outlook blue for mail */
}

.logo a:hover svg.bi-facebook {
  fill: #0072C6; /* Outlook blue for mail */
}

.logo a:hover svg.bi-pin-map-fill {
  fill: rgb(175, 15, 15); /* Outlook blue for mail */
}

.accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
  background-color: #4488cd !important; /* LinkedIn blue */
  color: #fff; /* white text for contrast */
}

.bottom-logo a{
  padding-right: 8%;
}

.accordion-button::after {
  display: none;
}

/* Hover effect on accordion headers */
.accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.accordion-button:hover {
  background-color: #0A66C2; /* blue hover */
  color: #fff;
}

/* Overlay dropdown-style panel */
.expertise-item .accordion-collapse {
  display: none;
  z-index: 1050;
  border-radius: 0 0 0.5rem 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show on hover */
.expertise-item:hover .accordion-collapse {
  display: block !important;
  opacity: 1;
}



  .custom-navbar .navbar-toggler {
    border: none;
  }

  .custom-navbar .navbar-toggler-icon {
    filter: invert(1); /* White toggler icon */
  }

  /* Offcanvas Menu */
  .custom-offcanvas {
    background-color: #212529; /* Teal background */
    color: #fff;
  }

  .custom-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .custom-offcanvas .offcanvas-title {
    color: #fff;
  }

  .custom-offcanvas .btn-close {
    filter: invert(1); /* White close button */
  }

  .custom-offcanvas .nav-link {
    color: #fff;
    transition: color 0.3s ease;
  }

  .custom-offcanvas .nav-link:hover {
    color: #66ccff; /* Light blue hover */
  }

  /* Overlay (default is black, here slightly transparent dark gray) */
  .offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
  }
  @media (max-width: 576px) {
  .pb-mobile {
    padding-bottom: 70px; /* adjust value as needed */
  }
  }
  
  .spaced-list li
  {
      margin-bottom : 1%
  }
  
}