body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }
  
  html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  .column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
  }
  

  .containera {
    padding: 0 16px;
  }
 
  .containera::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: #555;
  }
  
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
  }


  


/* Overlay to make the text readable on background image */

/* Main Heading Styling */
.about-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f70606;
}

/* Intro Text Styling */
.intro-text {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Section Styling for "Our Story", "Mission", etc. */


.intro-text h2 {
    font-size: 32px;
   /* Gold color */
    margin-bottom: 15px;
    font-weight: bold;
  ;
}
.intro-text p{
  color: #000;
}
/* Button for Contact */
.contact-btn {
    padding: 15px 30px;
    background-color: black;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-overlay {
        padding: 20px;
    }

    h1 {
        font-size: 36px;
    }

    .intro-text {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    ul li {
        font-size: 16px;
    }
}


    /* Container for the page */
    .container1 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
      }
  
      /* Section Layout (Half Text, Half Image) */
      .half-layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 40px;
      }
  
      /* Text section */
      .text-section {
        flex: 1; /* This makes the text section take up 50% of the space */
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
  
      .text-section h2 {
        color: #333;
        font-size: 2rem;
        margin-bottom: 20px;
      }
  
      .text-section p {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 20px;
      }
  
      /* Image section */
      .image-section {
        flex: 1; /* This makes the image section take up 50% of the space */
        max-width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 10px;
      }
  
      .image-section img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        display: block;
      }
  
    
  
      /* Media Queries for responsiveness */
      @media (max-width: 768px) {
        .half-layout {
          flex-direction: column; /* Stack the text and image on smaller screens */
        }
  
        .text-section {
          padding: 15px;
        }
  
        .image-section {
          padding: 15px;
        }
  
        .text-section h2 {
          font-size: 1.6rem;
        }
  
        .text-section p {
          font-size: 1rem;
        }
      }
  
      @media (max-width: 480px) {
        .text-section h2 {
          font-size: 1.4rem;
        }
  
        .text-section p {
          font-size: 0.9rem;
        }
/* For medium screens (tablet size) */
@media (max-width: 768px) {
  .half-layout {
    flex-direction: column;
    align-items: center;
  }

  .image-section, .text-section {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .text-section {
    padding-top: 20px;
  }
}

/* For smaller screens (mobile size) */
@media (max-width: 480px) {
  .half-layout {
    padding: 10px;
  }

  .image-section img {
    width: 100%; /* Ensure the image scales well on small screens */
  }
}



/* Style for the Text Section */
.text-section1 {
  width: 100%;
  padding: 20px; /* Add padding around the content */
  background-color: #f9f9f9; /* Light background color */
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  margin-bottom: 20px; /* Space between sections */
}

/* Styling for Heading 2 (h2) */
.text-section1 h2 {
  font-size: 2em; /* Larger text size for the h2 */
  font-weight: bold;
  color: #333; /* Dark color for contrast */
  margin-bottom: 15px; /* Add space below the h2 */
}

/* Styling for Heading 5 (h5) */
.text-section1 h5 {
  font-size: 1.2em; /* Slightly smaller size than h2 */
  font-weight: normal; /* Regular weight */
  color: #666; /* Lighter color for a subtle look */
  margin-bottom: 10px; /* Space below the h5 */
}

/* Styling for Paragraph (p) */
.text-section1 p {
  font-size: 1.1em; /* Slightly larger text for readability */
  line-height: 1.6; /* Increased line height for better readability */
  color: #555; /* Lighter color for the text */
  margin-bottom: 15px; /* Space between paragraphs */
}

/* Media Queries for responsiveness */

/* For tablet screens (max-width: 768px) */
@media (max-width: 768px) {
  .text-section1 {
    padding: 15px; /* Slightly smaller padding on tablets */
  }

  .text-section1 h2 {
    font-size: 1.8em; /* Slightly smaller h2 on tablets */
  }

  .text-section1 h5 {
    font-size: 1.1em; /* Adjust h5 size */
  }

  .text-section1 p {
    font-size: 1em; /* Adjust paragraph size */
  }
}

/* For mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .text-section1 {
    padding: 10px; /* Even smaller padding on mobile */
  }

  .text-section1 h2 {
    font-size: 1.5em; /* Smaller h2 on mobile */
  }

  .text-section1 h5 {
    font-size: 1em; /* Adjust h5 size for mobile */
  }

  .text-section1 p {
    font-size: 0.95em; /* Smaller paragraph text */
  }
}
.container1{

  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;


}

.text p{
  color: black;
}


strong {
  font-weight: bold;
}
