* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  background-color: #111111e7;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: 100%;
}

/* Smaller screens */
@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 70px;
  }
}

@media (min-width: 768px) {
  .navbar, .container {
    padding: 0 !important;
  }
}

.navbar-brand {
  font-weight: bold;
}

.navbar-nav .nav-link {
  color: #fff;
  position: relative;
  transition: 0.3s;
  font-weight: 400;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f8b739;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

@media (min-width: 768px) {
  .navbar-nav .nav-item + .nav-item {
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
  }

  .navbar-nav .nav-item + .nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px; /* ↓ Decrease this to make it smaller */
    width: 1px;
    background-color: #ffffff;
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  /* Optional: remove bottom border on last item */
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .nav-item {
    margin-top: 10px; /* You can adjust this value */
  }
}

.video-banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Full screen height */
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the video fill container without distortion */
  z-index: 0;
}

/* Optional Dark Overlay for Text Contrast */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* Text Container */
.video-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  background: rgba(24, 25, 25, 0.8);
  padding: 20px 30px;
  border-radius: 5px;
  max-width: 90%;
  z-index: 2;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.quote {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 0;
}

.video-text .btn {
  font-size: 1rem;
  border-radius: 30px;
}

/* Animation */
.animate-text {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .company-name {
    font-size: 1.8rem;
  }

  .quote {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .video-text {
    left: 4%;
    padding: 15px 20px;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .quote {
    font-size: 0.95rem;
  }

  .video-text .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

.about-section h2 {
  font-weight: 600;
  color: #30475e;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-section h2 {
  color: #30475e;
  font-size: 2.2rem;
}

.services-section .card-title {
  font-weight: 600;
  color: #222831;
}

.services-section .card-text {
  font-size: 0.95rem;
  color: #555;
}

.services-section i {
  color: #f8b739;
}

.services-section h2 {
  color: #30475e;
  font-size: 2.2rem;
}

.services-section .card-title {
  font-weight: 600;
  color: #222831;
}

.services-section .card-text {
  font-size: 0.95rem;
  color: #555;
}

.services-section i {
  color: #f8b739;
}

.projects-section h2 {
  color: #30475e;
  font-size: 2.2rem;
}

.project-card img {
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.project-card:hover img {
  transform: scale(1.05);
}

.why-choose-us-section {
  background: #f9f9f9;
}

.feature-card {
  background: #fff;
  border-left: 5px solid #f8b739;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #f8b739;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-circle i {
  color: #fff;
  font-size: 24px;
}

 .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
  }

  .testimonial-card:hover {
    transform: scale(1.02);
  }

  .testimonial-text {
    font-style: italic;
    color: #555;
    min-height: 150px;
  }

  .testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
    color: #333;
  }

  .star-rating {
    color: #fbbf24;
    font-size: 1.2rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 10px;
  }

    .project-card img {
    height: 250px; /* Set desired uniform height */
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }

 .symbol-bar {
    display: inline-block;
    width: 4px;
    height: 16px;
    background-color: #0d6efd; /* Bootstrap primary */
    vertical-align: middle;
  }
   
  .project-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 12px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.project-card:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.test-bg{
    background-color: #f0bf5e53;
}

.btncolor{
    color: #000;
}

 .masonry-gallery {
    column-count: 4;
    column-gap: 1rem;
  }

  @media (max-width: 992px) {
    .masonry-gallery {
      column-count: 2;
    }
  }

  @media (max-width: 576px) {
    .masonry-gallery {
      column-count: 1;
    }
  }

  .masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
  }

  .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .image-box img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
  }

  .image-box:hover img {
    transform: scale(1.05);
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 10px;
    text-align: center;
  }

  .overlay h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }

.contact-info-card {
  background: linear-gradient(135deg, #f9fafb, #e0e7ff);
  transition: all 0.3s ease-in-out;
}

.contact-info-card:hover {
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.2);
}
/* Icon styling */
.icon-box {
  width: 60px;
  height: 60px;
  background-color: #4f46e5;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Make all cards same height */
.service-card-box {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .service-card-box {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 992px) {
  .service-card-box {
    flex: 0 0 calc(20% - 1rem); /* 5 per row */
    max-width: calc(20% - 1rem);
  }
}

/* Make all .service-card stretch evenly */
.service-card {
  background: white;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s ease;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 70px;
  right: 5px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
}

  .map-section:hover .ratio {
    transform: scale(1.01);
    transition: all 0.3s ease-in-out;
  }


  .branches-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;

}

.branch-card {
  background: #fff;
  padding: 25px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #f17ae2;
  box-sizing: border-box;
}

.branch-card .icon {
  font-size: 30px;
  color: red;
  text-align: center;
  margin-bottom: 10px;
}

.branch-card h2 {
  text-align: center;
  margin: 10px 0;
  font-size: 24px;
}

.branch-card p {
  text-align: center;
  margin: 5px 0;
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .branch-card {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .branch-card {
    width: 100%;
    margin: 0 auto;
  }

  .branches-container {
    gap: 15px;
    padding: 10px;
  }

  .branch-card h2 {
    font-size: 20px;
  }

  .branch-card p {
    font-size: 14px;
  }
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  /* Adjust as needed */
}

.icon-red {
  background-color: red;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 5px;
  text-align: center;
}

@media (max-width: 320px) {
  .foot {
    word-break: break-all;
  }
}

.text-orange {
  color: #ff6600; /* or your preferred orange shade */
}

.typewriter {
  width: fit-content;
  margin: 0 auto;
  color: #060606;
  font-size: 3rem;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  animation: typing 2.5s steps(12), blink 0.7s step-end infinite;
}

/* Typing animation */
@keyframes typing {
  from { width: 0; }
  to { width: 13ch; }
}

/* Cursor blink */
@keyframes blink {
  50% { border-color: transparent; }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .typewriter {
    font-size: 2rem;
    animation: typing 2.5s steps(12), blink 0.6s step-end infinite;
  }
}

@media (max-width: 480px) {
  .typewriter {
    font-size: 1.6rem;
    animation: typing 2.5s steps(12), blink 0.6s step-end infinite;
  }
}

.music-strip {
  background: #1e1e2f;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: musicSlide 12s linear infinite;
  animation-play-state: running;
}

.music-strip:hover .scrolling-text {
  animation-play-state: paused;
}

@keyframes musicSlide {
  from { transform: translateX(0%); }
  to   { transform: translateX(-100%); }
}

