/* Resetting default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.row.no-padding {
  margin-right: 0;
  margin-left: 0;
}

.row.no-padding > [class^="col-"],
.row.no-padding > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.green{
  color: #49B24C;
}


.custom-button {
  display: inline-block;
  background-color: #49B24C; 
  color: #fff; 
  padding: 10px 20px; 
  text-decoration: none;
  border-radius: 5px; 
  transition: background-color 0.3s ease; 
}

.custom-button:hover {
  background-color: #3C873A; 
  text-decoration: none;
  color: white;
  cursor: pointer;
}

/* Styles for the navigation bar */
header {
  background-color: #333;
  padding: 0;
}

.navbar-brand img {
  max-width: 100px; 
  height: auto;
}

.navbar {
  padding: 10px 0;
}

nav ul {
  list-style-type: none;
  text-align: center;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

/* Styles for sections */
.section {
  padding: 100px 0;
  color: #333;
  text-align: center;
}


/* Styles for section 1 */
.section1 {
  background: 
      url('../img/section_1_hand.png') no-repeat right bottom, 
      url('../img/section_1_bg.png') no-repeat center center, 
      #3E71B8;
  background-size: cover auto; 
  position: relative;
}

.section1 .container-fluid {
  padding-top: 15vw;
  padding-bottom: 15vw;
  padding-right: 0px;
}

.section1 .content{
  padding: 0 20px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}


/* Styles for section 2 */
.section2{
  background: 
  url('../img/section_2_bg_left.png') no-repeat right bottom, 
  url('../img/section_2_bg_right.png') no-repeat left top;
  background-size: auto ; 
}

.section2 .top-box {
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.section2 .top-box h2 {
  color: #091133; /* Color for the title text */
}

.section2 .top-box p {
  color: #3E71B8; /* Background color for the paragraph */
  padding: 10px 0; /* Adding padding for better visibility */
}

.section2 img.img-fluid {
  max-width: 100%; /* Ensure images don't exceed their container's width */
  height: auto; /* Maintain aspect ratio */
}

.section2 .inner-img-fluid{
  width: auto ; /* Ensure images don't exceed their container's width */
  height: 100px; /* Maintain aspect ratio */
}

.section2 p{
  text-align: left;
}

.section2 .row{
  text-align: left;
}


.section2 .row  p{
  padding-top: 10px;
}


/* Styles for section 3 */
.section3{
  background: 
    url('../img/section_3_bg.png') no-repeat center center, 
    #3E71B8;
    background-size: cover ; 
}
.section3 img {
  max-width: 70%;
  height: auto;
  margin-bottom: 20px;
  padding-top: 10px;
}

.section3 .content{
  padding: 20px 100px;
  text-align: left;
  margin: 0 auto;
}


/* Styles for section 4 */
.section4 img {
  max-width: 70%;
  height: auto;
}


/* Styles for section 5 */
.section5 img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.section5 h2, .section5 h4 {
  color: #fff;
  margin-bottom: 20px;
}

.section5 .top-box{
  height: 200px;
}
.section5 .bottom-box{
  height: 300px;
}


/* Footer styles */
footer{
  height: 130px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-line {
  flex-grow: 1; 
  height: 1px;
  background-color: #ccc;
  margin-top: 20px;
}

.copyright{
  color: #ccc;
  font-size: small;
}


.social-icons {
  display: flex;
  align-items: center;
}

.social-icons .icon {
  margin-right: 10px;
}

.social-icons .icon img {
  width: 18px; 
  height: 18px;
}