
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url("bd.jpg") no-repeat center center fixed;
    background-size: cover;
}



}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.70);
    z-index: -1;
}


header {

    	background: transparent;
	font-family: 'Montserrat', Green Fuz;
    	color: #ffd700;
   	 text-align: center;
	text-size: 450
   	 padding: 60px 20px;
}

header h1 {
    font-size: 4em;
    font-weight: 700;
    letter-spacing: 2px;
}

header p {
    font-size: 1.5em;
    color: #ffffff;
}


nav {
    display: flex;
    justify-content: center;
    background: rgba(0,0,0,0.85);
}

nav a {
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.container section {
    background: rgba(20, 20, 20, 0.85);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Sections Styling */
h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffd700;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #eaeaea;
}

/* Services Section */
.services ul, .languages ul {
    list-style-type: none;
    padding: 0;
}

.services li, .languages li {
    margin-bottom: 15px;
    font-size: 1.3em;
    color: #fff;
}


.cta {
    background: rgba(255, 215, 0, 0.1);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin: 50px 0;
    border-radius: 12px;
    border: 2px solid #ffd700;
}

.cta h2 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffd700;
}

.cta p {
    font-size: 1.6em;
    margin-bottom: 25px;
}

.cta a {
    text-decoration: none;
    color: #000;
    background-color: #ffd700;
    padding: 18px 35px;
    font-size: 1.4em;
    border-radius: 7px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta a:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Styling */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1.1em;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.6);
}


#contact {
    background: rgba(30, 30, 30, 0.9);
    padding: 50px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
}

#contact p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #fff;
}


a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}


@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.2em;
    }

    nav a {
        padding: 12px 20px;
        font-size: 1.1em;
    }

    .container {
        padding: 30px;
    }

    .cta h2 {
        font-size: 2.5em;
    }

    .cta p {
        font-size: 1.4em;
    }

    .cta a {
        font-size: 1.2em;
        padding: 15px 30px;
    }

    footer {
        font-size: 1em;
    }
}
