body {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}


.custom-button-style {
    color: #000;
    border-color: #EB8D29;
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid;
    height: 50px;
}


.custom-button-style:hover {
    background-color: #EB8D29;
    border: none;
    border-color: #EB8D29;
    color: #fff;
}

.w-100 {
    width: 30% !important;
    height: 50px;
}

#location {
    width: 100%;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.video-container {
    width: 100%;
    height: 85vh; /* Using viewport units to adjust height based on screen height */
    overflow: hidden;
    position: relative;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    z-index: 0;
}

.overlay-text {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 90%; /* Newly added style for better mobile viewing */
}


/* Style the h1 and p elements inside the overlay-text if needed */
.overlay-text h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.overlay-text p {
    font-size: 16px;
}

/* Larger Devices */
@media (min-width: 992px) {
    .overlay-text h1 {
        font-size: 36px;
    }
    .overlay-text p {
        font-size: 18px;
    }
}

/* Medium Devices */
@media (min-width: 768px) and (max-width: 991px) {
    .video-container {
        height: 40vh;
    }
    .overlay-text h1 {
        font-size: 30px;
    }
    .overlay-text p {
        font-size: 16px;
    }
}

/* Small Devices */
@media (max-width: 767px) {
    .video-container {
        height: 30vh;
    }
    .overlay-text h1 {
        font-size: 24px;
    }
    .overlay-text p {
        font-size: 14px;
    }
}


#services {
    background-color: #f8f9fa; /* Light gray background for contrast */
}

#services h2 {
    margin-bottom: 30px;
}


.divider-3d {
    height: 10px;
    border: none;
    background-image: linear-gradient(to right, #f0f0f0, #888, #f0f0f0);
}


h2 {
    color: #eb8d29;
    text-transform: uppercase;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #EB8D29;
}

.fab {
    color: #333;          /* Change the color as per your need */
    font-size: 24px;      /* Adjust size as needed */
    transition: 0.3s;    /* Smooth hover effect */
}

.fab:hover {
    color: #EB8D29;       /* Hover color - Bootstrap primary blue in this example */
}


/* Cursor Effect */

.cursor {
    width: 20px;
    height: 20px;
    background-color: #EB8D29; 
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents the custom cursor from interfering with other interactions */
    z-index: 1000; /* Ensure the cursor is above other elements */
  }

  .btn-primary {
    background-color: #EB8D29;
    border: none;
  }

  .btn-primary:hover {
    background-color: #000000;
  }

  #btn-back-to-top {
    background-color: #EB8D29;
    border: none;
  }

  #services-section > div > div:nth-child(2) > div:nth-child(n) > div > div > p {
    font-size: 14px;    
  }



