@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

 
 
 /* General body reset */
 body {
    font-family: 'Roboto', Arial, sans-serif; /* Updated font-family */
    margin: 0;
    padding: 0;
}

   /* Header section */
   header {
display: flex;
align-items: center;
justify-content: space-between; /* Space between brand and nav */
background-color: #1a1a2e; /* Professional dark blue shade */
color: white;
padding: 5px 20px; /* Reduced padding */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: fixed; /* Fixed positioning relative to the page */
top: 0;
width: 100%;
z-index: 1000; /* Ensure it's on top */
}

.brand a {
text-decoration: none;
color: inherit;
cursor: pointer; /* Change cursor to pointer */
display: inline-block; /* Ensure it behaves like a block element */
outline: none; /* Remove focus outline */
position: relative;
z-index: 1000; /* Ensure it's above other elements */
pointer-events: auto; /* Allow clicking */
}

.brand a:focus {
outline: none; /* Remove focus outline */
}

.brand a::selection {
background: none; /* Prevent text selection */
}

.brand span {
color: #f5a623; /* Highlight color */
}

nav {
display: flex;
align-items: center; /* Align items vertically in the center */
margin-left: 20px; /* Move the navigation options 20px to the left */
}

nav a {
color: white;
text-decoration: none;
margin: 0 20px; /* Adjusted margin */
font-size: 16px;
transition: color 0.3s ease-in-out;
}


nav a:last-child {
margin-right: 50px; /* Add extra space after the last navigation link */
}

nav a:nth-last-child(2) {
margin-right: 70px; /* Add extra space to the second last navigation link */
}
nav a:hover {
color: #f5a623; /* Accent color for hover effect */
}
/* Hero section */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Full screen height */
    
}
.heroaboutus {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 35vh;
    margin-top: 70px; /* Pushes it below the fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}
.heroaboutus-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures no extra spacing or stretching */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Sends image behind the text */
}

.heroaboutus-text {
    color: white;
    font-size: 2rem;
    text-align: center;
    position: relative;
    z-index: 1; /* Ensures text appears above the image */
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}
.hero img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.hero img.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 10%;
    right: 5%;
    text-align: right;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Enhanced shadow */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 20px;
    border-radius: 10px;
}
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 10px 0 0;
}
button.prev, button.next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
}

button.prev { left: 20px; }
button.next { right: 20px; }

button:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with transparency */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.trusted-partner {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5; /* Light background color */
    margin-top: -150px; /* Reduce space by pulling it up */
}

.trusted-partner h2 {
    font-family: 'Poppins', Arial, sans-serif; /* Updated font-family */
    font-size: 38px;
    color: #1a1a2e; /* Dark blue color */
}

.write-up {
    font-family: 'Roboto', Arial, sans-serif; /* Use a professional font */
    font-size: 16px;
    color: #333; /* Dark grey color for readability */
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the text */
    line-height: 1.6; /* Improve line spacing */
}
.floating-button {
position: fixed;
top: 50%; /* Center vertically */
right: -88px; /* Adjust for exact centering */
transform: translateY(-50%) rotate(90deg); /* Rotate text */
background-color: #f5a623; /* Accent color */
color: white;
padding: 12px 20px;
border-radius: 5px; /* Slightly rounded corners */
font-size: 16px;
text-decoration: none;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
transition: 0.3s;
white-space: nowrap; /* Prevent text wrapping */
}

.floating-button:hover {
background-color: #d48b1d;
}

.popup-overlay {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 1000; /* Ensures it's above everything */
}

.popup-content {
background: white;
padding: 25px;
border-radius: 10px;
width: 75%;
height: 75%;
max-width: 900px;
max-height: 700px;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding-top: 20px; /* Reduce top padding */
z-index: 1001; /* Ensure it's above overlay */
}
.popup-title {
font-family: 'Poppins', sans-serif;
font-size: 32px;
font-weight: bold;
color: #004085; /* Deep blue for a strong, corporate feel */
text-align: center;
margin-bottom: 5px;
font-weight: bold;
}

.popup-description {
font-family: 'Raleway', sans-serif;
font-size: 20px;
color:  #004085;  /* Dark gray for a subtle, professional contrast */
text-align: center;
margin-bottom: 15px;
font-weight: bold;
}

.close-btn {
position: absolute;
top: 10px; right: 15px;
font-size: 48px; /* Increased size */
cursor: pointer;
color: #666;
font-weight: bold; /* Makes it more prominent */
}

.close-btn:hover {
color: #000;
}


input, textarea {
width: 100%;
padding: 10px;
margin: 6px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
button {
background: #007bff;
color: white;
padding: 12px;
border: none;
cursor: pointer;
width: 100%;
border-radius: 5px;
font-size: 18px;
font-weight: bold;
}
button:hover {
background: #0056b3;
}
.form-row {
display: flex;
gap: 15px;
margin-bottom: 30px; /* Adjust space as needed */
}

.form-row label,
.form-row input {
width: 50%;
}
label {
font-weight: bold;
font-size: 16px;
margin-bottom: 5px;
display: block;
color: #333; /* Dark grey for better readability */
}
.form-row label {
display: block;
margin-bottom: 5px;
}
label {
font-family: 'Arial', sans-serif; /* Use the same font as Name, Email, etc. */
font-size: 14px; /* Ensure same size */
font-weight: 600; /* Match the boldness */
color: #444; /* Adjust color if needed */
}
.checkbox-label {
display: flex;
align-items: center;
gap: 8px; /* Adjust space between checkbox and text */
font-size: 14px; /* Match the font size with other form elements */
}

.checkbox-label input {
width: 16px;
height: 16px;
}
textarea {
margin-bottom: 25px;

}

.styled-button {
background-color: #004085;;
color: white;
font-size: 18px;
font-weight: bold;
padding: 12px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}

.styled-button:hover {
background-color: #004085;;
transform: scale(1.05);
}
button {
background-color: #004085;; /* Professional blue */
color: white;
font-size: 16px;
font-weight: 500;
padding: 10px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
width: auto;
display: inline-block;
}

button:hover {
background-color: #003d80; /* Darker blue for hover effect */
}

.g-recaptcha {
margin-right: auto; /* Pushes reCAPTCHA to the right */
}
.recaptcha-button-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 15px; /* Adjust spacing */
}

.form-footer {
display: flex;
align-items: center;
gap: 20px; /* Space between reCAPTCHA and button */
}

.send-button {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #003d80;
color: white;
border: none;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-left: -10px; /* Adjust to move left */
}

.send-button:hover {
background-color: #003d80;
}

.privacy-box {
    font-family: 'Open Sans', Arial, sans-serif; /* Professional font */
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 50px auto;
    border: 1px solid #ddd;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}
.privacy-box h2 {
    margin-bottom: 20px; /* Adds space below the heading */
}

























.trusted-partner {
    padding: 50px 20px;
    background: #f8f9fa; /* Light background for contrast */
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 20px;
}

.text-content {
    flex: 1;
    animation: fadeInLeft 1s ease-in-out;
}

.text-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
}

.text-content p {
    font-size: 1.1rem;
    color: #333;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    font-size: 1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.text-content ul li i {
    color: #f5a623;
    margin-right: 10px;
}

.image-content {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1s ease-in-out;
}

.image-content img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #f5a623;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 20px;
}

.timeline-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #1a1a2e;
}

/* Animation Trigger */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation */
.timeline-item.show {
    animation: fadeInUp 0.8s ease-out;
}






.why-choose-us {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.grid-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.grid-item i {
    font-size: 2.5rem;
    color: #f5a623;
    margin-bottom: 15px;
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.grid-item p {
    font-size: 1rem;
    color: #333;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-item.show {
    opacity: 1;
    transform: translateY(0);
}






.service-title {
    text-align: center;
    margin: 40px 0;
}

.service-title h2 {
    font-size: 2.5em;
    font-weight: bold;
}

.service-title p {
    font-size: 1.2em;
    color: #555;
}

.service-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    gap: 10px;
}

.service-images img {
    flex: 1; /* Each image takes equal space */
    width: 250px;
    height: 250px; /* Adjust as needed */
    object-fit: cover;
}

.service-images img:hover {
    transform: scale(1.05);
}


/* Service Banner Styling */


.service-banner.show {
    opacity: 1;
    transform: translateY(0);
}

/* Service Banner Styling */
.service-banner {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centers content horizontally */
    justify-content: center;  /* Centers content vertically */
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e3e7eb);
    padding: 50px 0;  /* Ensures equal spacing */
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;  /* Ensures text inside is centered */
}

#service-description {
    font-size: 16px;
    color: #555; /* Professional, neutral color */
    font-style: normal; /* Ensure it's not italic */
    line-height: 1.6; /* Add spacing between lines for readability */
    font-family: 'Arial', sans-serif; /* Use a clean, professional font */
    max-width: 60%; 
    margin: 0 auto; /* Center the content horizontally */
    text-align: center; /* Align the text to the left */
}

.service-description h2 {
    font-size: 2em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;  /* Reduce space below title */
    margin-top: -50px;  /* Move title slightly up */
    font-family: 'Poppins', sans-serif;
}

.service-description p {
    font-size: 1.2em;  /* Slightly smaller than service descriptions */
    color: #777;  /* Softer gray for a subtle look */
    font-style: italic;  /* Adds a slight emphasis */
}





.service-boxes {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.service-boxes h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.grid-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.grid-item p {
    font-size: 1rem;
    color: #6c757d;
}


