 /* Page Banner Section */
 #page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    margin-top: 85px;
    padding-top: 30px;
    color: #fff;
}

#page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 87, 136, 0.8);
    /* Overlay with 80% opacity */
}

#page-banner .container {
    position: relative;
    z-index: 1;
}

#page-banner h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

#page-banner .breadcrumb {
    background: transparent;
    /* display: inline-block; */
    padding: 8px 15px;
    border-radius: 5px;
}

#page-banner .breadcrumb-item a {
    color: #f8f9fa;
    text-decoration: none;
}

#page-banner .breadcrumb-item.active {
    color: #ffc107;
    /* Highlight active breadcrumb */
}

#page-banner .breadcrumb-item.active:hover {
    color: #5452e1;
    /* Highlight active breadcrumb */
}

#page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* Portfolio Section */
#portfolio {
padding: 50px 0;
background-color: #f8f9fa;
text-align: center;
}

#portfolio .container {
display: flex;
flex-direction: column;
align-items: center;
}

/* Section Header */
header {
margin-bottom: 30px;
}

header h2 {
font-size: 32px;
font-weight: bold;
color: #333;
}

/* Enquiry Form Container */
.enquiry-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 30px;
border-radius: 10px;
max-width: 900px;
margin: auto;
}

/* Enquiry Image */
.enquiry-image {
width: 100%;
max-width: 400px;
text-align: center;
}

.enquiry-image h3 {
font-size: 22px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}

.enquiry-image p {
font-size: 16px;
color: #666;
margin-top: 15px;
}

/* YouTube Video Embed */
.youtube-container {
display: flex;
justify-content: center;
margin-top: 15px;
}

.youtube-container iframe {
width: 100%;
max-width: 560px;
height: 315px;
border: none;
border-radius: 10px;
}

/* Enquiry Form Styling */
.enquiry-form {
width: 100%;
max-width: 400px;
text-align: left;
padding: 20px;
}

.enquiry-form h2 {
font-size: 28px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
text-align: center;
}

.enquiry-form p {
font-size: 16px;
color: #666;
text-align: center;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 1px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.input-group i {
    color: #007bff;
    font-size: 18px;
    padding: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 8px;
}

.input-group textarea {
    resize: none;
}


.btn {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.btn:hover {
    background: #0056b3;
}


/* Submit Button */
.enquiry-form .btn {
width: 100%;
padding: 12px;
background: #007bff;
color: #fff;
font-size: 16px;
font-weight: bold;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s ease-in-out;
}

.enquiry-form .btn:hover {
background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
.enquiry-container {
    flex-direction: column;
    text-align: center;
}

.enquiry-image {
    max-width: 100%;
}

.enquiry-image img {
    max-width: 250px;
}
}
.carousel-container {
width: 100%;
overflow: hidden;
display: flex;
justify-content: center;
background: #f8f8f8;
padding: 20px 0;
}

.carousel-track {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
white-space: nowrap;
padding: 50px;
}

.carousel-track img {
width: 150px; /* Adjust as needed */
height: auto;
scroll-snap-align: center;
border-radius: 10px;
cursor: grab;
user-select: none;
transition: transform 0.3s ease;
}

.carousel-track img:active {
cursor: grabbing;
transform: scale(0.95);
}

/* Hide scrollbar */
.carousel-track::-webkit-scrollbar {
display: none;
}
