* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	z-index: 4;
}

h3 {
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.reveal {
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}

.reveal.active {
    opacity:1;
    transform:translateY(0);
}

.background-wrapper {
	position: relative;
    min-height: 100vh;
	background: #121212;
}

.bg {
	position: fixed;
	display: flex;
	min-width: 100%;
	min-height: 100%;
	top: 0px;
	z-index: 0;
	overflow: hidden;
}

.bg img {
	min-width: 100%;
	min-height: 100%;
	overflow: hidden;
	object-position: center;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding: 20px 20px;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(10px);
}

.top-heading {
	text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.main-heading {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.logo {
    text-align: center;
    margin-bottom: 0px;
	position: relative;
	z-index: 2;
}

.logo img {
    max-width: 300px;
    width: 100%;
	overflow: hidden;
}

.content-text {
    text-align: center;
    max-width: 1200px;
    margin: auto;
    opacity: 0.85;
    margin-bottom: 4rem;
}

.content-service-text {
    text-align: left;
    max-width: 1200px;
    margin: auto;
    opacity: 0.85;
    margin-bottom: 4rem;
	color: #ffffff;
}

.content-service-text h1 {
	font-size: 1.7rem;
	font-weight: 800;
	margin-bottom: 2.5rem;
}

.content-service-text h2 {
	font-size: 1.4rem;
	text-decoration: underline;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.content-service-text p {
	margin-bottom: 2rem;
}

.columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
	margin: 100px 25px 25px 25px;
}

.column {
    flex: 1;
    min-width: 300px;
	margin-bottom: 4rem;
}

.service-list {
	text-align: center;
}

.service-list ul {
	list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    margin-bottom: 1rem;
    position: relative;
}


.contact {
	display: flex;
    margin-top: 20px;
    font-weight: 600;
	align-items: center;
	justify-content: center;
}

.profile-box {
    text-align: center;
}

.profile-box img {
	width: 60%;
	margin-bottom: 1rem;
}

.profile-box p {
	font-size: 1.4rem;
}

.warrior-section {
    position: relative;
    text-align: center;
}

.warrior-section img {
    max-width: 360px;
    margin-top: 30px;
}

.speech {
    position: relative;
    background: #f2f2f2;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    max-width: 300px;
    margin: auto;
    font-size: 0.9rem;
}

.speech::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 100px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #f2f2f2 transparent transparent;
}

.icon {
	width: 1.5rem;
	margin-right: 1rem;
}

footer {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

@media(max-width: 900px){
    .columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
	p {
		font-size: 1.0rem;
	}
	.main-heading {
		font-size: 1.4rem;
	}
	.top-heading {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
	.content-service-text h1 {
		font-size: 1.4rem;
	}
	.content-service-text h2 {
		font-size: 1.2rem;
	}
	.logo img {
    max-width: 200px;
    width: 100%;
	}
	.content-subtext img {
    max-width: 200px;
    width: 100%;
	}
    .top-headings {
        font-size: 1.6rem;
    }
}