.blue {
    color: #123a55; /* A nice shade of blue */
    font-weight: bold; /* Optional: Adds emphasis to the text */
}

.services-container .service {
    position: relative; /* Add this to make the child elements position relative to this container */
    min-height: 350px; /* Ensure consistent height */
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space between content and button */
}

.services-container .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    color: #3498db; /* Consistent icon color */
    margin-bottom: 20px;
}

.service h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow the paragraph to grow and push the button to the bottom */
}

.big-link-1 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: center; /* Center the button horizontally */
}

.big-link-1:hover {
    background-color: #2980b9;
}




/* Attendance Section */
.attendance-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.attendance-section .attendance-image img {
    width: 100%; /* Ensure the image is responsive */
    max-width: 100%; /* Prevent image overflow */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.attendance-section .attendance-info {
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
}

.attendance-section .attendance-info h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.attendance-section .attendance-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.attendance-section .attendance-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.attendance-section .attendance-info ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.attendance-section .attendance-info ul li i {
    color: #3498db;
    margin-right: 10px;
}

.attendance-section .attendance-info .btn-primary {
    background-color: #3498db;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.attendance-section .attendance-info .btn-primary:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 767px) {
    .attendance-section .attendance-image,
    .attendance-section .attendance-info {
        text-align: center;
    }

    .attendance-section .attendance-info {
        margin-top: 20px;
    }
}





.work-container {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.work-container h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.row {
    display: flex; /* Ensure the row uses Flexbox */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.tech-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space evenly */
    height: 100%; /* Consistent height across all sections */
    min-height: 420px; /* Adjust based on your content length */
}

.tech-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tech-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tech-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow the paragraph to grow to fill space */
}


.locations_section {
    margin-top: 40px;
  }
  
  .focus_section h3,
  .locations_section h3 {
    font-size: 1.8rem;
    color: #30ae69;
    margin-bottom: 15px;
  }
  
  .focus_section p,
  .locations_section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }



  .contact-us-style {
    background-color: #f7f7f7;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.contact-us-style h2, .contact-us-style h4 {
    color: #007BFF;
    font-weight: bold;
}

.contact-us-style p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.contact-us-style ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.contact-us-style .btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.contact-us-style .btn:hover {
    background-color: #0056b3;
}

.contact-us-style .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    margin-bottom: 15px;
}

.contact-us-style .form-control:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-us-style .captcha-img {
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}


.contact-us-style .locations_section h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.contact-us-style .locations_section .location_box {
    text-align: center;
    margin-bottom: 20px;
}

.contact-us-style .location_box .image_box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.contact-us-style .location_box .image_box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact-us-style .location_box .location_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.contact-us-style .location_box .image_box:hover .location_overlay {
    opacity: 1;
}

.contact-us-style .link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.contact-us-style .link:hover {
    color: #0056b3;
    text-decoration: underline;
}


.custom-footer {
    background-color: #222; /* Dark background for footer */
    color: #f7f7f7; /* Light text color for contrast */
    padding: 30px 0;
    font-family: 'Roboto', sans-serif;
}

.custom-footer a {
    color: #f7f7f7;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.custom-footer a:hover {
    color: #007BFF; /* Add hover effect for links */
}

.custom-footer .btn {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

.custom-footer .btn:hover {
    background-color: #218838;
}

.custom-footer .copyright {
    background-color: #111; /* Slightly darker for copyright section */
    color: #888; /* Muted text color */
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

.custom-footer img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.custom-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-footer .row {
    align-items: center;
    text-align: center; /* Ensures center alignment for all screen sizes */
}

.custom-footer .col-xl-4,
.custom-footer .col-lg-4,
.custom-footer .col-md-6,
.custom-footer .col-sm-6 {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .custom-footer .row {
        text-align: left; /* Left-align for larger screens */
    }
    .custom-footer .col-xl-4:first-child {
        text-align: left;
    }
    .custom-footer .col-xl-4:last-child {
        text-align: right;
    }
}


.btn-whatsapp {
    display: inline-block;
    background-color: #25d366; /* WhatsApp green */
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
 }
 
 .btn-whatsapp i {
    margin-right: 10px;
    font-size: 18px;
 }
 
 .btn-whatsapp:hover {
    background-color: #1ebc57; /* Darker WhatsApp green */
    text-decoration: none;
 }


 body {
    font-family: 'Arial', sans-serif;
  }
  .hero-section {
    background: url('../images/timeattendance.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
  }
  .feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
  }
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
  }
  .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  .card:hover {
    transform: translateY(-10px);
  }
  .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
  }
  .btn-primary:hover {
    background-color: #0056b3;
  }