.mobile {
	display: block;
  }
  .desktop {
	display: none;
  }

  @media (min-width: 768px) {
	.mobile {
	  display: none;
	}
	.desktop {
	  display: block;
	}
  }

.header-p {
    font-size: 1em;
    line-height: 1.5;
    padding: 20px;
}

.card {
    background-color: #0033A2; 
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 0%;
}

.col-lg-6, .col-md-6, .col-sm-6 {
    padding: 0;
}

.col-lg-8, .col-md-8, .col-sm-8 {
    padding: 0;
}
/* Number icon styling */
.card .number-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: white;
    color: #0033A2;
    border-radius: 50%;
    font-weight: bold;
    margin-left: 20px;
}

/* Title styling */
.card .title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

/* Content styling */
.card .content {
    margin-top: 10px;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 20px;
}

/* Image styling to ensure it takes full height */
.img-fluid {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



.card7-container {
    position: relative;
    width: 100%;
   
}

.image7-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.text7-section {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #0033A2;
    color: #ffffff;
    padding: 20px;
    width: 100%; /* Responsive width */
    max-width: 600px; /* Limit width for large screens */
    transform: translate(15%, -15%);
}

.text7-section h1 {
    font-size: 1.5em; 
    color: #000000; /* Ensure text color contrasts with background */
    transform: translate(45%, -350%);
}

.text7-section p {
    font-size: 1em;
    line-height: 1.5;
    transform: translate(0,-30%);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .text7-section {
        width: 100%;
        padding: 15px;
    }
    
    .text7-section h1 {
        font-size: 1.2em;
    }

    .text7-section p {
        font-size: 0.9em;
    }
}
