@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body{
    background-color: #fff8ed;
    color: #156669;
    font-family: 'Ubuntu', sans-serif;
    
}
.menu-toggle {
    display: none;
    cursor: pointer;
}
.logo img {
    height: 40px; /* Adjust the height as needed */
}
nav{
    position: sticky;
    top: 0;
    z-index: 1001;
    
}
.navbar {
    background-color: #fff8ed;
    width: 100%;
    /* background-color: rgba(255, 255, 255, 0.7); Transparent white */
    padding: 10px 0;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    z-index: 1000;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar li {
    margin: 0 15px;
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #156669;
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
}

.navbar a:hover {
    color: #88b1b3;
}

.general-section{
    display: flex;
    margin: 100px 100px
}
.cover{
    margin-right:50px
}
.cover img{
    width: 600px;
    border-radius: 20px;
}
.text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left:50px;
}
.text h1{
    font-size: 80px;
    font-weight: normal;
    font-family: 'Playfair Display', serif;
    margin:5px 0;
}
.text p{
    font-size: 18px;
    margin:5px 0;
}
.text a{
    text-decoration: none;
    
}
.text button{
    width: 120px;
    height: 40px;
    margin: 5px 0;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    border: 2px solid black;
    background-color: transparent;
    border-radius: 20px;
}
.text button:hover{
    cursor: pointer;
    border: 2px solid gray;
    color:gray;
    
}
.heading{
    display:flex;
    justify-content: center;
    align-items: center;
    margin:100px;
}
.heading h1{
    font-size: 80px;
    font-family: 'Playfair Display', serif;
}
.para{
    display:flex;
    justify-content: center;
    align-items: center;
    margin:100px;
}
.para p{
    font-size: 22px;
}
.para ul{
    font-size: 22px;
}
.para li{
    margin:0 0 15px 0;
    
}
.carousal-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}
.image-container {
    display: flex;
    justify-content: space-between;
    margin: 0 200px;
}

.image-box {
    text-align: center;
    margin: 0 10px 50px 10px;
    width:200px;
}

.image-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}
.image-box p{
    font-size: 18px;
}
.g-text{
    font-size: 30px;
    margin:0 200px 50px 200px;
}
.g-text button{
    /* width: 120px; */
    /* height: 40px; */
    padding: 5px;
    margin: 5px 0;
    font-size: 30px;
    font-family: 'Ubuntu', sans-serif;
    border: 2px solid black;
    background-color: transparent;
    border-radius: 12px;
}
.g-text button:hover{
    cursor: pointer;
    border: 2px solid gray;
    color:gray;
    
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}