* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #000000;
  }
  
  /* Gallery container */
  .gallery-container {
    padding: 20px;
  }
  
  .container{
    height: 400px;
  }
  
  header {
    background: url('images/4.jpeg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0; /* Removes any gaps around the header */
    height: 700px;
  }
  
  header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with 50% transparency */
    z-index: -1; /* Places it behind the header content */
  }
  
  header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
   
    z-index: -1;
  }
  
  
  
  header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
  
  header h1 span {
    color: #f4a261;
    
  }
  
  header p {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgb(255, 255, 255); /* Slightly transparent white for better readability */
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .buttons a {
    padding: 10px 20px;
    background: #f4a261;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn-secondary {
    background-color: #ffffff; /* Complementary color for secondary button */
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: #000000; /* Darker hover effect */
  }
  
  .btn {
    background-color: #ffffff; /* Complementary color for secondary button */
    color: white;
  }
  
  .btn:hover {
    background-color: #000000; /* Darker hover effect */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }
  
    header p {
      font-size: 1rem;
    }
  
    .profile-pic {
      width: 120px;
      height: 120px;
    }
  }
  
  section {
    padding: 80px 0;
  }
  
  /* About Section Styling */
  #about {
    background-color: black; /* Retains black background */
    color: white; /* White text */
    padding: 50px 20px;
    text-align: left; /* Align text to the left for cleaner presentation */
    height: 550px; /* Adjusted height for flexibility */
    border-top: 3px solid #ffffff; /* Accent line */
  }
  
  /* Heading Styling */
  #about h2 {
    font-size: 2rem;
    text-align: center; /* Keeps the heading centered */
    margin-bottom: 30px;
  }
  
  /* Flexbox Layout for Image and Text */
  .about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto; /* Center the entire content horizontally */
  }
  
  /* Image Styling */
  #about img {
    width: 100%; 
    max-width: 350px; /* Keeps image manageable */
    border-radius: 8px; /* Rectangular with slightly rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6); /* Adds a shadow effect */
    transition: transform 0.3s ease-in-out;
  }
  
  #about img:hover {
    transform: translateY(-10px); /* Float effect on hover */
  }
  
  /* Text Styling */
  .about-text {
    flex: 1; /* Makes the text take remaining space */
    background-color: #333333; /* Dark gray for contrast */
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff; /* Keeps text white */
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  
  #services {
    background: #ffffff;
    height: 400px;
  }
  
  #services h2{
    text-align: center;
    font-size: 2.5rem;
  }
  
  #services .service-list {
    display: flex;
    justify-content: space-around;
  }
  
  .service-item {
    width: 30%;
    text-align: center;
  }
  
  .service-item i {
    font-size: 2rem;
    color: #ff5e57;
  }
  
  /* Gallery */
  .gallery {
    display: flex;
    flex-wrap: wrap; /* Allows images to wrap to the next row */
    justify-content: center; /* Center the gallery horizontally */
    gap: 15px; /* Space between the images */
    margin-top: 20px;
    background-color: #000000;
    text-align: center;
  }
  
  .gallery-container{
    background-color: #000000;
    color: #fff;
  }
  
  /* Gallery images */
  .gallery img {
    width: 200px; /* Small size */
    height: 200px; /* Ensure a square aspect ratio */
    border-radius: 50%; /* Circular shape */
    object-fit: cover; /* Crops and fills the circle */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add depth with shadow */
    border: 2px solid #fff; /* Optional white border */
    cursor: pointer; /* Pointer cursor on hover */
    transition: transform 0.3s ease; /* Smooth scaling effect */
  }
  
  /* Hover effect */
  .gallery img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
  }
  
  #gallery h1{
    text-align: center;
    font-size: 2.5rem;
  }
  
  /* Awards Section */
  .awards {
    padding: 50px 20px;
    background-color: #ffffff; /* Dark modern background */
    color: #f8f1e6; /* Light cream color */
    text-align: center;
    border-top: 3px solid #000000; /* Accent line */
    height: 400px;
  }
  
  .awards h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000; /* Accent heading color */
  }
  
  .award-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
  }
  
  
  .award-title span {
    color: #e76f51; /* Highlight color for awards text */
  }
  
  blockquote {
    font-style: italic;
    color: #090908;
    font-size: 1.1rem;
    margin: 20px auto;
    max-width: 600px;
    position: relative;
  }
  
  blockquote::before {
    content: '“';
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -10px;
    color: #e76f51;
  }
  
  blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #8a5326;
  }
  
  .quote{
    color: #000000;
  }
  
  #contact {
    padding: 50px 20px;
    background-image: url('images/22.jpeg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #ffffff; /* Light text for better contrast */
    text-align: left;
    height: 350px;
    position: relative; /* To add an optional overlay */
    border-top: 3px solid #ffffff; /* Accent line */
  }
  
  .contact::before{
  background-color: rgba(0, 0, 0, 0.4); /* Black with 50% transparency */
  z-index: -1; /* Places it behind the header content */
  }
  
  
  .contact h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .contact-details {
    font-size: 2rem;
  }
  
  .contact-link, .social-link {
    color: #e76f51; /* Golden color for links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .contact-link:hover, .social-link:hover {
    color: #74463b; /* Highlight link on hover */
  }
  
  .social-link i {
    margin-right: 5px; /* Icon spacing */
    color: #f4a261;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .awards h2, .contact h2 {
      font-size: 1.6rem;
    }
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
  }