<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

body {
    margin: 0; /* Remove default margin */
    font-family: Arial, sans-serif;
    background-image: url('/images/bg.jpg'); /* Ensure the path is correct */
    background-size: cover; /* This will cover the entire body */
    background-position: center; /* Center the background image */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Startup Animation */
#startup-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff7ea; /* Semi-transparent background */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it covers all content */
    opacity: 1;
    animation: fadeIn 1s forwards, fadeOut 10s 8s ease-in-out forwards; /* Fade in and out */
}

.startup-logo {
    width: 20vw; /* Use viewport width for responsiveness */
    max-width: 150px; /* Maintain a maximum width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 2vh; /* Space between logo and text */
}

.gear {
    width: 10vw; /* Use viewport width for responsiveness */
    max-width: 40px; /* Maintain a maximum size */
    height: auto; /* Maintain aspect ratio */
    position: absolute; /* Position gears absolutely */
    animation: rotate 2s linear infinite; /* Continuous rotation */
}

.gear-left {
    left: calc(50% - 10vw); /* Position left gear closer to the logo */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for centering */
}

.gear-right {
    left: calc(50% + 10vw); /* Position right gear closer to the logo */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for centering */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Media Queries for additional responsiveness */
@media (max-width: 768px) {
    .startup-logo {
        width: 30vw; /* Increase logo size on smaller screens */
        margin-bottom: 5vh; /* Adjust margin for smaller screens */
    }

    .gear {
        width: 15vw; /* Increase gear size on smaller screens */
    }

    h1 {
        font-size: 4rem; /* Adjust heading size for smaller screens */
    }

    .navbar {
        padding: 0.5rem 1rem; /* Reduce padding for smaller screens */
    }

    .nav-links {
        gap: 1rem; /* Reduce gap between nav links */
    }
}

@media (max-width: 480px) {
    .startup-logo {
        width: 40vw; /* Further increase logo size on very small screens */
        margin-bottom: 8vh; /* Adjust margin for very small screens */
    }

    .gear {
        width: 20vw; /* Further increase gear size on very small screens */
    }

    h1 {
        font-size: 2.5rem; /* Further reduce font size for very small screens */
    }

    .navbar {
        padding: 0.5rem; /* Further reduce padding for very small screens */
    }

    .nav-links {
        flex-direction: column; /* Stack links vertically on very small screens */
        gap: 0.5rem; /* Reduce gap between nav links */
    }
}

/* Main Heading */
h1 {
    margin: 0; /* Remove default margin from h1 */
    padding: 0; /* Remove default padding from h1 */
    font-size: 6rem; /* Large font size */
    font-family: Arial, Helvetica, sans-serif;
    color: #402401;
    text-align: center; /* Center text for better appearance */
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fbe093; /* Slightly transparent background */
    color: black; /* Changed to black for better contrast */
    position: fixed; /* Fix navbar to the top */
    top: 0; /* Stick to the top of the viewport */
    width: 100%; /* Full width */
    z-index: 10; /* Ensure navbar is above other content */
}

.logo {
    width: 10%;
    height: auto;    
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: black;
    text-decoration: none;    text-decoration: none; /* Changed to none for standard link appearance */
    font-size: larger;
    padding-right: 1%;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none; /* Hide the menu toggle button by default */
    flex-direction: column;
    cursor: pointer;
    z-index: 11; /* Ensure it is above the nav links */
}

.bar {
    height: 2px; /* Increased height for better visibility */
    width: 25px;
    background-color: black; /* Changed to black for better contrast */
    margin: 3px 0; /* Space between bars */
}

/* Change the appearance of the bars when the menu is active */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); /* Rotate the first bar */
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); /* Rotate the third bar */
}

/* Media Queries for Navbar Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links by default on smaller screens */
        flex-direction: column; /* Stack links vertically */
        position: absolute; /* Position links absolutely */
        top: 60px; /* Position below the navbar */
        left: 0; /* Align to the left */
        width: 100%; /* Full width */
        background-color: #fbe093; /* Match navbar background */
        padding: 1rem 0; /* Add padding */
    }

    .nav-links.active {
        display: flex; /* Show links when active */
    }

    .menu-toggle {
        display: flex; /* Show the menu toggle button on smaller screens */
    }
}

/* Hide the menu toggle button on larger screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Hide the menu toggle button on larger screens */
    }
}    

#info {
    width: 100%; /* Full width */
    padding: 100px 20px 40px; /* Add top padding to create space for the navbar */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly opaque background for contrast */
    text-align: center; /* Center the text */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 20px 0; /* Space above and below the section */
}

.containeri {
    width: 90%; /* Default width */
    max-width: 1500px; /* Maximum width for larger screens */
    margin: auto; /* Center the container */
    padding: 20px; /* Padding for the container */
    background-image: url(/images/bgdev.png);
    background-size: 100%; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent background repeat */
    border-radius: 10px; /* Optional: Add rounded corners */
}

#info h1 {
    color: black; /* Ensure the text color is visible */
    font-size: 2.5rem; /* Adjust font size as needed */
    margin-top: 0; /* Reset margin if needed */
    margin-bottom: 20px; /* Space below the heading */
    font-weight: bold;
}

#info p {
    color: #000; /* Darker text for better readability */
    font-size: 1.2rem; /* Adjust font size for paragraphs */
    line-height: 1.6; /* Increase line height for better readability */
    margin-bottom: 20px; /* Space below paragraphs */
    font-weight: bold;
}

#bullet {
    list-style-type: disc; /* Use disc bullets */
    padding-left: 20px; /* Indent the list */
    text-align: left; /* Align text to the left */
    margin: 0 auto; /* Center the list */
}

#bullet li {
    margin-bottom: 10px; /* Space between bullet points */
    font-size: 1.2rem; /* Slightly larger font size for bullet points */
    color: #000; /* Match the color with the heading */
    font-weight: bold; /* Make bullet points bold */
}

#why {
    width: 100%; /* Full width */
    padding: 100px 20px 40px; /* Add top padding to create space for the navbar */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly opaque background for contrast */
    text-align: center; /* Center the text */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 20px 0; /* Space above and below the section */
}

.containerw {
    width: 90%; /* Default width */
    max-width: 1500px; /* Maximum width for larger screens */
    margin: auto; /* Center the container */
    padding: 20px; /* Padding for the container */
    background-image: url('/images/why.png'); /* Ensure the path is correct */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent background repeat */
    border-radius: 10px; /* Optional: Add rounded corners */
    min-height: 300px; /* Set a minimum height to ensure visibility */
}

#why p {
    color: #000; /* Darker text for better readability */
    font-size: 1.2rem; /* Adjust font size for paragraphs */
    line-height: 1.6; /* Increase line height for better readability */
    margin-bottom: 20px; /* Space below paragraphs */
    font-weight: bold;
}

#whycontent {
    list-style-type: disc; /* Use disc bullets */
    padding-left: 20px; /* Indent the list */
    text-align: left; /* Align text to the left */
    margin: 0 auto; /* Center the list */
}
#whycontent li {
    margin-bottom: 10px; /* Space between bullet points */
    font-size: 1.2rem; /* Slightly larger font size for bullet points */
    color: #000; /* Match the color with the heading */
    font-weight: bold; /* Make bullet points bold */
}

.contact-form {
    max-width: 800px; /* Maximum width for the form */
    margin: auto; /* Center the form */
    padding: 20px; /* Padding for the form */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly opaque background for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.form-row {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between columns */
    margin-bottom: 20px; /* Space below the row */
}

.form-column {
    flex: 1; /* Each column takes equal space */
    margin-right: 20px; /* Space between columns */
}

.form-column:last-child {
    margin-right: 0; /* Remove margin from the last column */
}

/* Input and Textarea Styles */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="file"],
.contact-form textarea {
    width: 100%; /* Full width */
    padding: 10px; /* Padding for inputs */
    margin-bottom: 15px; /* Space below each input */
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    font-size: 1em; /* Font size */
}

/* Textarea Specific Styles */
.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    height: 120px; /* Set a default height */
}

/* Button Styles */
.contact-form button {
    background-color: #ff9900; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    padding: 12px 20px; /* Padding for the button */
    font-size: 1em; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background 0.3s ease; /* Smooth transition for hover effect */
    width: 100%; /* Full width */
}

/* Button Hover Effect */
.contact-form button:hover {
    background-color: #cc7a00; /* Darker shade on hover */
}

/* Label Styles */
.contact-form label {
    font-weight: bold; /* Bold labels */
    margin-bottom: 5px; /* Space below labels */
    display: block; /* Make labels block elements */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column; /* Stack columns vertically on smaller screens */
    }

    .form-column {
        margin-right: 0; /* Remove margin on smaller screens */
        margin-bottom: 20px; /* Space below each column */
    }

    .contact-form h2 {
        font-size: 1.5rem; /* Smaller heading size */
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form input[type="file"],
    .contact-form textarea {
        font-size: 0.9em; /* Smaller font size for inputs */
    }

    .contact-form button {
        font-size: 0.9em; /* Smaller font size for button */
    }
}

/* Footer Styles */
footer {
    background-color: #fbe093; /* Dark background */
    color: #fff; /* White text */
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.containerF {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    color: #000;
}

.footer-section h3 {
    color: #000; /* Yellowish heading */
    border-bottom: 2px solid #f8b400;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p a {
    text-decoration: none;
    color: #000;
}

.footer-section p, .footer-section ul {
    margin: 10px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #f8b400; /* Change color on hover */
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 40px;  
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1); /* Scale up on hover */
}

.footer-bottom {
    color: #000;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #000;
    padding-top: 10px;
    font-size: 14px;
}

/* Responsive Styling for Footer */
@media (max-width: 768px) {
    .containerF {
        flex-direction: column; /* Stack footer sections vertically on smaller screens */
        align-items: center; /* Center align footer sections */
    }

    .footer-section {
        text-align: center; /* Center text in footer sections */
        margin-bottom: 20px; /* Space between footer sections */
    }
}</pre></body></html>