.coverDiv img {
    width: 100px;
      border-radius: 50%;
    
 }
 
 
/* Centering the entire .divSeven container */
.divSeven {
  display: flex;
  flex-direction: column;  /* Align items in a column */
  justify-content: center; /* Vertically center the content */
  align-items: center;     /* Horizontally center the content */
  height: 100vh;           /* Full viewport height */
  padding: 20px;           /* Padding to avoid content sticking to edges */
  text-align: center;      /* Center text within sections */
}

/* Heading section styles */
.headingSec h1 {
  font-size: 2.5em;      /* Larger font size for the heading */
  font-weight: bold;
  color: #333;           /* Dark color for the heading */
  margin-bottom: 20px;   /* Space below the heading */
}

.headingSec p {
  font-size: 1.2em;      /* Slightly larger font for the paragraph */
  color: #666;           /* Lighter color for text */
  margin-bottom: 30px;   /* Space below the paragraph */
}

/* Styling for the social media links */
.share {
  display: flex;
  gap: 15px;             /* Space between icons */
  justify-content: center;
  margin-top: 20px;
}

.share a {
  font-size: 1.5em;      /* Icon size */
  color: #333;           /* Dark color for the icons */
  transition: color 0.3s ease; /* Smooth color transition */
}

.share a:hover {
  color: #007bff;        /* Change color on hover */
}

ery {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 1200px;
}

.gallery h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center; /* Horizontally centers the text */
   font-size: 2em; /* Adjust the font size */
   margin-bottom: 20px; /* Space below the heading */
}

.imgnine {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.first-group img {
  border: 5px solid #4caf50;
  filter: brightness(1.1);
}

.second-group img {
  border: 5px solid #2196f3;
  filter: grayscale(50%);
}



/* <-------------------------------------------------------------------------------------------------------------> */

/* Parent Container */
.divTwo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #f3f4f6, #e2e8f0); /* Soft gradient background */
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.headingSec {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Main Heading */
.headingSec h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50; /* Darker heading color */
  line-height: 1.3;
  text-transform: capitalize;
}

/* Highlighted Text */
.headingSec .highlight {
  color: #0078d4; /* Brighter highlight for attention */
  background: linear-gradient(90deg, #0078d4, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph Text */
.headingSec p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555;
  margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .headingSec h1 {
     font-size: 2em;
  }

  .headingSec p {
     font-size: 1em;
  }
}

@media (max-width: 480px) {
  .headingSec h1 {
     font-size: 1.8em;
  }

  .headingSec p {
     font-size: 0.95em;
  }
}

/* General Footer Styling */
.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .box {
  flex: 1;
  min-width: 280px;
  margin: 10px;
  padding: 20px;
  background-color: #333;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .box:hover {
  background-color: #444;
  transform: translateY(-5px);
}

.footer .box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #007BFF;
}

.footer .box p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.footer .box a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  display: block;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.footer .box a:hover {
  color: #007BFF;
}

.footer .box .share {
  margin-top: 20px;
}

.footer .box .share i {
  font-size: 24px;
  color: #ccc;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer .box .share i:hover {
  color: #007BFF;
}

/* Responsive Styling for Smaller Screens */
@media (max-width: 768px) {
  .footer .box-container {
      flex-direction: column;
      align-items: center;
  }

  .footer .box {
      min-width: 100%;
      margin-bottom: 20px;
  }
}
