/* .tns.tns-default.tns-initiazlied.container {
    position: relative;
    padding-bottom: 20px; 
  }

.tns.tns-default.tns-initiazlied.container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px; 
    background: linear-gradient(
      to right,
      #1a4798 0%,
      #1a4798 33%, 
      #f5bf27 33%, 
      #f5bf27 66%, 
      #f61638 66%, 
      #f61638 100%
    );
    border-radius: 0 0 20px 20px; 
  } */

.tns.tns-default .tns-outer {
    margin: 0 1rem !important;
}

.underline {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        to right,
        #1a4798 33%,
        #f5bf27 33%,
        #f5bf27 66%,
        #f61638 66%
    );
}

@font-face {
    font-family: "Futura";
    src: url("/font/Futura-Bold-font.ttf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

.section-header h2 {
    font-family: "Futura", sans-serif;
    font-weight: 800;
}

.section-header .b-class-secondary {
    font-family: "Futura", sans-serif;
    font-weight: 800;
}

.section-header .sec-icon {
    font-family: "Futura", sans-serif;
}

/* General Styles */
body {
    font-family: "Futura", sans-serif;
    background-color: #f4f4f4;
    /* Light background for contrast */
}

.section-header h2 {
    font-weight: 800;
    color: #333;
    /* Darker text for better readability */
}

/* Card Styles */
.card {
    background: #fff;
    /* White background for cards */
    border-radius: 10px;
    /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition */
}

/* Service Card Styles */
.service-card {
    position: relative;
    /* Position relative for overlay */
    overflow: hidden;
    /* Hide overflow */
    border-radius: 10px;
    /* Rounded corners */
}

.image-wrapper {
    position: relative;
    /* Position relative for overlay */
}

.image-wrapper img {
    width: 100%;
    /* Full width */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 10px;
    /* Rounded corners */
    transition: transform 0.3s ease;
    /* Smooth transition */
}

.image-wrapper:hover img {
    transform: scale(1.05);
    /* Slightly enlarge image on hover */
}

.overlay {
    position: absolute;
    /* Position absolute for overlay */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    color: #fff;
    /* White text */
    display: flex;
    /* Flexbox for centering */
    flex-direction: column;
    /* Column layout */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    /* Smooth transition */
}

/* Button Styles */
.btn-primary {
    background-color: #1a4798;
    /* Primary button color */
    color: #fff;
    /* White text */
    border: none;
    /* No border */
    border-radius: 5px;
    /* Rounded corners */
    padding: 10px 20px;
    /* Padding for button */
    transition: background-color 0.3s ease;
    /* Smooth transition */
}

.btn-primary:hover {
    background-color: #f5bf27;
    /* Change color on hover */
}

@media (max-width: 768px) {
    .government-section {
        order: -1;
    }
}





/* Styling for the pop-up */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 8px;
    width: auto;
    max-width: 100%;
    text-align: center;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.no-scroll {
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Mobile full width */
@media (max-width: 600px) {
    .popup {
        width: 300px;
    }
}


/* Popup content style */
.popup-content h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
    color: black;
}

.popup-content p {
    font-size: 1em;
    margin-top: 10px;
    color: black;
}


/* Style for the close button */
.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;  /* Red color for visibility */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s ease;
}


/* Adjust for tablets (e.g., screens less than 768px) */


/* Change color when hovering over the button */
.popup-close-btn:hover {
    background-color: #e60000;
}


.mechanics-container {
    width: 100%;
    max-width: 300px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}
.mechanics-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.19) !important;
    clip-path: inset(4% 2% 2% 3%) !important;
    border-radius: 50px;
}



@media (max-width: 767px) {
    .mobile-friendly {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 767px) {
    /* For mobile devices */
    .flex-grow-1 img {
        width: 100% !important; /* Set max-width to 100% */
        margin-top: 50px; /* Add margin-top */
        margin-bottom: 70px;
    }

    .footer-text1 img {
        width: 100% !important;
    }

    .footer-text2 img {
        width: 60% !important;
    }

    #feedbackButton {
        padding: 10px 20px !important;
        font-size: 16px !important;
        height: 70px !important;
        margin-top: -70px;
        margin-bottom: 100px;
    }

    #feedbackButton img {
        width: 25px !important;
        height: 25px !important;
    }
}
.feedback-section h2 {
    font-size: 24px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between header and image */
    text-align: center; /* Center the header */
}
