body {
    font-family: 'Bricolage Grotesque', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling issues */
}

/* ❌ Hide CSS from Inspect (Advanced Method) */
html {
    -webkit-user-select: none; /* Disable text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
* {
    -webkit-touch-callout: none; /* Disable right-click on touch */
    -webkit-user-drag: none; /* Disable dragging elements */
}
section {
    padding: 50px 0; /* Adds spacing between sections */
}

/* 🚀 Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* About Section */
#about {
    background: url('about.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    position: relative;
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    align-items: center;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
    padding: 20px;
    gap: 30px;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
}

.about-content {
    flex: 1;
    color: white;
    text-align: left;
    max-width: 600px;
}

.about-image {
    flex: 1;
    max-width: 100%;
    border-radius: 15px;
}
.text-center h2 {
    text-align: center;
    color: white; /* Adjust color as needed */
}

/* Clients Section */
.clients-slider {
    overflow: hidden;
    width: 100%;
    max-width: 1000px; /* Adjust width */
    margin: auto;
    position: relative;
}

.clients-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
}

.client-logo {
    width: auto; /* Adjust size as needed */
    height: 150px; /* Ensure width and height are equal */
    object-fit: cover; /* Ensures the logo fits inside the circle */
    border-radius: 50%; /* Makes the image circular */
    border: 2px solid #ddd; /* Optional: Adds a light border around the logos */
    padding: 10px; /* Adjusts spacing inside the circle */
    background: white; /* Optional: Ensures a white background inside the circle */
}

/* Contact Section */
.uf-contact-form-02 {
    max-width: 900px;
    margin: auto;
}
/* Square Input Fields */
.custom-input {
    border-radius: 0; /* No rounded corners */
    border: 2px solid #ced4da; /* Default border */
    padding: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Glowing Effect on Focus */
.custom-input:focus {
    border-color: #FFB31F !important; /* Change border color */
    box-shadow: 0 0 5px #FFB31F !important; /* Glow effect */
    outline: none; /* Remove default outline */
}
/* Custom Button */
.custom-btn {
    background-color: #FFB31F !important; /* Button background */
    border: none; /* Remove border */
    color: black !important; /* Text color */
    font-weight: bold;
    padding: 12px;
}

/* Button Hover Effect */
.custom-btn:hover {
    background-color: #E69A00 !important; /* Darker shade on hover */
}

@media (min-width: 576px) {
    .uf-contact-form-02 {
        min-height: 100vh;
        align-content: center;
    }
}

.uf-contact-form-02-body {
    border: 2px solid #111;
    position: relative;
    background: #fff8dc;
    padding: 50px;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .uf-contact-form-02-body:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background: #ffb320;
        left: 20px;
        top: -20px;
        z-index: -1;
        border-radius: 10px;
    }
}

.uf-img-contact-form-02 {
    max-width: 100%;
    animation: uf-animation 4s ease-in-out 1s infinite alternate;
    position: relative;
}

.uf-ct-02-text-primary {
    color: #ffb31f;
}

.uf-ct-02-btn-primary {
    background-color: #ffb31f;
    color: #111;
    border: 2px solid #111;
    border-radius: 5px;
    padding: 10px 20px;
}

.uf-ct-02-btn-primary:hover {
    background-color: #111;
    color: #fff;
}

@keyframes uf-animation {
    0% { top: 0px; }
    50% { top: -15px; }
    100% { top: 0px; }
}

.form-control {
    border: 2px solid #111;
    border-radius: 5px;
    padding: 10px;
}

.form-control:focus {
    border-color: #ffb31f;
    box-shadow: 0 0 0 .25rem rgba(255, 179, 31, 0.2);
}


/* Responsive Adjustments */
@media (max-width: 992px) { /* Tablets */
    .client-logo {
        max-height: 90px;
    }
}

@media (max-width: 768px) { /* Mobile */
    .client-logo {
        max-height: 90px;
    }

    .clients-slider {
        max-width: 90%;
    }
}

@media (max-width: 576px) { /* Small Mobile */
    .clients-slider {
        max-width: 100%;
    }
    
    .clients-track {
        gap: 10px;
    }

    .client-logo {
        max-height: 60px;
    }
}



/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
    #hero-video {
        min-height: 80vh;
    }
}

/* 🎥 Services Section Videos */
.service-video {
    width: 100%;
    max-height: 300px;
    border-radius: 10px;
    object-fit: cover;
}
/* About  */
.about-container {
    flex-direction: column;
    text-align: center;
}

.about-content {
    max-width: 100%;
}

.about-image {
    max-width: 90%;
    margin: 20px auto;
    display: block;
}