body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

h4,.h4{
    font-weight: 600 !important;
    font-size: 26px;

}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #04213f;
    color: white;
    padding: 10px 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    margin: 0;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin: 0 10px;
}

.company-name {
    font-size: 24px;
    font-family: Montserrat;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ddd;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Add to your existing CSS */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

#contact-us {
    position: relative; /* Create a positioning context for the container */
    background-color: #04213F; /* Section background color */
    color: #fff; /* Text color */
    padding: 40px 20px; /* Padding inside the section */
    text-align: center; /* Center align text */
}

.contact-container {
    display: flex; /* Use flexbox layout */
    justify-content: center; /* Center the container content horizontally */
    align-items: center; /* Center the container content vertically */
    flex-direction: column; /* Stack items vertically */
    position: relative; /* Positioning context for the image and text */
}

.contact-image {
    width: 100%; /* Full width of the container */
    max-width: 600px; /* Limit max width */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center image horizontally */
}
.achievement-image {
    position: absolute; /* Position the image absolutely within the section */
    bottom: 0; /* Align the image to the bottom of the section */
    left: 50%; /* Center it horizontally */
    transform: translateX(-50%); /* Adjust for centering */
    width: 100%; /* Full width of the container */
    max-width: 850px; /* Limit the maximum width */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Ensure the image is behind the boxes */
}
.contact-info {
    position: absolute; /* Absolute positioning for the contact-info */
    color: #fff; /* Text color */
    padding: 20px; /* Padding around text */
    z-index: 1; /* Ensure text is above the image */
}

.contact-info.left {
    top: 20px; /* Distance from the top of the section */
    left: 20px; /* Distance from the left of the section */
    text-align: left; /* Align text to the left */
}

.contact-info.right {
    top: 20px; /* Distance from the top of the section */
    right: 20px; /* Distance from the right of the section */
    text-align: right; /* Align text to the right */
}

.contact-info h2 {
    font-size: 2rem; /* Font size for heading */
    margin: 20px 0; /* Margin around heading */
}

.contact-details {
    margin: 20px 0; /* Margin around contact details */
}

.contact-item {
    display: flex; /* Flexbox for layout */
    align-items: center; /* Center align items */
    margin: 10px 0; /* Margin around each contact item */
}

.contact-item .icon {
    font-size: 24px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
}

.email-link {
    color: #fff; /* Text color for email link */
    text-decoration: none; /* Remove underline */
}

.carousel-inner .item {
    height: 400px; /* Adjust as needed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.item:nth-child(1) {
    background-image: url('https://snap-photos.s3.amazonaws.com/img-thumbs/960w/HZZKGVVJ6I.jpg');
}

.item:nth-child(2) {
    background-image: url('https://snap-photos.s3.amazonaws.com/img-thumbs/960w/D2ROMCUEIV.jpg');
}

.item:nth-child(3) {
    background-image: url('https://snap-photos.s3.amazonaws.com/img-thumbs/960w/PU9HHZB5QW.jpg');
}

/* Ensure the section has no padding or margin and is full width and height */
#home {
    margin: 0;
    padding: 0;
    position: relative; /* Positioning context for the carousel */
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide any overflow */
}

/* Carousel styles */
.carousel {
    height: 100%; /* Full height of the parent */
}

.carousel-inner {
    height: 100%; /* Full height of the carousel */
}

.item {
    height: 100%; /* Full height of the carousel item */
}

.item img {
    width: 100%; /* Full width of the parent */
    height: 100%; /* Full height of the parent */
    object-fit: cover; /* Cover the container without distortion */
}

/* Optional: Adjust caption styles if necessary */
.carousel-caption {
    position: absolute; /* Absolute positioning to allow alignment within the carousel item */
    left: 15px; /* Adjust as needed to control the left margin */
    bottom: 15px; /* Position from the bottom */
    text-align:left; /* Align text to the left */
    width: auto; /* Adjust width as necessary */
     /* Optional: semi-transparent background for better readability */
    padding: 10px; /* Optional: padding for spacing */
    border-radius: 5px;

}

.about-us-text {
    position: relative; /* Position relative for absolute positioning of the line */
    padding-top: 20px; /* Space for the line above the text */
}

.about-us-text::before {
    content: ""; /* Empty content for the line */
    position: absolute; /* Absolute positioning */
    top: 0; /* Align with the top of the container */
    left: 0; /* Align with the left edge */
    width: 150px; /* Width of the line */
    height: 2px; /* Height of the line */
    background-color: #0021F5; /* Color of the line */
}




#icons {
    background: #F3F6F7; /* Background color for the icons section */
    padding: 60px 20px; /* Padding around the section */
    text-align: center; /* Center align text */
}

.icon-container {
    display: flex; /* Flexbox for layout */
    justify-content: space-around; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow wrapping to the next line */
}

.icon-box {
    background-color: #fff; /* Circular background color */
    color: #000000; /* Icon and text color */
    border-radius: 50%; /* Make the background circular */
    width: 100px; /* Width of the circular background */
    height: 100px; /* Height of the circular background */
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Stack icon and text vertically */
    justify-content: center; /* Center align icon and text vertically */
    align-items: center; /* Center align icon and text horizontally */
    margin: 10px; /* Margin around each icon box */
}

.icon-box i {
    font-size: 40px; /* Icon size */
    margin-bottom: 10px;
    color: #0021F5; /* Space between icon and text */
}


.icon-box h3 {
    margin: 10px 0;
    font-size: 16px;
}

.footer {
    background-color: #011426;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 0.875rem;
}


.search-bar {
    padding: 5px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    margin-right: 25px;
}

.search-button {
    background-color: #00CAF7;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.report-issue {
    background-color: #00CAF7;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more{
    background-color: #00CAF7;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more:hover{
    background-color: #0021F5;
}

.report-issue:hover {
    background-color: #ff1a1a;
}

main {
    padding-top: 10px;
}
#about-us {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space items between */
    padding: 60px; /* Padding around the section */
    background-color: #f4f4f4; /* Background color */
    border: 1px solid #ddd; /* Border for styling */
}

.about-us-image {
    flex: 1; /* Take up 1 part of the space */
    margin-right: 20px; /* Space between image and text */
}

.about-us-image img {
    width: 80%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: rounded corners */
}

.about-us-text {
    flex: 1; /* Take up 1 part of the space */
    font-size: 16px;
    font-family: "Inter", sans-serif;  /* Font size for text */
}
.services-list {
    list-style: none; /* Remove default list styling */
    padding: 0;
}

.services-list li {
    margin-bottom: 10px; /* Space between items */
    display: flex; /* Flexbox for alignment */
    align-items: center;
    font-size: 15px; /* Center items vertically */
}

.services-list i {
    color: #0021F5; /* Color of the tick mark */
    margin-right: 10px; /* Space between icon and text */
    font-size: 30px; /* Size of the tick mark icon */
}

.services-list strong {
    font-weight: bold; /* Bold text for headings */
}
.about-us-text h2 {
    font-size: 50px; /* Font size for heading */
    margin-bottom: 10px;
    font-family: "Open Sans-SemiBold";
    color: #0021F5; /* Space below heading */
}

.about-us-text p {
    line-height: 1.6;
    font-size: 18px;
     /* Line height for readability */
}

section {
    padding: 60px;
    margin: 50px 0;
    background: #f4f4f4;
    border: 1px solid #ddd;
}

#achievements {
    background-color: #04213F; /* Background color */
    padding: 300px 20px; /* Padding */
    text-align: center; 
    /* Center align text */
}

.container {
    display: flex; /* Flexbox for layout */
    justify-content: space-around; /* Space items evenly */
    align-items: center; /* Center items vertically */
    max-width: 1200px; /* Max width for container */
    margin: 0 auto; /* Center container */
}

.achievements-section {
    position: relative;
  
    /* Ensure the parent container has a relative position */
}

/* Heading styles */
.heading {
    margin-bottom: 40px; /* Space between heading and achievements */
    font-family: 'Lato-Regular', Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
    text-align: left; /* Align heading to the left */
    position: absolute; /* Position the heading absolutely */
    top: 50px; /* Position at the top */
    left: 10px; /* Position at the left */
}
.heading h2 {
    margin: 0; /* Remove default margin */
    font-family: "Inter", sans-serif; /* Font family */
}

.heading-white {
    color: white;
    font-size: 45px; /* Adjust font size as needed */
}

.heading-blue {
    color: #00CAF7;
    font-size: 45px; /* Adjust font size as needed */
}

.achievement-box {
    background: #d9d9d94f; /* Background color */
    padding: 20px; /* Padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    width: 30%; /* Width of each box */
}

.achievement-number {
    font-size: 36px; /* Font size for the number */
    color: #ffffff; /* Text color */
    margin: 0; /* Remove margin */
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    /* Font family */
}

.achievement-box p {
    font-size: 16px; /* Font size for description */
    margin: 10px 0 0; /* Margin around text */
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff; /* Font family */
}

.services-section {
    background-color: white;
    padding: 60px 20px; /* Adjust padding as needed */
    text-align: center;
}

.services-heading {
    color: #00CAF7;
    font-size: 36px; /* Adjust font size as needed */
    margin-bottom: 10px;
}

.services-subheading {
    font-size: 18px; /* Adjust font size as needed */
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust gap as needed */
}

.service-box {
    background-color: #f9f9f9; /* Adjust background color if needed */
    border: 1px solid #ddd; /* Optional border */
    border-radius: 10px;
    padding: 20px;
    width: 300px; /* Adjust width as needed */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional shadow */
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align items */
    justify-content: center; /* Center align content vertically */
}

.responsive-image {
    width: 100%;
    height: auto;
}
.service-box:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* Shadow on hover */
}

.service-icon {
    font-size: 40px; /* Adjust icon size as needed */
    color: #00CAF7; /* Icon color */
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 24px; /* Adjust font size as needed */
    margin: 10px 0;
}

.service-box p {
    font-size: 16px; /* Adjust font size as needed */
    margin-bottom: 20px;
}

.service-button {
    display: inline-block;
    background-color: #00CAF7; /* Button background color */
    color: white; /* Button text color */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px; /* Adjust font size as needed */
}

.service-button:hover {
    background-color: #009BCC; /* Darker shade on hover */
}

#news {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.news-heading {
    margin-bottom: 20px;
}

.news-title {
    font-size: 24px;
    color: #00CAF7;
    margin: 0;
}

.news-subtitle {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(33.333% - 20px); /* Adjust width as needed */
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.blog-post:hover {
    transform: scale(1.05); /* Slightly enlarge the container */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow effect */
}
.blog-image {
    width: 100%;
    height: auto;
}

.blog-title {
    font-size: 18px;
    color: black;
    margin: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.blog-content {
    font-size: 14px;
    color: #666;
    margin: 10px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin: 10px;
}
