/* Navbar */
.navbar-nav {
  margin: auto;
}

.nav-link {
  margin: 0 10px;
  font-weight: 500;
}

.navbar-brand img {
  height: 45px;
}

/* Hero Slider */
.hero-slider .carousel-item {
  height: 100vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
}

@media(max-width:768px){
  .hero-content h1{
    font-size: 2rem;
  }
}
/* About Section */
.about-section h6 {
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-tabs .nav-link {
  color: #333;
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
}

.tab-content h3 {
  margin-bottom: 15px;
}

.tab-content p {
  margin-bottom: 20px;
}
.services-section {
  background-color: #f8f9fa;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 40px;
  color: #0d6efd;
}
.projects-section {
  background: #f8f9fa;
}

/* Tabs */
.nav-pills .nav-link {
  color: #000;
  border-radius: 20px;
  margin: 0 5px;
}

.nav-pills .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
}

/* Project Box */
.project-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.project-box:hover img {
  transform: scale(1.1);
}

.project-box:hover .overlay {
  opacity: 1;
}

/* Stagger Effect */
.middle-up {
  transform: translateY(-30px);
}

.project-item:not(.middle-up) {
  transform: translateY(20px);
}

/* Responsive fix */
@media (max-width: 768px) {
  .middle-up,
  .project-item {
    transform: none;
  }
}

.view-project-section {
  background: #f8f9fa;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
}

.pdf-icon {
  font-size: 60px;
  color: #dc3545;
}

.contact-section {
  background: #f8f9fa;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.map iframe {
  border-radius: 10px;
}

/* Input styling */
.form-control {
  border-radius: 8px;
  padding: 10px;
}

button.btn {
  border-radius: 8px;
  padding: 10px;
  font-weight: 500;
}
.footer-section {
  background: #111;
  color: #ccc;
}

.footer-title {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p,
.footer-section li {
  font-size: 14px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #0d6efd;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

/* Bottom text */
.footer-section .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

.card img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}