@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
}


.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 33%;
    border-radius: 50%;
    border: 1px solid white;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0px;
    
}

.nav-list{
    width: 70%;
    display: flex;
    align-items: center;
}

.nav-list li{
    list-style: none;
    padding: 23px 20px;
}

.nav-list li a{
    text-decoration: none;
    color: white;
    font-family:  "Ubuntu", sans-serif;
    font-weight: 700;
}

.nav-list li a:hover{
    text-decoration: underline;
    color: gray;
} 

.rightNav{
    width: 30%;
    text-align: right;
    padding-right: 20px;
}

#search{
    padding: 5px;
    font-size: 10px;
    border: 1px solid white;
    border-radius: 9px;
}

.background{
    background:  rgba(0, 0, 0, 0.7) url(bg.jpg);
    background-size: cover;
    background-blend-mode: darken;
}

.firstSection{
    height: 100vh;
}

.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 50%;
    margin: auto;
    height: 80%;
}


.firsthalf{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.secondhalf{
    width: 30%;
}


.secondhalf img{
    border-radius: 50%;
    display: block;
    margin: auto;
    border: 4px solid white;
    width: 70%;
}

.text-big{
    font-size: 40px;
    font-family:  "Ubuntu", sans-serif;
}

.text-small{
    font-size: 20px;
}

.btn{
    padding: 8px 20px;
    margin: 7px 0;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
    color: white;
    margin-right: 5px;
}

.btn-sm{
    padding: 8px 20px;
    margin: 7px 0;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
    color: white;
    margin-right: 5px;
}

.btn:hover{
    background-color: gray;
    transition: transform 0.2s ease-in-out;
    transform: scale(1.1);
}

.section{
    /* height: 500px; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    margin: 40px;
}

.left{
    flex-direction: row-reverse;
    padding-left: 50px;
}

.secleft{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
}

.paras{
    padding: 0px 65px;
}
.thumbnil img{
    width: 250px;
    background-size: cover;
    border: 2px solid black;
    border-radius: 10px;
}

.sectionSubTag{
    margin-top: 10px;
}


.container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;   
    justify-content: center;
    align-items: center;
  }
  
  .contact-card {
    max-width: 100%;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
  }
  
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #eaeaea;
    font-size: 14px;
  }
  
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 2px solid #f1c40f;
    background-color: #ffffff;
  }
  
#form-button {
    width: 100%;
    background-color: #f1c40f;
    color: #333;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
#form-button:hover {
    background-color: #f39c12;
  }

  footer{
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .text-footer{
    font-size: 14px;
    padding: 30px;
    color: white;
  }

  .burgur{
    position: absolute;
    right: 5%;
    top: 15px;
    cursor: pointer;
    display: none;
  }

  .line{
    width: 33px;
    background-color: white;
    height: 4px;
    margin: 5px 3px;
  }

@media only screen and (max-width: 796px){
    .nav-list{
        flex-direction: column;
    }
    .navbar{
        flex-direction: column;  
        transition: all 0.5s ease-out;
        position: sticky;
        top: 0;
    }
    .rightNav{
        text-align: center;
    }
    #search{
        width: 100%;
    }
    .burgur{
        display: block;
    }
    .h-nav-resp { 
        height: 52px; 
    } 
    .h-nav-resp.expanded { 
        height: 410px;
    }
    .v-class-resp{
        opacity: 0;
    }
    .box-main{
        flex-direction: column-reverse;
        max-width: 100%;
    }
    .section{
        flex-direction: column-reverse;
        /* margin-top: 500px; */
    }
    .text-big{
        text-align: center;
    }
    .text-small{
        text-align: center;
    }
    .buttons{
        text-align: center;
    }
    
    .paras{
        padding: 0px;
    }
    .left{
        padding: 0;
    }
  }

