/* font-family: 'Anek Kannada', sans-serif;
font-family: 'PT Sans Narrow', sans-serif; */
body {
    margin: 0;
    padding: 0;
    background-color: #051623;
}

a {
    text-decoration: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 10%;
    background-color: #051623;
    color: aliceblue;
    text-decoration: none;
    margin-bottom: 0;

    @media (max-width: 500px) {
        padding: 15px 5%;
    }
}

.navbar-logo {
    color: aliceblue;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 600;
}

.navbar-link {
    color: aliceblue;
    font-size: 23px;
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 400;

    @media (max-width: 1200px) {
        font-size: 20px;
    }

    @media (max-width: 900px) {
        font-size: 18px;
    }

    @media (max-width: 700px) {
        font-size: 16px;
    }

    @media (max-width: 500px) {
        font-size: 14px;
    }

    @media (max-width: 400px) {
        font-size: 12px;
    }

    @media (max-width: 350px) {
        font-size: 10px;
    }
}

.navbar-link:hover {
    color: #F79264;
}

.presentation-title {
    text-align: center;
    padding-top: 70px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 9px 0px 11px #F79264;
    font-weight: 700;
    font-size: 65px;

    @media (max-width: 1200px) {
        font-size: 50px;
    }

    @media (max-width: 900px) {
        font-size: 40px;
    }

    @media (max-width: 700px) {
        font-size: 30px;
    }

    @media (max-width: 500px) {
        font-size: 25px;
    }

    @media (max-width: 400px) {
        font-size: 20px;
    }

    @media (max-width: 300px) {
        font-size: 15px;
    }
}

.presentation-paragraph {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: aliceblue;
    border-top: 1px solid #F79264;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 10px; 
    font-size: 24px;
    width: 80%;
    padding: 10px 30px;
    font-family: 'System-ui', sans-serif;
    
    @media (max-width: 1400px) {
        font-size: 18px;
    }

    @media (max-width: 1200px) {
        font-size: 16px; 
    }

    @media (max-width: 900px) {
        font-size: 14px; 
    }

    @media (max-width: 700px) {
        font-size: 12px; 
        width: 500px;
    }

    @media (max-width: 500px) {
        font-size: 10px; 
        padding: 10px 0px;
    }



}


.presentation-bottom{
    position: relative;
    top: 94%;
    width: 100%;
    box-sizing: border-box;
}

.presentation-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F79264;
    color: aliceblue;
    padding: 10px 20px;
    border: none;
    font-size: 30px; /* Decreased font size */
    font-family: 'Anek Kannada', sans-serif;
    margin: 0 auto; /* add this line to center horizontally */
    text-align: center;
    align-items: center;
    font-weight: 500;
    border-radius: 15px;
}

@media (max-width: 1200px) {
    .presentation-button {
        font-size: 20px; /* Decreased font size */
    }
}

@media (max-width: 900px) {
    .presentation-button {
        font-size: 15px; /* Decreased font size */
    }
}

@media (max-width: 700px) {
    .presentation-button {
        font-size: 12px; /* Decreased font size */
    }
}

@media (max-width: 500px) {
    .presentation-button {
        font-size: 10px; 
        padding: 5px 10px;
    }
}

@media (max-width: 310px) {
    .presentation-button {
        font-size: 10px; 
        padding: 2px 4px;
    }
}


.presentation {
    height: 1000px;
    background: linear-gradient(#051623, transparent 80px, transparent calc(90% - 80px), #051623), url("../images/pozaprincipalaeditata.jpg") no-repeat center center/cover;
    width: 100%;
    color: aliceblue;

    @media (max-width: 1200px) {
        height: 800px;
    }

    @media (max-width: 900px) {
        height: 700px;
    }

    @media (max-width: 700px) {
        height: 600px;
    }

    @media (max-width: 500px) {
        height: 500px;
    }
}

.presentation a:before,
.presentation a:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 330px;
    height: 1px;
    background-color: #F79264;
    display: block;
}

@media (max-width: 1200px) {
    .presentation a:before,
    .presentation a:after {
        width: 200px;
    }
}

@media (max-width: 900px) {
    .presentation a:before,
    .presentation a:after {
        width: 150px;
    }
}

@media (max-width: 700px) {
    .presentation a:before,
    .presentation a:after {
        width: 100px;
    }
}

@media (max-width: 500px) {
    .presentation a:before,
    .presentation a:after {
        width: 50px;
    }
}





.presentation a:before {
    left: calc(100% + 30px);
}

@media (max-width: 350px) {
    .presentation a:before {
        left: calc(100% + 10px);
    }
}

.presentation a:after {
    right: calc(100% + 30px);
} 

@media (max-width: 350px) {
    .presentation a:after {
        right: calc(100% + 10px);
    }
}

.separator{
    width: 50%;
}


.service{
    height: 130px;
    display: flex;
    justify-content: space-between;
    font-family: 'Anek Kannada', sans-serif;
    width: 70%;
    margin: 20px auto;
    color: aliceblue;
    background-color: #102b43;
    padding: 65px 0;

    @media (max-width: 650px) {
        padding: 40px 0;
    }

    @media (max-width: 500px) {
        padding: 20px 0;
    }

    @media (max-width: 350px) {
        padding: 10px 0;
    }


}

.service-1{
    margin-top: 40px;

    @media (max-width: 650px) {
        margin-top: 20px;
    }

    @media (max-width: 500px) {
        margin-top: 10px;
    }

    @media (max-width: 350px) {
        margin-top: 5px;
    }
}


.left{
    position: relative;
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin:0;
    width: 50%;
}

.right{
    margin: 0;
    width: 50%;
    display: flex;
    position: relative;
    align-self: center;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.service-title{
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    font-family: 'none';

    @media (max-width: 1200px) {
        font-size: 30px;
    }

    @media (max-width: 900px) {
        font-size: 25px;
    }

    @media (max-width: 700px) {
        font-size: 20px;
    }

    @media (max-width: 500px) {
        font-size: 15px;
    }

    @media (max-width: 400px) {
        font-size: 12px;
    }

    @media (max-width: 350px) {
        font-size: 10px;
    }
}

.service-p{
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 200;
    text-align: center;
    width: 57%;
    margin-top: 20px;

    @media (max-width: 1550px) {
        font-size: 20px;
    }

    @media (max-width: 1200px) {
        font-size: 18px;
    }

    @media (max-width: 900px) {
        font-size: 16px;
    }

    @media (max-width: 700px) {
        font-size: 14px;
    }

    @media (max-width: 500px) {
        font-size: 12px;
    }

    @media (max-width: 400px) {
        font-size: 10px;
    }

    @media (max-width: 350px) {
        font-size: 8px;
    }
}

.service-img{
    height: 500px;
    overflow: hidden;

    @media (max-width: 1200px) {
        height: 400px;
    }

    @media (max-width: 650px) {
        height: 350px;
    }

    @media (max-width: 500px) {
        height: 300px;
    }

    @media (max-width: 350px) {
        height: 250px;
    }

   
}

.service-img-left{
    margin-left:-50px;

    @media (max-width: 400px) {
        margin-left:-70px;
    }
}

.services-paragraph{
    font-size: 28px;
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 400;
    text-align: center;
    width: 70%;
    margin: 30px auto;
    padding: 0;
    color: aliceblue;
    line-height: 1.1;

    @media (max-width: 1200px) {
        font-size: 25px;
    }

    @media (max-width: 900px) {
        font-size: 20px;
    }

    @media (max-width: 700px) {
        font-size: 18px;
    }

    @media (max-width: 500px) {
        font-size: 15px;
    }

    @media (max-width: 400px) {
        font-size: 12px;
    }

    @media (max-width: 350px) {
        font-size: 10px;
    }

}

.concept{
    width: 100%;
    background: linear-gradient(to bottom, #051623 30%, transparent 100%);
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
    margin:0 auto;
}

.drawing-text{
    font-size: 40px;
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;

    @media (max-width: 1200px) {
        font-size: 30px;
    }

    @media (max-width: 900px) {
        font-size: 25px;
    }

    @media (max-width: 700px) {
        font-size: 20px;
    }

}

.drawing{
    background: url("../images/schemephoto.png") no-repeat center center/cover;
    height: 600px;
}

.decenoi-title{
    position: relative;
    color:#F79264;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 10px;
    font-size: clamp(2rem, 3vw, 3rem);
    background: linear-gradient(to top, #051623 20%, transparent 60%);
    font-family:'Montserrat', sans-serif;
    font-weight: 500;

    @media (max-width: 500px) {
        font-size: 30px;
    }

    @media (max-width: 400px) {
        font-size: 25px;
    }


    }

.decenoi-subtitle{
    color:aliceblue;
    text-align: center;
    font-size: clamp(1rem, 2vw, 2rem);
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    margin: auto;
    width: 40%;
    margin-top:-20px;
}

.decenoi-icons-container{
    top: -100px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 20px;
    margin: auto;
    justify-items:center;
}

.decenoi-icon-div{
    
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}



.decenoi-icon{
    height:200px;
    width: 200px;
    padding: 0;
    margin: auto;
    overflow: hidden;
    border-radius: 100%;
}
.decenoi-icon-text{
    color: aliceblue;
    text-align: center;
    font-size: clamp(0.7rem, 1.5vw, 1.1rem);
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 200;
    margin: auto;
    width: 80%;
}

.projects-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* default to 1 column */
    justify-items: center;
}

.project{
    color: aliceblue;
    text-align: center;
}

.project-title{
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: auto;
    width: 80%;
}

.project-text{
    width: 65%;
    margin: auto;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 200;
    margin-bottom: 10px;
}

@media (max-width: 1100px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr); /* default to 1 column */
    }
    .grid-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 780px) {
    .projects-container {
        grid-template-columns: repeat(1, 1fr); /* default to 1 column */
    }
    .grid-container{
        grid-template-columns: repeat(1, 1fr);
    }
}


.project-img{
    margin: auto;
    height: 375px;
    width: 275px;
    position: relative;
    z-index: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}
   


.project-img::after {
    z-index: 2;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(5,22,35,0) 0%, rgba(5,22,35,1) 100%);
}


.maimulte-div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

.maimulte-button{
    background-color: #F79264;
    color: aliceblue;
    padding: 15px 60px 15px 60px;
    border: none;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    align-items: center;
    border-radius: 15px;
    font-family:'Montserrat', sans-serif;
    align-items: center;
    font-size: clamp(1rem, 1.7vw, 1.4rem);
    width: 30%;

    @media (max-width: 900px) {
        padding: 10px 40px 10px 40px;
        width: 40%;
    }

    @media (max-width: 700px) {
        padding: 5px 20px 5px 20px;
        width: 50%;
    }

    @media (max-width: 500px) {
        padding: 5px 10px 5px 10px;
        width: 90%;
    }

    @media (max-width: 450px) {
        padding: 5px 5px 5px 5px;
        width: 110%;
    }


}

.line{
    height: 1px;
    background-color: #F79264;
}

#leftline{
    margin-left: clamp(0px, 11vw, 130%);
    width: 100%;
}

#rightline{
    margin-right: clamp(0px, 11vw, 130%);
    width: 100%;
}

.info-box{
    margin-top:50px;
}

.grid-container{
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    padding: 20px 250px;
    background-color: #F79264;
    flex-direction: row;

    @media (max-width: 1500px) {
        padding: 20px 150px;
    }

    @media (max-width: 1200px) {
        padding: 20px 100px;
    }

    @media (max-width: 900px) {
        padding: 20px 50px;
    }

    @media (max-width: 700px) {
        padding: 20px 20px;
    }

    @media (max-width: 500px) {
        padding: 20px 10px;
    }
}



.grid-item{
    height: 100%;
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


@media (max-width: 700px) {
    /* Add your styles for small devices here */
    .service {
        width: 90%;
    }

    .services-paragraph{
        width: 90%;
    }

    .presentation-paragraph{
        width: 90%;
    }
    .separator{
        width: 30%;
    }
    #rightline,#leftline{
        margin: 0;
    }

}

.footer-icon{
    height: 125px;
    width: 125px;
    padding: 0;
    margin: 0;
    overflow: hidden;

    @media (max-width: 600px) {
        height: 100px;
        width: 100px;
    }

    @media (max-width: 400px) {
        height: 80px;
        width: 80px;
    }

    @media (max-width: 350px) {
        height: 70px;
        width: 70px;
    }
}

.footer-text{
    color: aliceblue;
    text-align: center;
    font-size: 24px;
    font-family: 'Anek Kannada', sans-serif;
    font-weight: 700;
    margin: auto;
    margin-top: -30px;
}

@media (max-width: 900px) {
    .footer-text {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .footer-text {
        font-size: 10px;
        margin-top: -10px;
    }
}

@media (max-width: 400px) {
    .footer-text {
        margin-top: 0;
    }
}

@media (max-width: 350px) {
    .footer-text {
        margin-top: 10px;
    }
}

/* PROIECTE */

.project-img{
    height: 433px;
    width: 318px;

    @media (max-width: 500px) {
        height: 300px;
        width: 220px;
    }
}


.link-proiecte{
    color: aliceblue;
    text-decoration: none;
}

.proiecte-div-titlu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    color: #A7CBEF;
    margin-left: 30px;
    margin-right: 30px;
}

.proiecte-titlu{
    font-size: 60px;
    font-weight: 500;
    margin-left: 30px;
    margin-right: 30px;

    @media (max-width: 1200px) {
        font-size: 50px;
    }

    @media (max-width: 900px) {
        font-size: 40px;
    }

    @media (max-width: 700px) {
        font-size: 30px;
    }

    @media (max-width: 500px) {
        font-size: 25px;
    }

    @media (max-width: 400px) {
        font-size: 20px;
    }

    @media (max-width: 350px) {
        font-size: 15px;
    }
}

#stanga{
    margin-left: clamp(0px, 11vw, 130%);
    width: 100%;
    color: #A7CBEF;
    background-color: #A7CBEF;
}

#dreapta{
    margin-right: clamp(0px, 11vw, 130%);
    width: 100%;
    color: #A7CBEF;
    background-color: #A7CBEF;
}

@media (max-width: 470px){
    .decenoi-icon-text{
        width: 50%;
    }
    .decenoi-icons-container{
        grid-gap:5px;
        grid-template-columns: repeat(1, 1fr);
}
.grid-container-proiecte{
    grid-template-columns: repeat(1, 1fr);
    background-color: #051623;
}
}

/* Contact */

.contact-box{
	max-width: 100%;
	display: grid;
    border-radius: 10px;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #f0f0f0;
    transition: 0.5s;
    margin-inline: 12.5%;

    @media (max-width: 1100px) {
        display: flex;
        flex-direction: column-reverse;
    }
}

.left2{
	padding: 2px 45px;
    height: 100%;
}

.right2{
	padding: 60px 40px;

    @media (max-width: 1100px) {
        padding: 60px 20px;
    }

    @media (max-width: 900px) {
        padding: 60px 10px;
    }


}

.form-h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

.form-h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #25a888;
}

.field{
    height: 60px;
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	padding: 0.5rem 1rem;
	font-size: 20px;
	margin-bottom: 22px;
	transition: .3s;

    @media (max-width: 1200px) {
        padding: 0.5rem 0.5rem;
        height: 50px;
    }

    @media (max-width: 1100px) {
        padding: 0.5rem 0.5rem;
        height: 40px;
    }

    @media (max-width: 900px) {
        padding: 0.5rem 0.5rem;
        height: 30px;

    }

    @media (max-width: 700px) {
        padding: 0.5rem 0.5rem;
        height: 25px;
    }

    @media (max-width: 500px) {
        padding: 0.5rem 0.5rem;
        height: 20px;
        width:100%;
    }

    @media (max-width: 400px) {
        padding: 0.5rem 0.5rem;
        height: 15px;
    }

    @media (max-width: 350px) {
        padding: 0.5rem 0.5rem;
        height: 10px;
    }


}


textarea{
	min-height: 150px;
}

.form-button{
	width: 30%;
    border-radius: 30px;
	padding: 0.5rem 0.5rem;
	background-color: #F79264;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
    font-size: 30px;
    line-height:1;
     
    @media (max-width: 1200px) {
        padding: 0.5rem 0.5rem;
        height: 50px;
        font-size: 20px;
    }

    @media (max-width: 1100px) {
        padding: 0.5rem 0.5rem;
        height: 40px;
        font-size: 15px;
    }

    @media (max-width: 900px) {
        padding: 0.5rem 0.5rem;
        height: 30px;
        font-size: 15px;
    }

    @media (max-width: 700px) {
        padding: 0.5rem 0.5rem;
        height: 25px;
        font-size: 15px;
    }

   
}


@media screen and (max-width: 1100px){
	.left2{
		height: auto;
	}
    .left2{
        padding:0;
        margin: auto;
    }
}

@media screen and (max-width: 500px){
  .utile-poza{
    height: 100px;
    width: 100px;
  }
}
.lines-h2{
    height: 3px;
    background-color: rgba(53, 34, 177, 0.469);
    width: 20%;
    display: inline-block;
    vertical-align:middle;
    margin:3%;
    border-radius: 10px;
}
.contact-left-container{
    display: flex;
    align-items: center;
    margin-bottom: 8%;
    justify-content: space-between;
}

.utile{
    display: flex;
    flex-direction:row; /* Reverse the order of the elements */
    align-items: center;
}

.utile-titlu{
    color:aliceblue;
    text-decoration: none;
    text-align: center;
    margin: auto;
    font-weight: 700;
    font-size: 30px;

    @media (max-width: 1700px) {
        font-size: 22px;
    }

    @media (max-width: 1600px) {
        font-size: 21px;
    }

    @media (max-width: 1500px) {
        font-size: 19px;
    }

    @media (max-width: 1400px) {
        font-size: 18px;
    }

    @media (max-width: 1300px) {
        font-size: 17px;
    }

    @media (max-width: 1200px) {
        font-size: 16px;
    }

    @media (max-width: 1100px) {
        font-size: 25px;
    }

    @media (max-width: 700px) {
        font-size: 20px;
    }

    @media (max-width: 560px) {
        font-size: 15px;
    }

    @media (max-width: 460px) {
        font-size: 12px;
    }

    @media (max-width: 400px) {
        font-size: 10px;
    }


}

.utile-poza{
    position: relative;
    height:250px;
    width: 250px;
    overflow:hidden;
    margin:0;
    padding: 0;

    @media (max-width: 1500px) {
        height: 200px;
        width: 200px;
    }

    @media (max-width: 1300px) {
        height: 170px;
        width: 170px;
    }

    @media (max-width: 1200px) {
        height: 150px;
        width: 150px;
    }

    @media (max-width: 1100px) {
        height: 220px;
        width: 220px;
    }

    @media (max-width: 700px) {
        height: 200px;
        width: 200px;
    }

    @media (max-width: 500px) {
        height: 150px;
        width: 150px;
    }

    @media (max-width: 400px) {
        height: 120px;
        width: 120px;
    }

    @media (max-width: 350px) {
        height: 100px;
        width: 100px;
    }

}

#poza-1{
    background: url('../images/contact-03.png') no-repeat center center/cover;
}

#poza-2{
    background: url('../images/contact-01.png') no-repeat center center/cover;
}

#poza-3{
    background: url('../images/contact-02.png') no-repeat center center/cover;
}
