@charset "utf-8";
/* CSS Document */

/* Add these properties to ensure the whole page is full-height */
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Libre Caslon Text", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 1em;
	display: flex;
	flex-direction: column;
	background-color: #f8f9fa;
}

.bimg {
	width: 100%;
	height: auto;
	display: block;
}

.hero-banner {
	background-image: url("../images/Slide2.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	display: flex;
	height: 100vh;
}

.hero-banner h1 {
	font-size: 3rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer {
	background-color: #343a40;
	color: #ffffff;
}

.fst {
	font-family: "Libre Caslon Text", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	font-size: 1.1em;
}

/* Updated class name to pgbgV1 and corrected properties */
.pgbgV1 {
	background-image: url("../images/bg5.jpg");
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	background-color: #f6e39f;
	font-family: "Libre Caslon Text", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 1.1em;

	box-sizing: border-box;
	padding: 30px 0px;
}

.pgbgV2 {
	background-image: url("../images/bg3a.jpg");
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	background-color: #f6e39f;
	font-family: "Libre Caslon Text", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 1.1em;

	box-sizing: border-box;
	padding: 30px 0px;
}


.homeImage {
	background-image: url("../images/bg2.jpg");
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}

.pgbg1 {
	width: 100%;
	height: 100vh;
	background-image: url("../images/bg5.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% 100%;
}

.lfont {
  font-family: "Baskervville", serif;
  font-style: italic;
	font-weight: 600;
}



/* Show mobile-only content when screen is 768px or smaller */
@media (max-width: 768px) {
  .mobile-gita {
    display: block;
	text-align: center;
	padding-top: 40px;
	width: 100%;
  }
  .desktop-gita {
    display: none; /* hide desktop-only stuff on mobile */
  }
}




	

/* Default: hide mobile-only content */
.mobile-quote {
  display: none;
}

/* Show mobile-only content when screen is 768px or smaller */
@media (max-width: 768px) {
  .mobile-quote {
    display: block;
	font-family: "Libre Caslon Text", serif;
	font-style: bold;
	font-size: 1.1em;
	text-align: center;
	padding-top: 30px;
  }
  .desktop-quote {
    display: none; /* hide desktop-only stuff on mobile */
  }
}




/* --- Media Queries (Fixed) --- */

@media (max-width: 480px) {
	.oman {
		width: 70%;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.hero-banner {
		background-size: cover;
		background-position: center bottom;
		height: 100vh;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.bimg.responsive {
		width: 60%;
		display: block;
		margin: 0 auto;
	}
}



/**************/

/* Container for the entire section */
.container1 {
  width: 100%;
/*  margin: 0 auto;*/ /* Centers the container on the page */
}

/* Styling for the rows */
.row1 {
/* Adds space between the rows */
/*  background-color: #fff;*/
}

/* Styling for the second row with columns */
.row1.three-columns {
  display: flex; /* Enables Flexbox layout */
 /* Creates space between the columns */
}

/* Styling for the columns */
.column1 {
  flex: 1; /* This is the key! It makes all columns take up an equal amount of space */
  text-align: center;
	width: auto;
	height: auto;
	vertical-align: top;
}


.pod {
	font-family: "Libre Caslon Text", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	font-size: 1.1em;
}


 
  .conic-gradient-div {
      background-image: conic-gradient(red, yellow, green, blue, red);
    }
  .gradient-div {
      background-image: linear-gradient(to top, #3fa0be, #f6eabe, #ffffff); /* Orange to peach */
    }




.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
  gap: 20px; /* Adds space between cards */
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
/*  border-radius: 20px;*/
  padding: 20px;
  background-color: #f9f9f9;
}

/* Media query for tablets and smaller */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}



.letter {
	font-family: "Libre Caslon Text", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	font-size: 1.1em;
	color: #379ed3;
}




  .image-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    gap: 1em; /* Space between the images */
  }

  /* Styles for each column */
  .image-column {
    flex: 1; /* Each column takes up equal space */
    min-width: 250px; /* Ensures a minimum width before wrapping */
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
  }

  /* Image styles */
  .image-column img {
    width: 100%; /* Makes the image fill the column width */
    height: auto; /* Maintains the image's aspect ratio */
    display: block; /* Removes any extra space below the image */
  }
