/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

















.sectionOne {
    margin-top: 25px;
    margin-bottom: 30px;
    display: grid;
    gap: 20px;
  }
  
  .sectionOne__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .sectionOne__btn {
    justify-self: center;
  }
  
  /* .sectionOne__content--text {
    font-size: var(--sub);
    font-family: var(--font-2);
    
  } */

/* march 21 */
  .sectionOne__content--text {
    font-size: var(--sub);
    font-family: var(--font-2);
    text-align: justify; /* Ensures text is properly aligned */
    width: 80%; /* Adjust width as needed */
    margin-left: 10%; /* Aligns the paragraph properly */
    padding: 20px; /* Adds spacing */
    /* border: 2px solid black; */
     /* Adds border if needed */
    border-radius: 10px; /* Smooths corners */
    background-color: #FFFFFF; /* Optional background color */
}





.sectionOne__content--text h2 {
  font-size: 16px; /* Make heading bigger */
  font-weight: bold; /* Make it bold */
  /* color: #1a1a1a; Darker color for better readability */
  color:#121212;
  text-transform: uppercase; /* Makes text uppercase for emphasis */
  margin-bottom: 10px; /* Adds space below heading */
  border-left: 5px solid #0A74DA; /* Adds a blue left border*/
  padding-left: 12px; /* Space between text and border */
}



/* march 21 */

  
  @media (max-width: 568px) {
    .sectionOne__images {
      grid-template-columns: repeat(1, 1fr);
    }
  }


  /* FEB 8  WORKS FROM CHATGPT*/
  /* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body Styling */
body {
  background: #f4f4f4;
  /* background-color: #edf2fb; */
  padding: 20px;
}

/* About Us Section */
.about-section {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
}

/* Heading Styles */
h1 {
  text-align: center;
  margin-bottom: 20px;
  /* color: #333; */
  color:#121212;
}

/* Individual Info Block */
.info {
  margin-bottom: 15px;
  padding: 15px;
  /* background: #e8e8e8; */
  background-color: #FFFFFF;
  border-radius: 5px;
}

/* Section Title */
h2 {
  font-size: 18px;
  /* color: #444; */
  color:#121212;
  margin-bottom: 5px;
}

/* Paragraph Styling */
p {
  font-size: 16px;
  /* color: #555; */
  color:#121212;
}

/* Responsive Design */
@media (max-width: 600px) {
  .about-section {
      padding: 20px;
  }
  h1 {
      font-size: 22px;
  }
  h2 {
      font-size: 16px;
  }
  p {
      font-size: 14px;
  }
}


/* march 23 */
/* Fix section boxes on mobile */
.about-section .info {
  /* background-color: #f0f5ff;  Light blue background */
  background-color: #0099FF;
  padding: 15px 20px;  /* Reduce padding */
  border-radius: 8px;  /* Keep rounded corners */
  margin-bottom: 10px;  /* Space between sections */
}

/* Make text sections responsive */
.sectionOne__content--text {
  font-size: 16px;  /* Adjust font size */
  line-height: 1.5;  /* Improve readability */
}

/* Ensure proper width & spacing */
.container {
  max-width: 100%;  /* Fit within screen */
  padding: 0 15px;  /* Reduce side spacing */
}

/* Responsive design for smaller screens */
@media screen and (max-width: 600px) {
  .about-section .info {
      padding: 10px 12px;  /* Reduce padding for smaller screens */
      font-size: 14px;  /* Adjust text size */
      margin-bottom: 8px;  /* Reduce space between boxes */
  }

  .sectionOne__content--text {
      font-size: 14px;  /* Slightly smaller text */
  }
}





/* march 23 */

/* march 23 */

/* Fix spacing for main container */
.container {
  max-width: 90%;  /* Fit screen width */
  margin: 0 auto;  /* Center it */
  padding: 20px;  /* Balanced padding */
}

/* Fix spacing inside sections */
.sectionOne__content--text {
  font-size: 16px;  
  line-height: 1.5;  /* Improves text readability */
  margin-bottom: 10px;  /* Reduce large spacing */
}

/* Adjust About Section spacing */
.about-section {
  padding: 20px 0;  /* Reduce padding */
}

/* Fix space between info boxes */
.about-section .info {
  /* background-color: #f0f5ff;   */
  background-color: #0099FF;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 8px;  /* Reduce space between sections */
}

/* Reduce unnecessary spacing on small screens */
@media screen and (max-width: 600px) {
  .container {
      max-width: 95%;
      padding: 15px;
  }

  .sectionOne__content--text {
      font-size: 14px;
      margin-bottom: 5px;  /* Reduce extra space */
  }

  .about-section {
      padding: 15px 0;
  }

  .about-section .info {
      padding: 12px;
      margin-bottom: 5px;  /* Reduce space between items */
  }
}

/* march 23 */

/* march 23 */
.sectionOne__content--text {
  text-align: center;  /* Centers the text */
  line-height: 1.6;  /* Improve readability */
  word-spacing: normal;
  letter-spacing: normal;
  padding: 0;  /* Remove extra padding */
  margin: 0 auto;  /* Center inside the container */
  width: 100%;  /* Make sure it covers the full width */
}

/* march 23 */