
	/* Universal box-sizing rule */
*, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

/* Basic styling for the body */
body {
            font-family: 'Arial', sans-serif;
            line-height:1.4;
            color: #333;
            background-color: #f4f4f4;
            display: flex; /* Make body a flex container */
            flex-direction: column; /* Stack header, nav, main, footer vertically */
            min-height: 100vh; /* Ensure body takes full viewport height */
        }

       /* Header with Monogram */
    header {
      background: linear-gradient(-90deg,#009900, #fff);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 30px;
      border-bottom: 4px solid #fff;
    }
 /* Logo Image */
    header img.logo {
	width:120px;
      height:100px;
      border-radius 10px;
      box-shadow 0 4px 8px rgba(0,0,0,0.2);
	  
    }
 



/* Navigation styles */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Use flex-wrap on a single line */
    background-color:  #2c3e50;
    padding: 5px;
    border-right: 1px solid #ccc;
    transition: background-color 0.3s ease-in-out;
}

/* Flexible link button styles */
.flex-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #3498db;
    text-decoration: none;
    margin-left: 5px;
    margin-top: 2px;
    margin-bottom: 4px;
}

.flex-link-btn: {
    background-color: #CCD4BC;
}

.flex-link-btn:active {
    background-color: #2e7d34;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Main content styles */
main {
  flex: 1; /* allows main to grow and fill space */
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #f4f4f4;
}
.quotes {
            background: linear-gradient(90deg, #6a5acd, #483d8b);
            color: white;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }
        
        .quotes-container {
            display: flex;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }
        
        .quotes p {
            display: inline-block;
            padding: 0 40px;
            font-size: 25px;
            font-weight: 500;
        }
 @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

/* Content area and columns */
.content-area {
  display: flex1
  width: 100%;
  max-width: 1200px;
  gap: 10px; /* space between columns */
  background-color: #f4f4f4;
  border-radius: 8px;
  padding:5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 2px solid #6a5acd;
  
   
}

/* Main content column */
column {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  min-height: 210px;
   border: 2px solid black
}

.gallery {
	flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 10px;

}

.gallery-item {
  text-align: center;
  max-width: 210px;
  height:210px;
  
}

.gallery-img {
  width: 215px;
  height: 175px;
  cursor: pointer;
  border-radius: 12px;
   border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.caption {
  margin-top: 8px;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  padding: 20px;
flex-direction: column;
}

.lightbox-content {
  text-align: center;
  color: white;
}


.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
 border: 4px solid #fff;
}

.lightbox-caption {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f0f0f0;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
transition: color 0.2s;
}

.close:hover {
  color: #ccc;
}

}



next-page {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Use flex-wrap on a single line */
       
}


	.next-p {
    display: inline-block;
    padding:10px;
    background-color: #496b53;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.3s;
	margin:3px;
	justify-content: center;
  }

  .next-p:hover {
    background-color: #86918f;
  }




/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
   background-color: #4CAF50;
    color: white;
}


/* Responsive adjustments */
@media(max-width: 1024px) {
  .content-area {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
}