.container-xyz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0; /* Reduced padding for mobile */
}

.gallery-xyz {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.gallery-xyz a {
    display: block;
    margin-bottom: 10px; /* Reduced margin for mobile */
    width: calc(50% - 5px); /* Adjust the width of each image container for mobile */
}

.gallery-xyz img {
    width: 100%; /* Set width to fill the container */
    height: auto; /* Allow height to adjust according to aspect ratio */
    object-fit: cover; /* Ensure the image covers the entire container */
    border: 1px solid #ddd; /* Optional: Add border for better visualization */
    border-radius: 5px; /* Optional: Add border-radius for rounded corners */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow for better visualization */
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 768px) {
    .gallery-xyz a {
        width: 100%; /* Adjust width to fit full width on mobile */
    }
}

/* General Styles */

/* Welcome Section */
.signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  } 
  
  .founder-image {
    width: 261px;
    height: auto;
    /* border-radius: 50%; */
    /* margin-bottom: 10px; */
  }
  
  .author-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .author-info {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .designation {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
  }
  
  .author-designation {
    font-size: 0.9rem;
    font-weight: normal;
    color: #333;
  }

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.text {
    padding: 0 20px;
}

.sub-heading {
    font-size: 1.5em;
    color: #2c3e50;
    margin-top: 30px;
}

.service-column {
    padding: 20px;
}

/* Service Blocks */
.service-block {
    background-color: #ecf0f1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.icon-box {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 15px;
}

.service-block h3 {
    font-size: 1.5em;
    color: #34495e;
}

.service-block p {
    color: #7f8c8d;
}

/* Turnkey Projects */
.turnkey-projects {
    text-align: left; /* Align content to the left */
    margin: 10px;
    padding: 10px;
   
    
}

.turnkey-projects h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #333; /* Neutral heading color */
    text-align: center;
    margin-bottom: 15px;
}

.project-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.project-list li {
    font-size: 1.3em;
    color: #020202;
    padding: 6px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0; /* Optional: separator line */
}

.project-list li:last-child {
    border-bottom: none; /* Remove bottom border for the last item */
}

.project-list li::before {
    content: "✓"; /* Add checkmark */
    color: #020202; /* Green color for the checkmark */
    margin-right: 10px;
    font-size: 1.5em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .welcome-column, .service-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .sub-heading {
        font-size: 1.2em;
    }

    .service-block h3 {
        font-size: 1.3em;
    }
}

.consultancy-section {
    color: #0a0a0a; /* Background color */
    padding: 50px 20px;
    text-align: center;
}

.consultancy-section .header-text h3 {
    color: #0a0a0a;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

.consultancy-section .header-text h3 span {
    color: #f8c14d; /* Highlight color for 'We' */
    font-weight: 600;
}

.consultancy-section .features-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-block {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.feature-block img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
}

.feature-block .circle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures image stays within the circle */
}

.feature-block .circle-icon img {
    max-width: 100%;
}

.feature-block h4 {
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-block {
        max-width: 150px;
    }
    .feature-block h4 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .feature-block {
        max-width: 120px;
    }
    .feature-block h4 {
        font-size: 10px;
    }
}
/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .feature-block {
        flex: 1 1 33%; /* Three items per row on medium screens */
    }
}

@media (max-width: 576px) {
    .feature-block {
        flex: 1 1 100%; /* One item per row on small screens */
    }
}

