/* Base Styles */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Kannada", sans-serif;
  }
  
  .banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    background-color: #faf9f6;
  }
  
  .banner-container img{
    width: 70%;
    height: 100%;
  }
  
.content-wrapper{
    display: flex;
    gap: 40px;
    width: 85%;
    margin: 20px auto;
    overflow: hidden;
  }
  
  .text-section {
    width: 50% ;
    overflow: hidden;
  }

  
  .title {
    font-size: 72px;
    line-height: 86px;
    font-weight: bold;
    color: #000;
  }
  
  .subtitle,
  .description {
    font-size: 24px;
    line-height: 32px;
    color: #6e6e6e;
    margin-top: 20px;
  }
  
  .note {
    margin-top: 50px;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    line-height: normal;
  }

  .text-section .social{
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .text-section .social a i{
    font-size: 50px;
  }
  

  .image-section {
    overflow: hidden;
    width: 50%;
  }
  
  
  .image-section .image1 {
    width: 100%;
    height: 80%;
    /* height: 600px; */
    object-fit: cover;
  }

  .footer {
    width: 100%;
    background-color: #000;
    padding: 50px 0;
  }


  /*Extra large devices (large desktops, 1200px and up)*/
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    
      .content-wrapper {
        flex-direction: row;
        align-items: center;
      }

      .image-section{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .text-section{
        width: 100%;
    }
  
    .image-section .image1 {
        width: 100% ;
        height: 600px;
    }

    .title{
        font-size: 72px;
        line-height: 86px;
    }
    p{
        font-size: 18px;
    }


    .note{
        font-size: 24px;
    }

    .text-section .social a i{
      font-size: 50px;
    }
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
	.content-wrapper {
        width: 85%;
        flex-direction: column-reverse;
      }

      .image-section{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .text-section{
        width: 100%;
    }
  
    .image-section .image1 {
        width: 100% ;
        height: 400px;
    }

    .title{
        font-size: 56px;
        line-height: 56px;
    }
    p{
        font-size: 18px;
    }



    .note{
        font-size: 24px;
    }

    .text-section .social a i{
      font-size: 50px;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px){ 
    .content-wrapper {
        margin: auto;
        flex-direction: column-reverse;
      }

      .image-section{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .text-section{
        width: 100%;
    }
  
    .image-section .image1 {
        width: 100% ;
        height: 400px;
    }

    .title{
        font-size: 48px;
        line-height: 48px;
    }
    p{
        font-size: 18px;
    }

    .note{
        font-size: 22px;
    }

    .text-section .social a i{
      font-size: 40px;
    }
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .content-wrapper {
        flex-direction: column-reverse;
      }
    .image-section{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .text-section{
        width: 100%;
    }
  
    .image-section .image1 {
        width: 100% ;
        height: 400px;
    }

    .title{
        font-size: 48px;
        line-height: 48px;
    }
    p{
        font-size: 18px;
    }



    .note{
        font-size: 22px;
    }

    .text-section .social a i{
      font-size: 40px;
    }
}
  