@import url('https://fonts.googleapis.com/css2?family=Sansita:wght@300;400;500;600;700;800&display=swap');

body{
    font-family: 'Sansita', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}





*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    user-select: none;
}

.flex{display:flex;}
.center{align-items:center;}
.between{justify-content:space-between;}
.mt{padding-top:150px; padding-bottom: 100px;}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background-color: #ffffffee;
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

header .logo{
    font-size: 28px;
    font-weight: 700;
    color:#2c3e50;
}

header ul{
    display:flex;
    gap: 25px;
    align-items:center;
}

header ul li a{
    color:#2c3e50;
    font-weight:500;
    transition: all 0.3s ease;
}

header ul li a:hover{
    color:#ff7f50;
    border-bottom: 2px solid #ff7f50;
}


.pt{
    padding-top: 180px;
}

.left{
    max-width: 50%;
}

.main_h1{
    font-size: 48px;
    font-weight:700;
    color:#2c3e50;
    margin-bottom: 20px;
}

.main_p{
    font-size: 20px;
    margin-bottom: 30px;
    color:#555;
}

.main_btn{
    padding: 12px 25px;
    font-size: 16px;
    border:none;
    border-radius: 10px;
    background: linear-gradient(90deg,#ff7f50,#ffb347);
    color:white;
    cursor:pointer;
    transition: all 0.3s ease;
}

.main_btn:hover{
    transform: translateY(-3px);
    box-shadow:0 8px 20px rgba(255,127,80,0.3);
}


.right img{
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.cards{
    display:flex;
    flex-wrap:wrap;
    gap: 25px;
    justify-content:center;
    margin-top:50px;
    width: 85%;
}

.card{
    background-color:white;
    width: 280px;
    border-radius: 20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover{
    transform: translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.card_img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sec_h1{
    font-size: 20px;
    margin:15px 0;
    color:#2c3e50;
}

.card_btn{
    margin-bottom:20px;
    padding:10px 20px;
    background: #ff7f50;
    color:white;
    border:none;
    border-radius:8px;
    font-weight:500;
    cursor:pointer;
    transition: all 0.3s ease;
}

.card_btn:hover{
    background:#ff9465;
    transform: translateY(-2px);
}


iframe{
    width:100%;
    height:400px;
    border-radius:20px;
    border:none;
    margin:50px 0;
}


footer{
    background-color:#2c3e50;
    color:white;
    padding:40px 0;
    margin-top:50px;
}

footer .foot_p{
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

footer ul li a{
    color:white;
    font-size:16px;
    display:block;
    margin:5px 0;
    transition: all 0.3s ease;
}

footer ul li a:hover{
    color:#ffb347;
}


.btn_img{
    width: 40px;
    height: 40px;
    display: none;
}






 .container2{
    width: 80%;
    margin-left: 200px;
 }





option{
    background-color:#ff9465;
    border-radius: 5px;
    border: none;
}
select{
    background-color: #ffb347;
    border: none;
    width: 100px;
    color: white;
    height: 25px;
    border-radius: 5px;
    font-size: 15px;
}

#close{
    display: none;
}






@media(max-width:768px){
    .container.pt{
        flex-direction: column-reverse;
        text-align:center;
        padding-top:140px;
    }
    .left, .right{
        max-width:100%;
    }
    .main_h1{
        font-size:36px;
    }
    .main_p{
        font-size:18px;
    }
    .right img{
        max-width:90%;
        margin:20px auto;
    }
}

@media(max-width:480px){
    .main_h1{
        font-size:28px;
    }
    .main_p{
        font-size:16px;
    }
    .card{
        width:90%;
        margin:0 auto;
    }
    iframe{
        height:250px;
    }
    header ul{
        flex-direction:column;
        gap:15px;
    }
    .container2{
        flex-direction: column;
        margin-left: 50px;
        text-align: center;
    }
    

    
    .btn_img{
        display: block;
    }

    

#btn_burger{
    border: none;
    border-radius: 5px;
}


#sidebar {
    position: fixed;
    top: 0;
    right: -380px; 
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    transition: right 1s ease;
    z-index: 9999;
}

#sidebar.active {
    right: 0; 
}

#close{
    display: block;
    border: none;
    padding: 14px;
    background-color: transparent;
    font-size: 25px;
    font-weight: 600;
    margin-right: 260px;
}


}
