#first-section{
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
	align-items: center;
    background-color: #000000; /* CHANGED: #f5f5f5 → #000000 */
}

#intro-animated-text {
    height: 12rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

.first-text-section{
    width: 60%;
}

.image-section{
    display: flex;
	justify-content: center;
	align-items: center;
    width: 45%;
}

.image-section img{
	width: 35rem;
	border-radius: 20px;
	margin: 2rem 0;
    border: 3px solid #FFD700; /* ADDED: Gold border for contrast */
}

.large-Text{
	font-size: 4rem;
	font-family: 'Dosis', sans-serif;
	font-weight: 500;
	margin: 0.5rem auto;
	width: 85%;
	display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    letter-spacing: normal;
    color: #ffffff; /* CHANGED: #000000 → #ffffff */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* ADDED: Better readability */
}

#second-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
    background-color: #000000; /* CHANGED: #ffffff → #000000 */
    gap: 3rem;
    padding: 2rem; /* ADDED: Spacing */
    border-radius: 10px; /* ADDED: Rounded corners */
    border: 1px solid #333333; /* ADDED: Subtle border */
}

.second-section-btn-container{
    margin: 5rem 0;
}

.text-section{ 
    width: 55%;
    margin: 0 1rem;
}

.text-section p{
    margin: 1rem 0;
    color: #ffffff; /* CHANGED: Ensure white text */
}

#third-section {
    margin: 5rem 0;
    background-color: #000000; /* CHANGED: #f5f5f5 → #000000 */
    padding: 2rem 0; /* ADDED: Spacing */
}

.why-us-container{
	display: flex;
	width: 90%;
	flex-wrap: wrap;
	margin: 3rem auto;
	align-content: center;
	justify-content: space-around;
}

.why-us-card{
    background-color: #1a1a1a; /* CHANGED: #ffffff → #1a1a1a (dark grey) */
    padding: 2rem;
	border-radius: 22px;
    width: 25%;
    text-decoration: none;
    border: 1px solid #333333; /* ADDED: Border */
    transition: transform 0.3s ease; /* ADDED: Hover effect */
}

.why-us-card:hover {
    transform: translateY(-5px); /* ADDED: Hover lift */
    border-color: #FFD700; /* ADDED: Gold border on hover */
}

.why-us-card img{
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 2px solid #FFD700; /* ADDED: Gold border */
}

.card-big-text{
	font-size: 2.5rem;
	font-family: 'Roboto', sans-serif;
	color: #ffffff; /* CHANGED: #000000 → #ffffff */
	text-transform: uppercase;
    margin: 1rem 0;
}

#fourth-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
    background-color: #000000; /* ADDED: Black background */
    padding: 2rem; /* ADDED: Spacing */
    border-radius: 10px; /* ADDED: Rounded corners */
}

#fourth-section ul li{
    font-family: 'Roboto', sans-serif;
	margin: 1rem 0;
	font-size: 1.2rem;
    color: #ffffff; /* CHANGED: #000000 → #ffffff */
}

/* ADDED: Ensure all text in sections is white */
#first-section,
#second-section,
#third-section,
#fourth-section,
.text-section,
.first-text-section {
    color: #ffffff !important;
}

/* BUTTONS - KEEP GOLD WITH BLACK TEXT (NO CHANGE) */
.nav-btn, .primary-btn, .btn-primary {
    /* These stay gold/black - no changes needed */
}

@media(max-width:600px){
    #first-section{
        flex-direction: column;
        background-color: #000000; /* Ensure black on mobile */
    }

    .first-text-section {
	    width: 90%;
    }
    
    .btn-container {
        width: 100%;
        margin: 0px;
        flex-wrap: wrap;
    }
    
    .image-section {
        width: 100%;
    }
    
    .primary-btn {
        font-size: 18px;
        padding: 1rem;
    }
    
    .primary-btn-extra-padding {
        padding: 1rem 2rem !important;
    }
    
    .image-section img {
        width: 20rem;
    }
    
    #intro-animated-text {
        height: 10rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        overflow: hidden;
    }
    
    .large-Text {
        font-size: 3rem;
        font-weight: 500;
    	width: 90%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        letter-spacing: normal;
        color: #ffffff !important; /* CHANGED: #000000 → #ffffff */
    }
    
    #second-section{
        flex-direction: column;
        gap: 2rem;
        background-color: #000000; /* Ensure black on mobile */
        padding: 1.5rem;
        margin: 3rem 1rem;
    }
    
    .text-section {
        width: 90%;
    }
    
    .text-section p {
        color: #ffffff !important;
    }
    
    .why-us-container {
        flex-direction: column;
    }
    
    .why-us-card {
        margin: 1.5rem 0;
        width: 85%;
        background-color: #1a1a1a; /* Dark grey on mobile */
    }
    
    .card-big-text {
        color: #ffffff !important; /* Ensure white on mobile */
    }
    
    .big-text {
        font-size: 2rem;
        color: #ffffff !important; /* ADDED: Ensure white */
    }
    
    #fourth-section {
        background-color: #000000; /* Ensure black on mobile */
        margin: 3rem 1rem;
        padding: 1.5rem;
    }
    
    #fourth-section ul li {
        color: #ffffff !important; /* Ensure white on mobile */
    }
}