/* PAGE BANNER SECTION */
.page-banner {
    background-color: #081c22; /* Very dark navy/teal as seen in the image */
    padding: 100px 0;
    width: 100%;
}

.page-banner .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.banner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE: TITLE */
.page-title h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* RIGHT SIDE: BREADCRUMBS */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #888; /* Muted color for the text */
}

.breadcrumb-nav a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: #f39b00; /* Your brand orange on hover */
}

.breadcrumb-nav span.active {
    color: #888; /* Keeps the current page color muted as per image */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .page-banner {
        padding: 40px 0;
    }

    .page-title h1 {
        font-size: 28px;
    }
}





/* SPLIT ABOUT SECTION */
.about-us-split {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.split-image-container {
    width: 100%;
    height: 600px; /* Adjust height as needed */
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the area without distortion */
    display: block;
}

.split-text-content {
    padding: 60px 80px; /* Generous padding for a clean look */
}

.split-title {
    font-size: 42px;
    font-weight: 700;
    color: #b1311a; /* Matching the reddish-brown in your screenshot */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-underline {
    width: 50px;
    height: 3px;
    background-color: #001f2d; /* Dark blue accent */
    margin-bottom: 30px;
}

.split-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .split-text-content {
        padding: 40px 30px;
    }
    
    .split-image-container {
        height: 400px;
    }
    
    .split-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    /* Image will stack on top of text on mobile */
    .split-image-container {
        height: 300px;
    }
}






























/* REACH US SECTION */
.reach-us-section {
    padding: 80px 20px;
    background-color: #fff;
}

.reach-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

/* FORM STYLING */
.contact-form .form-control, 
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 12px 15px;
    font-size: 15px;
    color: #666;
    background-color: #fcfcfc;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #f39b00;
}

/* THE ORANGE BUTTON */
.send-btn {
    background-color: #f0ad4e; /* The specific sandy orange color */
    color: #fff;
    border: none;
    padding: 12px 50px;
    border-radius: 30px; /* Pill shape */
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.send-btn span {
    font-size: 14px;
}

.send-btn:hover {
    background-color: #e69900;
    transform: translateY(-2px);
}

/* CONTACT INFO STYLING */
.contact-info-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

.contact-info-box p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #444;
}

.contact-info-box a {
    color: #666;
    text-decoration: none;
}

.contact-info-box a:hover {
    color: #f39b00;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-info-box {
        text-align: center;
        margin-top: 40px;
    }
    .ps-md-5 {
        padding-left: 0 !important;
    }
}