/* Hero */

.boru-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('../images/boru-contracts-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 280px 0 200px;
    text-align: left;
    position: relative;
}

/* Add this fix right below */
@supports (-webkit-touch-callout: none) {
    .boru-hero {
        background-attachment: scroll;
    }
}

.boru-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.boru-hero-content {
    max-width: 600px;
}

.boru-hero-subtitle {
    color: #4ECDC4;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boru-hero h1 {
	color: white;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.boru-hero-description {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.5;
}

.boru-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.boru-btn-primary {
    background: #4ECDC4;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.boru-btn-primary:hover {
    background: #45B7AA;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.boru-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.boru-btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .boru-hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .boru-hero-container {
        padding: 20px;
    }

    .boru-hero h1 {
        font-size: 36px;
    }

    .boru-hero-description {
        font-size: 18px;
    }

    .boru-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .boru-hero h1 {
        font-size: 28px;
    }

    .boru-hero-description {
        font-size: 16px;
    }
}


/* Call to action banner.......*/
 .bannerCall {
            background-color: #31afb4; /* Adjust this color to match the yellow in your image */
            text-align: center;
            padding: 50px 20px;
            position: relative;
	 		margin-top: -20px;
        }

        .bannerCall h2 {
            margin: 0;
            font-size: 28px;
            color: #fff;
		   font-family: 'Roboto', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
        }

       .button-container {
            position: absolute;
            bottom: -20px; /* Adjust this value to control the overlap */
            left: 50%;
            transform: translateX(-50%);
            z-index: 1; /* Ensures the button stays on top of other elements */
        }

         .button-container a {
            display: inline-block;
            background-color: #ffc107; /* Button color */
            color: #fff;
			font-family: 'Roboto', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
            text-decoration: none;
            padding: 15px 28px;
            border-radius: 0px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 16px;
            z-index: 2; /* Ensures the button is clickable */
            transition: background-color 0.3s ease; /* Smooth hover effect to prevent glitching */
        }

        .button-container a:hover {
            background-color: #333; /* Hover color */
        }

/* END Call to action banner.......*/