/* Topbar Styling */
    .topbar {
      background-color: #1d1d1d;
      color: #ccc;
      font-size: 0.9rem;
      padding: 6px 0;
    }

    .topbar a {
      color: #ccc;
      text-decoration: none;
      margin-right: 15px;
    }

    .topbar a:hover {
      color: #f9cc41;
    }

    /* Navbar Styling */
    .custom-navbar {
      background-color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      z-index: 999;
    }

    .navbar-brand {
      font-weight: 700;
      color: #333;
    }

    .navbar-brand span {
      color: #f9cc41;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #333;
      margin: 0 10px;
    }

    .navbar-nav .nav-link:hover {
      color: #f9cc41;
    }

    .btn-quote {
      background-color: #f9cc41;
      font-weight: 600;
      color: #000;
      padding: 8px 20px;
      border-radius: 4px;
      border: none;
    }

    .btn-quote:hover {
      background-color: #f9cc41;
    }

/* Slider Banner */
     .carousel-item {
      position: relative;
      height: 80vh;
      min-height: 600px;
      overflow: hidden;
    }

    .carousel-item img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .carousel-item::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .carousel-caption {
      z-index: 2;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      text-align: left;
      max-width: 700px;
    }

    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .carousel-caption p {
      font-size: 1.1rem;
      margin: 20px 0;
    }

    .btn-yellow {
      background-color: #f9cc41;
      color: #000;
      font-weight: 600;
      padding: 12px 28px;
      border: none;
      text-transform: uppercase;
    }

    .btn-yellow:hover {
      background-color: #e6b800;
    }

    @media (max-width: 768px) {
      .carousel-caption h1 {
        font-size: 2rem;
      }
    }

    /* Why Choose Us */
    .why-icon {
    color: #e6b800;
    }

/* Counter */

    .counter-section {
    background-image: url('../img/bg-3.jpg'); /* Adjust path */
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    min-height: 400px; /* You can adjust this value */
    display: flex;
    align-items: center;
    }

    .counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: -1;
    }

    .counter-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    padding: 2rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    text-align: center;
    }

    .counter-box:hover {
    transform: translateY(-5px);
    }

    .counter-box .text-warning {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    }

    .counter-box h2 {
    font-size: 2rem;
    font-weight: 700;
    }

    .counter-box p {
    font-size: 1rem;
    color: #eee;
    }

    @media (max-width: 768px) {
    .counter-section {
        min-height: 300px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    }

/* Services */
    .card-img-top {
    transition: transform 0.3s ease;
    }

    .card:hover .card-img-top {
    transform: scale(1.03);
    }

    .card-title {
    font-weight: 600;
    }

/* Testimonial */
    .testimonial-box {
    transition: all 0.3s ease;
    }
    .testimonial-box:hover {
    transform: translateY(-5px);
    }

/* Breadcrumb */
    .breadcrumb-link{
        text-decoration: none;
        color: #242424;
        font-weight: 600;
    }

/* Contact */
    .contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
    }

    .contact .info-item i {
    font-size: 20px;
    color: #f9cc41;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, #f9cc41, transparent 40%);
    }

    .contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    }

    .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    }

    .contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
    }

    @media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
    }

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

    .contact .php-email-form input[type=text]:focus,
    .contact .php-email-form input[type=email]:focus,
    .contact .php-email-form textarea:focus {
    border-color: #f9cc41;
    }

    .contact .php-email-form input[type=text]::placeholder,
    .contact .php-email-form input[type=email]::placeholder,
    .contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

    .contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: #f9cc41;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
    }

    .contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, #f9cc41, transparent 20%);
    }

/* Gallery */
   .gallery-img {
    width: 100%;
    height: 250px; /* or any fixed height you want */
    object-fit: cover;
    border-radius: 6px;
    }

    @media (max-width: 768px) {
    .gallery-img {
    height: 180px;
    }
    }

/* Footer */
    .footer {
    background: url('../img/bg-1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    }

    .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Adjust overlay opacity here */
    z-index: 1;
    }

    .footer .content-wrapper {
    position: relative;
    z-index: 2;
    }

    .footer-link {
    display: block;
    margin-bottom: 8px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .footer-link:hover {
    color: #f9cc41;
    }

    .footer .social-icons a {
    font-size: 1.1rem;
    transition: color 0.3s;
    color: #ddd;
    }

    .footer .social-icons a:hover {
    color: #f9cc41;
    }

    .scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
    }

    .footer-credits{
        color:#f9cc41;
    }
    .footer-credits:hover{
        color:#ddd;
    }
