


:root {
  --footer-color: #03344F;
  --button-color: #054C73;
  --second-color: #F2F5FF;
  --third-color: #DFE9F4;
  /* --hover-color: #9A7B4F; */
}







body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Full-height hero section with background image */
.hero-section {
  height: 100vh;
  background-image: url('./assets/image1.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;

}

/* Stylish card */
.custom-card {
  background-color:var(--third-color);
  border: none;
  max-width: 350px;
  height: 300px;
  /* text-align: center; */
  position: absolute;
  margin-right:40px ;
  right: 0;
  /* left: 20; */
  line-height: 2;


}

/* Card text */
.custom-card .card-title {
  color: var(--primary-color);
  font-weight: bold;
}

.custom-card .card-text {
  color: var(--text-dark);
}

/* Button with custom colors */
.custom-card .btn-primary {
  background-color: var(--button-color);
  /* border: none; */
  border-radius: 30px;
  padding: 10px 0px;
}

.custom-card .btn-primary:hover {
  background-color: var(--footer-color);
}


.mycolor{
    background-color: var(--third-color) !important;
}



/* section 8 */
.section8{
    background-color: var(--third-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center; 
    margin-top: 20px;
    padding-top: 20px;
    line-height: 2;
    height: 250px;
}

.section8part2 input{
    background-color: white;
    border-radius: 8px;
    padding: 5px 20px;
    /* border: 1px solid blue; */
    border: none;
}

.section8part2 button{
    background-color: var(--button-color);
    border-radius: 8px;
    padding: 5px 20px;
    border: none;
    /* border: 1px solid blue; */
    color: white;
}

/* Section 9 */
.section9main {
  display: flex;
  justify-content: center;      /* center horizontally */
  align-items: center;          /* center vertically */
  background-color: var(--footer-color);
  color: white;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}

.section9part1,
.section9part2 {
  flex: 1 1 300px;
}

.section9part1 h2,
.section9part2 h2 {
  margin-bottom: 10px;
}
.section9part1{
     text-align: center;  
}

.section9part1 p {
  white-space: pre-line;
  line-height: 1.8;
}

/* Images grid */
.images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.images h2{
    text-align: start;
}

.images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 500px) {
  .section9main {
    flex-direction: column;
    align-items: center;
    text-align: center;
   
  }

  .images {
    justify-content: center;
    
  }

  .images img {
    width: 80px;
    height: 80px;
  }
}
