 
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan", sans-serif;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    color: #120101;
    padding: 1rem;

   
}

#navdisplayclass{

    justify-content: space-around;
}

.navbar a {
    color: #0d0f01;
    text-decoration: none;
    margin: 0 1rem;
}

.navbar a:hover {
    text-decoration: underline;
}

.menu {
    display: flex;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #0a0000;
}

/* .footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
} */

iframe {
    width: 100%;
   /*height: calc(100vh - 160px);   Adjust for navbar and footer height */
   height:100vh; 
    border: none;
}

@media (max-width: 768px) 
{
    .menu 
    {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color:  #fff;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .menu a 
    {
        margin: 1rem 0;
    }

    .menu.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.menu-toggle.hidden {
    display: none;
}




/*========================================================Start Courosal Styles======================================================= */

 /* Carousel Section */
.carousel-buttons {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.carousel-buttons button {
    margin: 5px;
    border: 3px solid white; /* Add white border */
    color: white; /* Set text color to white */
    background-color: transparent; /* Set background to transparent */
    padding: 8px 16px; /* Adjust padding */
    font-size: 16px; /* Base font size */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer;
}

.carousel-buttons button:hover {
    background-color: white; /* White background on hover */
    color: #333; /* Dark text color on hover */
    border-color: #333; /* Dark border on hover */
}

.carousel img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-buttons button {
        padding: 6px 12px; /* Reduce padding for smaller screens */
        font-size: 14px; /* Adjust font size */
    }

    .carousel img {
        max-height: 300px; /* Reduce image height for smaller screens */
    }
}

@media (max-width: 480px) {
    .carousel-buttons {
        bottom: 10%; /* Adjust position */
    }

    .carousel-buttons button {
        padding: 4px 10px; /* Further reduce padding */
        font-size: 12px; /* Smaller font size for very small screens */
    }

    .carousel img {
        max-height: 200px; /* Further reduce image height */
    }
}

/***************************************************************End Courosal Styles**************************************************************/

/***************************************************************Start About Companey**************************************************************/

.AboutCompany{
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50vh;
            margin: 0;
            
            /* background-color: #f4f4f4; */
        }
       .text-box {
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background: linear-gradient(-45deg, #B0E0E6, #87CEFA, #1E90FF, #4682B4);
    background-size: 400% 400%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease-in-out;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    animation: gradientBG 5s infinite linear;
    position: relative;
    overflow: hidden;
}

.text-box::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: skyblue;
    border-radius: 50%;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out, top 0.5s ease-in-out, right 0.5s ease-in-out;
    z-index: 0;
}

.text-box:hover::before {
    width: 120%;
    height: 120%;
    top: 0;
    right: 0;
    border-radius: 0;
}

.text-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
}

.text-box h1, .text-box p {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .text-box {
        width: 90%;
        font-size: 1rem;
        padding: 15px;
    }
}


/***************************************************************END About Companey**************************************************************/



/********************************************************************Start Industries We Serve Styles*******************************************/
/* Responsive Styles For Carousel Section */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    text-align: center;
}
.brake {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 3rem;
}
h1 {
    font-size: 3rem;
    margin-top: 0;
    color: #111;
}

p {
    font-size: 1rem;
    color: #555;
}

/* Center the heading and description */
.industries {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Full viewport height */
    padding: 1rem;
    text-align: center;
}

/* Responsive Grid Layout */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
    width: 100%;
    padding: 0 1rem;
}

.industry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industry p {
    margin-top: 1rem;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
    text-align: center;
}

/* Hexagon Shape Using clip-path */
.hexagon {
    position: relative;
    width: 100px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hexagon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #08329b;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hexagon::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 78%;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 2;
}

.hexagon img {
    position: relative;
    z-index: 3;
    width: 40px;
    height: 40px;
}

.hexagon:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .hexagon {
        width: 90px;
        height: 104px;
    }

    .hexagon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hexagon {
        width: 80px;
        height: 92px;
    }

    .hexagon img {
        width: 30px;
        height: 30px;
    }

    .industries-grid {
        gap: 1rem;
    }

    .industry p {
        font-size: 0.8rem;
    }
}


/********************************************************************END Industries We Serve Styles*******************************************/








/*******************************************************Start Styles For Our Best Products*******************************************************/
 /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f8f9fa; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

/* Main Container Styling */
.container {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
}

/* Title and Subtitle */
.title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Card Container */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Card Styling */
.card {
    background: linear-gradient(145deg, #5d6168, #0effeae6);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: calc(50% - 20px);
    max-width: 400px;
    height: 220px;
    padding: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #fff;
    
    /* Animation when page loads */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards, musicWave 2s infinite ease-in-out alternate;
}

/* Card Title */
.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Card Description */
.card p {
    font-size: 0.9rem;
    color: #fff;
}

/* Hover Effects */
.card:hover {
    background-color: #444;
    color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Specific Hover for Document AI */
.document-ai:hover {
    background-color: #2463eb;
}

/* Music-inspired Wave Animation */
@keyframes musicWave {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Fade-in Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}



/*******************************************************END Styles For Our Best Products*******************************************************/




/*********************************************************Start Contact Us Page Styles************************************************************/
/*Added Navaneeth*/
 /*Contact US Page */
 #ContactUsheader {
    text-align: center;
}

@media (max-width: 480px) {
    #ContactUsheader {
        text-align: center;
    }

}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

#contactpage {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    background-color: #fff;
    gap: 30px;
    /* Decreased gap between the form and services list */
}

/* Left Section - Services List */
/* Left Section - Services List */
.services-list {
    width: 60%;
    /* Increased width for services list */
    margin-bottom: 30px;
    /* Increased margin for spacing */

    margin-left: 100px;
    /* Ensure there's no margin on the right */
}

.services-list h2 {
    font-size: 1.8rem;
    /* Increased font size for heading */
    font-weight: bold;
    margin-bottom: 20px;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 1.5rem;
    /* Increased font size for list items */
    margin: 20px 0;
    /* Increased spacing between list items */
    display: flex;
    align-items: center;
}

.services-list li i {
    color: #007bff;
    margin-right: 15px;
    /* Increased margin for better alignment */
}


/* Right Section - Contact Form */
.contact-form {
    width: 48%;
    /* Increased width for form */
}

.contact-form input,
.contact-form textarea {
    width: 70%;
    /* Full width of input fields */
    padding: 12px;
    /* Increased padding */
    margin-bottom: 20px;
    /* Increased margin between inputs */
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f1f1f1;
    font-size: 1.2rem;
    /* Increased font size for better readability */
}

.contact-form textarea {
    height: 180px;
    /* Increased height for textarea */
    resize: none;
}

/* Submit Button */
.contact-form button {
    background-color: #2568d8;
    color: #fff;
    padding: 15px 30px;
    /* Increased padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    /* Increased font size */
    width: 70%;
    /* Full-width button */
}

.contact-form button:hover {
    background-color: #1a4ca0;
}

/* File Upload Button */
.upload-btn {
    display: inline-block;
    background-color: #4da8f3;
    /* Sky blue color */
    color: #fff;
    padding: 12px 25px;
    /* Increased padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    /* Slightly larger font size */
    text-align: center;
    transition: background-color 0.3s ease;
    width: 70%;
    /* Full-width button */
}

.upload-btn:hover {
    background-color: #007bff;
    /* Darker blue on hover */
}

/* File Name Display */
#fileName {
    margin-top: 10px;
    font-size: 1rem;
    /* Increased font size */
    color: #333;
    word-wrap: break-word;
    /* Ensures long file names wrap properly */
}

/* Responsive Design */
@media (max-width: 768px) {
    #contactpage {
        display: flex;
        flex-direction: column;
        /* Stack items vertically */
        padding: 20px;
    }

    .services-list,
    .contact-form {
        width: 100%;
        /* Full width for both sections */
        margin-bottom: 20px;
        /* Space between sections */
        margin-left: 0;
        margin-right: 0;
        /* Center align */
    }

    .services-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center items for better layout */
    }

    .services-list h2 {
        text-align: center;
        font-size: 1.5rem;
        /* Adjust font size */
    }

    .services-list li {
        font-size: 1.2rem;
        /* Adjust font size for mobile */
        margin-bottom: 10px;
        /* Add spacing between list items */
        text-align: center;
    }

    #Ourservices {
        margin-right: 0;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1.1rem;
        /* Adjust font size for mobile */
        padding: 14px;
        /* Adjust padding for mobile */
        width: 100%;
        /* Ensure inputs take full width */
        box-sizing: border-box;
    }

    .contact-form button {
        width: 100%;
        /* Full-width button */
        padding: 14px 20px;
        /* Adjust padding for mobile */
    }
}

@media (max-width: 480px) {
    #contactpage {
        padding: 15px;
        /* Adjust padding for very small screens */
    }

    .services-list h2 {
        font-size: 1.3rem;
        /* Smaller font size for very small screens */
    }

    .services-list li {
        font-size: 1.1rem;
        /* Adjust font size for mobile */
        margin-bottom: 8px;
        /* Reduce spacing for smaller screens */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        /* Adjust font size for inputs and text areas */
        padding: 12px;
        /* Adjust padding */
        width: 100%;
        /* Ensure inputs take full width */
        box-sizing: border-box;
    }

    .contact-form button {
        font-size: 1rem;
        /* Adjust button font size */
        padding: 12px 18px;
        /* Adjust button padding */
        width: 100%;
        /* Ensure button takes full width */
    }
}


/* Hidden File Input */
#fileInput {
    display: none;
}

/* File Upload Info */
.file-upload-info {
    font-size: 1rem;
    margin-top: -10px;
    margin-bottom: 15px;
}

/* Responsive Adjustments for File Upload */
@media (max-width: 768px) {
    .upload-btn {
        width: 70%;
        /* Full width on smaller screens */
        font-size: 1rem;
        /* Slightly smaller font */
        padding: 10px 20px;
        /* Adjust padding */
    }

    #fileName {
        font-size: 0.9rem;
        /* Smaller font size for file name */
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .upload-btn {
        width: 70%;
        /* Full width on very small screens */
        font-size: 0.9rem;
        /* Smaller font size */
        padding: 10px 15px;
        /* Compact padding */
        margin-right: 2px;
        /* Added right margin */
    }

    #fileName {
        font-size: 0.8rem;
        /* Further reduced font size */
        text-align: center;
        /* Center align file name for small screens */
    }
}

/* Contact Details Section */
/* Default Styles for Contact Details */
#contact-details {
    display: flex;
    justify-content: space-between;
    /* Distribute space between items */
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
    align-items: center;
    /* Center align items vertically */
    padding: 20px;
    /* Padding for overall spacing */
}

.contact-item {
    display: flex;
    flex-direction: column;
    /* Stack icon and text vertically */
    align-items: center;
    /* Center align icon and text */
    margin-right: 30px;
    /* Adjust right margin */
    margin-bottom: 20px;
    /* Space between contact items */
    justify-content: center;
    /* Center content horizontally */
}

.contact-item i {
    font-size: 2rem;
    /* Icon size */
    color: #007bff;
    /* Icon color */
    margin-bottom: 10px;
    /* Space between icon and text */
}

/* Responsive Design for Tablets and Smaller Screens (max-width: 768px) */
@media (max-width: 768px) {
    #contact-details {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center align contact items */
        margin-right: 0;
        /* Remove right margin */
        margin-left: 20px;
        /* Add left margin */
    }

    .contact-item {
        margin-right: 0;
        /* Remove right margin */
        margin-bottom: 20px;
        /* Maintain space between items */
        text-align: center;
        /* Center text and icons */
    }

    .contact-info {
        font-size: 1.1rem;
        /* Adjust font size for mobile */
    }

    .contact-item i {
        font-size: 1.8rem;
        /* Adjust icon size for mobile */
    }
}

/* Responsive Design for Very Small Screens (max-width: 480px) */
@media (max-width: 480px) {
    #contact-details {
        padding: 10px;
        /* Add padding for very small screens */
        align-items: center;
        /* Ensure items are centered */
        margin-left: 10px;
        /* Add smaller left margin for very small screens */
    }

    .contact-item {
        margin-bottom: 15px;
        /* Reduced space between items */
        text-align: center;
        /* Center text and icons */
    }

    .contact-info {
        font-size: 1rem;
        /* Smaller font size for very small screens */
    }

    .contact-item i {
        font-size: 1.5rem;
        /* Smaller icon size for very small screens */
    }
}

/*Map Css*/
#MapPlace {
    height: 30px;
}


#Mapid {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Optional: maximum width for larger screens */
    margin: 0 auto;
    /* Center the map horizontally */
}

#Mapid iframe {
    width: 100%;
    /* Make iframe width responsive */
    height: auto;
    aspect-ratio: 4 / 3;
    /* Maintain a 4:3 aspect ratio (based on original 600x450 size) */
    border: 0;
}

/* Mobile Devices (max-width 480px) */
@media (max-width: 480px) {
    #Mapid iframe {
        aspect-ratio: 16 / 9;
        /* Adjust to 16:9 aspect ratio on smaller screens */
    }
}

/* Tablets (max-width 768px) */
@media (max-width: 768px) {
    #Mapid iframe {
        aspect-ratio: 16 / 9;
        /* Adjust aspect ratio for tablets too */
    }
}

/* Larger Desktops (greater than 1200px) */
@media (min-width: 1200px) {
    #Mapid iframe {
        aspect-ratio: 4 / 3;
        /* Maintain original aspect ratio on larger screens */
    }
}
/********************************************************End Contact Us Page Styles**************************************************************/

/******************************************************* Start Footer Styles ******************************************************************/


     /* General Reset */
     /* body, h3, p, ul, li, a {
        margin: 0;
        padding: 0;
        list-style: none;
        text-decoration: none;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
    }
    
    .footer {
        background-color: #0b1c34;
        color: #fff;
        padding: 40px 20px;
    }
    
    .container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    
    .footer-section {
        flex: 1 1 200px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #ffffff;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        color: #cfcfcf;
        font-size: 14px;
    }
    
    .footer-section ul li a:hover {
        color: #fff;
    }
    
    .logo {
        width: 100px;
        margin-bottom: 20px;
    }
    
    .social-icons a {
        font-size: 18px;
        margin-right: 15px;
        color: #cfcfcf;
        transition: 0.3s;
    }
    
    .social-icons a:hover {
        color: #fff;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #cfcfcf;
    }
    
    .footer-bottom a {
        color: #cfcfcf;
        margin: 0 10px;
    }
    
    .footer-bottom a:hover {
        color: #fff;
    }
     */
    /* Responsive Design */
    /* @media (max-width: 768px) {
        .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    
        .footer-section {
            flex: 1 1 100%;
        }
    
        .footer-section ul li {
            margin-bottom: 5px;
        }
    
        .social-icons a {
            margin: 0 5px;
        }
    } */
    



/******************************************************End Footer Styles**********************************************************************/






















/******************************************************Old Design Styles **************************************************************/


/* h1{
    font-size: 50px;
    line-height: 64px;
    color: #222;
}
h2{
    font-size: 46px;
    line-height: 54px;
    color: #222;
}
h4{
    font-size: 20px;
     
    color: #222;
}

h6{
    font-size: 12px;
    font-weight: 600px;
    color: #222;
}
p{
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0 ;
}
.section-p1{
padding: 40px 80px;
}

.section-m1{
    margin: 40px 0px;
    }
  body {
    width: 100%;
  }  

 */
  /* start Navbar Styles */

/* #header{

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #E3E6F3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    position: sticky;
    z-index: 999;  
    top: 0;
    left: 0;

}

#navbar{

    display: flex;
    align-items: center;
    justify-content: center;

}
#navbar li{
    list-style: none;
    padding: 0  20px;
    position: relative;
     
}
#navbar li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.08s;
}


#navbar li a:hover,
#navbar li a.active{
    color:#088178 ;
    

}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 30px;

}
 */

/*Home Page */
/* #hero {
     background-image: url("../Images/hero4.png"); 
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

#hero button{
    background-image: url("../Images/button.png");
    background-color: transparent;
    color:  #088178;
    border:none;
    padding:14px 80px 14px 65px ;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

#hero h1{
    color: #088178;
}
#hero h4{
    padding-bottom: 15px;

}


#feature .fe-box{
   width:180px ;
   text-align: center;
   padding: 25px 15px;
   box-shadow: 20px 20px 34px rgba(0,0,0,0.03);
   border: 2px solid #ccE7d0;
   border-radius: 4px;
   margin: 15px 0;
}

#feature .fe-box:hover{
    box-shadow: 20px 10px 64px rgba(70,62,222,0.1);
}
#feature .fe-box img{
    width: 100%;
    margin-bottom: 10px;
}
#feature .fe-box h6{
    padding:  9px 8px 6px 8px ;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;


}
#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer{
   
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .col{
    display: flex;
    flex-direction:column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo{
    margin-bottom: 30px;
}

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}


footer a{
    font-size: 13px;
    text-decoration: none;
    columns: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}


footer .follow i {
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}


footer .install .row  img{
    border: 1px solid #088178;
    border-radius:6px ;
}

footer .install img{
  margin: 15px 0px 0px;
}

#NewsLetter{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(../Images/Banner/b14.png);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color:#041e42 ;
}

#NewsLetter h4{
    color: #ffff;
    font-weight: 700;
    font-size: 22px;
}

#NewsLetter p{
    color: #ffff;
    font-weight: 600;
    font-size: 15px;
}
#NewsLetter p span{
color: #871414;
}


.NewsLetter-Form button{
    background-color: #088178;
    color: #ffff;
    white-space: nowrap;
    padding: 6px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.NewsLetter-Form input{
    height: 3.125rem;
    padding: 0 1.2em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 5px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

}

#NewsLetter .NewsLetter-Form{
    display: flex;
    width: 30%;

}

#mobile{
    display: none;
    align-items: center;
} */

/* Start Media Query */

/* 
@media (max-width:799px){
    #navbar {
        display: flex;
        flex-direction: column;
        align-items:flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0,0,0,0.1);
        padding: 80px 0 0 10px ;
        transition: 0.3s;
    }
    #mobile{
        display: flex;
        align-items: center;
    }

    #mobile i{
        color: #1a1a1a;
        font-size: 24px;
    }
    #navbar.active{
        right: 0px;

    }

} */



/*------------------------------------Footer Added by Navaneeth----------------------------------------------*/

/* Footer Base Styles */
.footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f4f4f4;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-section img {
    max-width: 100px;
    margin: 10px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 5px;
    font-size: 20px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0d6efd;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        font-size: 14px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .social-icons a {
        font-size: 18px;
    }
}


/*Start Clients CSS
==========================*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    color: #1e3c72;
    animation: fade-in 3s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1e3c72, #2a5298, #1e3c72, #2a5298);
    background-size: 400% 400%;
    animation: gradient-animation 8s ease infinite;
    z-index: 1;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.overlay {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.overlay h1 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    animation: fade-in 3s ease;
}

.logos-wrapper {
    display: flex;
    gap: 30px;
    animation: scroll-left 10s linear infinite;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.logos-wrapper img {
    max-height: 40px; /* Reduced size */
    width: auto;
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner {
        height: 250px;
    }

    .heading {
        font-size: 1.8rem;
    }

    .overlay h1 {
        font-size: 1.5rem;
    }

    .logos-wrapper {
        animation-duration: 12s;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 200px;
    }

    .heading {
        font-size: 1.5rem;
    }

    .overlay h1 {
        font-size: 1.2rem;
    }

    .logos-wrapper {
        animation-duration: 15s;
        gap: 20px;
    }

    .logos-wrapper img {
        max-height: 30px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 150px;
    }

    .heading {
        font-size: 1.2rem;
    }

    .overlay h1 {
        font-size: 1rem;
    }

    .logos-wrapper {
        gap: 15px;
    }

    .logos-wrapper img {
        max-height: 25px;
    }
}
 /*Ended Clients CSS
==========================*/
/***********************************************************START Whychoose Us***********************************************/
       .why-choose-us {
    /*background: linear-gradient(135deg, #e3f2fd, #bbdefb);*/
    color: #333;
    padding: 60px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease-in-out;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s forwards ease-in-out;
    color: #01579b;
}

.why-choose-us .points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.why-choose-us .point {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.5s ease-in-out;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUp 0.5s forwards ease-in-out;
    position: relative;
    overflow: hidden;
}

.why-choose-us .point::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: skyblue;
    border-radius: 50%;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out, top 0.5s ease-in-out, right 0.5s ease-in-out;
    z-index: 0;
}

.why-choose-us .point:hover::before {
    width: 120%;
    height: 120%;
    top: 0;
    right: 0;
    border-radius: 0;
}

.why-choose-us .point:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #0288d1, #01579b);
    color: #fff;
}

.why-choose-us .point h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #0277bd;
    transition: color 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.why-choose-us .point:hover h3 {
    color: #fff;
}

.why-choose-us .point p {
    font-size: 1rem;
    color: #555;
    transition: color 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.why-choose-us .point:hover p {
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 2rem;
    }
    .why-choose-us .point {
        width: 90%;
    }
}


/*********************************************End Whychoose Us************************************************************/

/*********************************************Adding style for Data engierring,anaytics************************************************************/
/* Apply a sky-blue gradient background */



