* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: white;
    overflow-x: hidden;
   
}



nav {
    width: 100%;
    z-index: 1000;
    position: fixed;
    height: 89px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 56px;
    color:#000000;
    background: #ffffff;
}

.image img {
    width: 40%; 
    max-width: 200px; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 6px;
}


.nav-links li a {
    color: black;
    font-weight: 400;
    text-decoration: none;
    padding: 10px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #1196d8; /* Change text color to green on hover */
}

.nav-links li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #1196d8;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
    width: 100%; /* Show the underline on hover */
}


.hero {
    position: relative;
    display: flex;
    justify-content: flex-end; /* Moves content to the right */
    align-items: center;
    height: 117vh;
    text-align: right; /* Align text to the right */
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* Ensures the image stays behind */
}

.hero {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 117vh;
    text-align: right;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Add an overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2; /* Ensures content is above overlay */
    color: white;
    padding: 20px;
    text-align: right;
}

.hero h1 {
    font-family: "Poppins", Sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: rgb(1, 1, 26);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Adds shadow for better visibility */
}

.hero p {
    color: #1196d8;
    width: 345px;
    font-size: 15px;
   
}


.buttons {
    margin-top: 20px;
}

 .btn-secondary {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}

.btn-secondary {
    margin-right: 162px;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius:5px;
    background: transparent;
    border: 2px solid #1196d8;
    color: #1196d8;
}
.btn-secondary:hover{
    background-color: #ffffff;
    color: #1196d8;
}
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    width: 100vw; /* Makes it full width */

}

.about-container {
    display: flex;
    align-items: center;
    width:100vw;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 67px 0 67px 300px;

}
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px; /* Slight rounding for a soft look */
    width: 300px; /* Adjust as needed */
    height: auto;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Soft shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Image inside */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.about-image:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.4);
}

/* Optional: Add a subtle border effect */
.about-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.2); /* Light border effect */
    border-radius: 15px;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.about-image:hover::after {
    opacity: 1;
}


/* Content Styling */
.about-content {
    margin-left: 173px;

  
}
.about-content h2{
    font-size: 19px;
    color: #1196d8;
}
.about-content h3{
    font-size: 40px;
    color: rgb(1, 1, 26);
}
.company-name {
    color: #29b379;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    color: #1c2b46;
    margin-bottom: 10px;
}

.about-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
}

/* Button Styling */
.btn-primary {
    background-color: #1196d8;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.btn-primary:hover {
    background-color:rgb(1, 1, 26);
}
/* Section Title */
.section-title {
    text-align: center;
    font-size: 44px;
    color: #0073e6;
    margin-bottom: 20px;
    font-weight: bold;
}


.read-more:hover {
    color: #0073e6;
}

/* Responsive Design */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Button Styling */
.more-services-btn {
    margin-top: 30px;
    padding: 12px 24px;
    background: #24a0ed;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    
}

.more-services-btn:hover {
    background: #1d82ca;
}
.button-container {
    text-align: left;
    margin-top: 20px;
    padding-left: 45px;
}
.contact-section1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 0;
}

.container1 {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.overlay-text {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);  /*Transparent black */
    color: white;
    padding: 159px 20px 10px 105px;
    font-size: 80px;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    font-weight: bolder;
}
.image-section1 {
    width: 50%;
    position: relative;
    
}

.image-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
    
}

.form-section {
    width: 50%;
    padding: 40px;
    background: #1c2b46;
    color: white;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

textarea {
    height: 100px;
}

.checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.checkbox input {
    margin-right: 10px;
}

.btn {
    background: #1d82ca;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center; /* Align button to the left */
    width: 100%; /* Adjust width as needed */
}

.btn:hover {
    background: #0a2342;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section, .form-section {
        width: 100%;
    }

    .btn {
        width: 100%; /* Full width button on small screens */
        text-align: center;
    }
}



.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 85%;
    margin: auto;
}
.footer {
    background: url('./Images/Footer.png') no-repeat center center/cover; /* Add your image path */
    color: #1196d8; /* Ensure text is visible */
    padding: 40px 0;
}

.footer-section {
    width: 22%;
    padding: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1196d8; /* Ensure headings are readable */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 7px;
}

.footer-section ul li a {
    color: #1196d8; /* Change to white for better visibility */
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    text-decoration: underline;
    color: #ffffff; /* Optional hover effect */
}

/* Contact Info Section */
.contact-info p {
    color: #1196d8; /* Ensure text is readable */
}

/* Social Media Icons Styling */
.social-icons a {
    color: white;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffffff; /* Change color on hover */
}


.logo-section img {
    width: 80px;
    margin-bottom: 10px;
}

iframe {
    margin-top: 10px;
    border-radius: 5px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 5px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #1196d8;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .social-icons a {
        font-size: 18px;
    }
}

.faq-container {
   
    width: 85%;
    background:#ffffff;
    padding: 20px;
    margin: 80px 129px;
    border-radius: 10px;
    color: #000000;
    box-shadow: 10px 6px 10px 10px rgba(27, 108, 167, 0.3);
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-in-out;
    color: #555;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 10px;
}

.icon {
    transition: transform 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}
.business-solutions {
    padding: 50px 10%;
}

.section-title1 {
    color: #1d82ca;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 30px;
    color: #0a2342;
}

/* Solutions Container */
.solution-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Solution Box */
.solution-box {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

/* Number Styling */
.number {
    font-size: 22px;
    font-weight: bold;
    color: #1d82ca;
}
.content {
    border-left: #0a2342;
}

/* Content Styling */
.content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #1d82ca;
}

.content p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
    line-height: 1.6;
}

/* Divider */
.divider {
    width: 25px;
    height: 2px;
    background-color: #1f3b6f;
    margin: 8px 0;
}
.footer1 {
    font-size: 12px;
    text-align: center;
    padding: 10px;
    background-color: white;
    color: #000000;
    bottom: 0;
    width: 100%;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 20px; /* Adds space between divs */
    margin: 30px 90px 50px 90px;
}

.service-box {
    display: flex;
}

.service-number {
    font-size: 24px;
    color: #1e73be;
    font-weight: bold;
    margin-right: 15px;
}

.service-content {
    
    padding-left: 15px;
   
}

.service-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000000;
}
.service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.read-more {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    color: #1e73be;
}



