:root{
    --maincolor: #0f766e;
    --secondarycolor:#1e293b;
}
*, *:before, *:after {
    box-sizing: border-box;
    transition:all .4s;
    text-decoration: none;
    list-style:none
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f7f5ef;
    color: var(--secondarycolor);

}

p{
        line-height: 1.6
}
img {
    max-width: 100%;
    display: block;
    border-radius: 12px
}

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

/* HEADER */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position:sticky;
    top:0;
    left:0;
    right:0
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px
}

.logo img{
    display:block;
    width:10%
}
@media(max-width:768px){
    .logo img{
        width:30%
    }
}

nav {
    display: flex;
    gap: 25px
}

nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500
}


nav a:hover {
    color:var(--maincolor)
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 70px 0;
    align-items: center
}

.hero h1 {
    font-size: 42px;
    margin: 15px 0 20px
}

.hero p {
    margin-bottom: 25px;
    color: #475569
}

.badge {
    background: #ccfbf1;
    color: var(--maincolor);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block
}

.hero-btn{
    display: flex;
    align-items: center;
    gap:5px
}
.hero-btn button, .hero-btn a{
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px
}
@media(max-width:768px){
    
.hero-btn button, .hero-btn a{
        font-size: .7em;   
}
}
.btn-primary{
    background: var(--maincolor);
    color: white
}

.btn-primary:hover{
    background: #115e59
}

.btn-outline {
    border: 1px solid #cbd5f5;
    background: white
}

.btn-outline:hover {
    border-color: #0f766e;
    color: #0f766e
}

.section {
    padding: 80px 0
}

.section h2 {
    margin-bottom: 10px
}

.section p {
    color: #64748b
}

/* SERVICES */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 10px
}

.card {
    background: white;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.25s;
    color:black;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06)
}

.card img {
    width:100%;
    height: 170px;
    object-fit: cover;
    margin-bottom: 15px
}

.card h3 {
    margin: 10px 0
}

.card p {
    font-size: 14px;
    color: #475569
}

/* JOURNEY */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 5px
}

.step {
    background: #f1f5f9;
    padding: 22px;
    border-radius: 12px;
    font-weight: 500;
    font-size: .8em;
}
@media(max-width:768px){
    .step{
        display:-webkit-box;
        -webkit-box-direction: horizontal;
        line-clamp: 1;
        text-overflow: ellipsis;
    }
}
/* CONTACT */
.contact-section {
    background: #e8f3f2;
    padding: 20px 20px
}

.contact-box {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    max-width: 700px;
    margin: auto
}

input, select,
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px
}
.contact-box button{
    padding:1em 2em;
    border:none;
    outline: none;
}
textarea {
    min-height: 120px
}

form {
    margin-top: 25px
}

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px
}

/* MOBILE */
@media (max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0
    }

    .hero h1 {
        font-size: 34px
    }

}

@media (max-width:700px) {

    .menu-toggle {
        display: block
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #eee;
        display: none;
    }

    nav a {
        padding: 10px 0
    }

    nav.active {
        display: flex
    }

    .header-inner {
        position: relative
    }

    .section {
        padding: 60px 0
    }

    .hero {
        padding: 40px 0
    }
    .container{
        padding:1em
    }
}
.banner2-wrapper{
		height:50vh;
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		background:rgba(0,0,0,.3);
		color:white
}
.banner2-wrapper h1, .banner2-wrapper h4{
	line-height:1
}
.banner2-wrapper h1{
		font-size:4em
}