body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ddd;
    font-family: 'Times New Roman', Times, serif; 
        }
.headerbutton{
    color: blue;
    background-color: orange;
    right: 0;
    position: sticky;
    float: right; 
    padding: 20px;
    font-size:small;
   border-radius: 5px;
   box-shadow:#fff8f8;
   transition: transform 1.0s ease, box-shadow 0.3s ease;
}
.headerbutton a{
    color: blue;
    text-decoration: none;
}
.headerbutton:hover{
    transform: scale(1.05); /* Slightly zoom the image */
}
@media screen and (max-width: 768px) {
  

    .headerbutton {
        display: none;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    background-color: #333;
    color: #fff;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.logo { 
    text-decoration: none;  /* Remove underline */
    color: inherit;         /* Keep the same color as the surrounding text */
    pointer-events: none;   /* Optional: Prevent click actions if it's not meant to be interactive */

}





.nav-li a {
    text-decoration: none;
    color: #333; /* Default link color */
    font-weight: bold;
    font-size: 18px;
    padding: 5px 15px; /* Add padding to the links */
  
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect for the links */







/* General styles for the menu container */
.nav-li {
    list-style-type: none;
    padding: 0;
    margin: 13px 0 0 0; /* Leave a smaller margin (13px) at the top */
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: space-between; /* Distribute items evenly across the width */
    align-items: center; /* Vertically center the items */
    background-color: #0f0cb3; /* Blue background */
    padding: 10px 20px; /* Add padding around the menu */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for the menu */
    position: sticky; /* Make the menu sticky when scrolling */
    top: 0; /* Stick to the top of the viewport when scrolling */
    z-index: 1000; /* Keep it above other elements */
    width: 100%; /* Full width of the screen */
    box-sizing: border-box; /* Include padding in the width calculation */
}

.nav-li a {
    color: white;
    text-decoration: none;
    padding: 6px 20px; /* Smaller padding for compact design */
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 10px; /* Smaller font size for main menu items */
    white-space: nowrap; /* Prevent text from wrapping */
}


.nav-li li {
    position: relative; /* Needed for submenu positioning */
    margin: 0 8px; /* Reduce space between menu items */
}



.nav-li a:hover {
    background-color: #0077ff; /* Lighter blue on hover */
    border-radius: 5px;
    color: #ffffff;
}

.dropdown .submenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%; /* Below the parent menu item */
    left: 0;
    background-color: #0f0cb3;
    display: none; /* Hidden by default */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
    z-index: 999;
    min-width: 150px; /* Ensure a minimum width for submenu */
}

.dropdown:hover .submenu {
    display: block; /* Show submenu on hover */
}

.submenu li {
    padding: 10px;
}

.submenu li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    font-size: 11px; /* Smaller font size for submenu items */
}

.submenu li a:hover {
    background-color: #0077ff; /* Lighter blue on hover */
    border-radius: 5px;
}

/* Hide the navigation menu on screens smaller than 768px */
@media (max-width: 768px) {
    .nav-li {
        display: none;
    }
}


/* MARQUE */

    /* Marquee Container */
    .marquee-container {
        position: relative;
        width: 100%;
        height: 50px;
        background: linear-gradient(270deg, #1e90ff, #0f0cb3);
        background-size: 400% 400%;
        animation: backgroundAnimation 15s ease infinite;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /* Animated HR Lines */
    .animated-hr {
        width: 80%;
        border: none;
        height: 3px;
        background: linear-gradient(90deg, #ffffff, #ff00ff, #ffffff);
        animation: gradientMove 3s linear infinite;
        margin: 1px 0;
        border-radius: 10px;
    }

    .animated-hr:hover {
        background: linear-gradient(90deg, #ff00ff, #1e90ff, #ff00ff);
        box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
        transition: 0.5s ease;
    }

    /* Marquee Animation Wrapper */
    .marquee {
        display: flex;
        animation: marqueeMove 25s linear infinite; /* Slightly slower animation */
        gap: 250px; /* Space between words */
    }

    @keyframes marqueeMove {
        0% {
            transform: translateX(100%); /* Start from right */
        }
        100% {
            transform: translateX(-100%); /* Move to left */
        }
    }

    /* Marquee Words */
    .marquee span {
        font-size: 18px;
        font-weight: bold;
        color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
        animation: fadeEffect 10s infinite;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .marquee span:hover {
        transform: scale(1.1);
        color: #ff00ff;
        text-shadow: 0px 0px 15px rgba(255, 0, 255, 0.7);
        transition: 0.3s ease;
    }

    /* Word Fade Effect */
    @keyframes fadeEffect {
        0%,
        100% {
            opacity: 0.3;
        }
        50% {
            opacity: 1;
        }
    }

    /* HR Line Gradient Animation */
    @keyframes gradientMove {
        0% {
            background-position: 0%;
        }
        100% {
            background-position: 100%;
        }
    }

    /* Background Animation */
    @keyframes backgroundAnimation {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    /* CTA Button */
    .cta-container {
        margin-top: 20px;
    }

    .cta-button {
        background-color: #ff00ff;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 18px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .cta-button:hover {
        background-color: #1e90ff;
        transform: scale(1.05);
        box-shadow: 0px 5px 15px rgba(30, 144, 255, 0.4);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        /* Adjust marquee word size */
        .marquee span {
            font-size: 20px; /* Smaller font for phones */
            gap: 10px; /* Reduced spacing between words */
        }

        /* Adjust CTA button */
        .cta-button {
            font-size: 14px; /* Smaller button text */
            padding: 8px 15px; /* Reduced padding for smaller buttons */
        }

        /* Adjust marquee animation speed */
        .marquee {
            animation: marqueeMove 30s linear infinite; /* Slightly slower animation */
        }

        /* Adjust spacing */
        .marquee-container {
            height: auto; /* Allow auto height for compact view */
            padding: 10px 5px; /* Add some padding */
        }

        /* Adjust HR size */
        .animated-hr {
            width: 90%; /* Ensure HR spans smaller width */
            height: 3px; /* Thinner line for smaller screens */
        }
    }

/* END OF MARQUE */















/* General Navigation Styles */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hide the menu off-screen */
    width: 30%; /* Menu takes up 40% of the screen width on mobile */
    height: 100%; /* Full height */
    background-color: #0f0cb3; /* Blue background */
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2); /* Shadow effect */
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease; /* Smooth transition when opening/closing */
    padding: 20px;
    z-index: 1000;
    border-left: 2px solid #007bff; /* Box around the menu */
}

.nav-links {
    list-style-type: none;
    padding: 0;
    margin-top: 50px;
    display: block;
    flex-direction: row; /* Horizontal layout for desktop */
    justify-content: space-around;
}

.nav-links li {
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #007bff;
    color: white;
}

/* Phone View Menu */
.nav-links-phoneview {
    background-color: #0f0cb3; /* Blue background */
    display: none; /* Initially hidden */
    list-style-type: none;
    padding: 0;
    margin-top: 60px;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Add space between menu items */
}

.nav-links-phoneview li {
    margin-bottom: 2px;
}

.nav-links-phoneview a {
    
    color: white;
    text-decoration: none;
    padding: 6px 1px; /* Smaller padding for compact design */
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 10px; /* Smaller font size for main menu items */
    white-space: nowrap; /* Prevent text from wrapping */
   
    padding: 10px;
    background-color: #0f0cb3; /* Blue background */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links-phoneview a:hover {
    background-color: #007bff;
    color: white;
}

/* Close Button Styles */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    display: none; /* Initially hide the close button */
}

/* Desktop Styles */
@media (min-width: 768px) {
    /* Hide the mobile view menu */
    .nav-links-phoneview {
        display: none;
    }

    /* Show the desktop view menu */
    .nav-links {
        display: flex;
    }

    /* Hide the mobile menu toggle button */
    .menu-toggle {
        display: none;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Position the menu toggle button on the top-right */
    .menu-toggle {
        position: fixed;
        top: 0;
        right: 20px;
        font-size: 30px;
        background: none;
        border: none;
        color: #333;
        cursor: pointer;
        z-index: 1100;
        transition: all 0.4s ease-in-out;
        width: auto;
    }

    /* Add background and full width on scroll */
    .menu-toggle.scrolled {
        background-color: rgba(255, 0, 0, 0.8);
        color: #fff;
        width: 10%;
        right: 0;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .nav-menu.active {
        right: 0; /* Slide the menu into view */
    }

    .close-btn.active {
        display: block; /* Show the close button when menu is active */
    }

    .menu-toggle.hidden {
        display: none; /* Hide the menu toggle button when menu is active */
    }

    .nav-links-phoneview.active {
        display: flex; /* Show the phone view menu when activated */
        text-align: left;
    }
}










.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}

.hero {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #6c63ff, #3f3d56);
    color: white;
}

.services {
    padding: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    text-align: center;
}

.contact {
    padding: 20px;
    background: #f1f1f1;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-primary {
    padding: 10px 20px;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg,#414fc7, #0f0cb3, #2e52c9, #310168,#5f5100);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
 
    color: white;
    padding: 30px 20px;
    text-align: center;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.navbar {
    background: linear-gradient(135deg,#414fc7, #0f0cb3, #2e52c9, #310168,#5f5100);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
 
    color: white;
    padding: 10px 5px;
    text-align: center;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-logo {
    display: flex;
    align-items: center; /* Align logo and text horizontally */
    margin-bottom: 20px;
}

.footer-logo img {
    margin-right: 10px; /* Space between logo and text */
}

.footer-logo .logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Set minimum width for columns */
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 10px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007bff; /* Light blue on hover */
}
.faq-item h3{
    color: #0f0cb3;
}
/* Make the footer responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column; /* Stack the columns vertically */
        align-items: center; /* Center the items */
    }

    .footer-column {
        text-align: center; /* Center text in each column */
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }
}


@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }
}










    .btn {
        padding: 10px 15px;
        font-size: 13px;
        text-align: center;
        border: none;
       
        border-radius: 5px;
        cursor: pointer;
        display: inline-block;
   
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .btn:hover {
        background-color: #0f0cb3;
    }


    .frame-input{
        width: 100%;
        height: 1000px;
    }




    .lined {
    border: none; /* Remove the default border */
    height: 5px; /* Set the height of the line */
    background-color: orange; /* Set the color to orange */
    margin: 20px 0; /* Adjust the space around the line */
    border-radius: 5px; /* Optional: rounded corners for the line */
    width: 11%;
    transition: width 0.3s ease; /* Smooth transition for width */

    }
    .lined:hover {
        width: 16%; /* Increase the width on hover */
        }
    .lined2 {
        border: none; /* Remove the default border */
        height: 5px; /* Set the height of the line */
        background-color: orange; /* Set the color to orange */
        margin: 20px auto; /* Adjust the space around the line and center it */
        border-radius: 5px; /* Optional: rounded corners for the line */
        width: 15%; /* Set the width of the line */
        display: block; /* Ensure the element behaves like a block-level element */
    }
    .lined3hover{
        border: none; /* Remove the default border */
    height: 5px; /* Set the height of the line */
    background-color: orange; /* Set the color to orange */
    margin: 20px 0; /* Adjust the space around the line */
    border-radius: 5px; /* Optional: rounded corners for the line */
    width: 11%; /* Initial width */
    transition: width 0.3s ease; /* Smooth transition for width */
    }

    .lined3hover:hover {
    width: 16%; /* Increase the width on hover */
    }
    .lined4hover{
        border: none; /* Remove the default border */
    height: 5px; /* Set the height of the line */
    background-color: orange; /* Set the color to orange */
    margin: 20px 0; /* Adjust the space around the line */
    border-radius: 5px; /* Optional: rounded corners for the line */
    width: 14%; /* Initial width */
    transition: width 0.3s ease; /* Smooth transition for width */
    }

    .lined4hover:hover {
    width: 19%; /* Increase the width on hover */
    }.lined5hover{
        border: none; /* Remove the default border */
    height: 5px; /* Set the height of the line */
    background-color: orange; /* Set the color to orange */
    margin: 20px 0; /* Adjust the space around the line */
    border-radius: 5px; /* Optional: rounded corners for the line */
    width: 17%; /* Initial width */
    transition: width 0.3s ease; /* Smooth transition for width */
    }

    .lined5hover:hover {
    width: 22%; /* Increase the width on hover */
    }

    .serv {
    
        width: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 201px;
        border-radius: 5px;
    }
    .serv:hover {
        transform: scale(1.05); /* Slightly zoom the image */
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1); /* Add shadow for a floating effect */
    }

.faq-item{
    transition: transform 1.0s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: scale(1.05); /* Slightly zoom the image */
}
.spandot {
    color: orange;
    font-weight: 900; /* Maximum boldness */
    font-size: 1.5em; /* Increase size if needed for emphasis */
    display: inline-block; /* Ensure proper alignment */
}




/* btn */

/* end of button */