@charset "UTF-8";
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sticky Outer Container */
.sticky-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo and Name Container */
.name_and_logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(to right, 
            rgb(148, 148, 212) 2%,  
            white 20%,            
            white 80%,            
            rgb(148, 148, 212) 98%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
/*     padding: 10px 0; */
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background: linear-gradient(to right, white 2%, rgb(163, 163, 231) 35%, rgb(163, 163, 231) 65%, white 98%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 10px 20px;
}

/* Navigation Menu */
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Navigation Items */
.navbar ul li {
    margin: 0 15px;
}

/* Navigation Links */
.navbar ul li a {
    text-decoration: none;
    color: rgb(51, 51, 122);
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    display: block;
}

/* Hover Effect */
.navbar ul li a:hover {
    background-color: rgb(51, 51, 122);
    color: white;
    border-radius: 5px;
}

/* Mobile Navigation (Hidden by Default) */
.menu-toggle {
    display: none; /* Hide it on desktop */
}

/* Responsive Image */
.for_default {
    /* margin-top: 5px; */
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    object-fit: contain;
}

/* Main content should grow to push the footer down */
.main-content {
    flex: 1;
     background: linear-gradient(to right, 
            rgb(148, 148, 212) ,  
            rgb(239, 216, 216) ,            
            rgb(148, 148, 212) );
}

/* Make the container full width */
.container {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    width: 90%;
    max-width: 100%;
    padding: 20px; /* Add padding for spacing */
    box-sizing: border-box;
}

/* Style for form cards */
.form-card {
    background-color: rgba(245, 241, 241, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(110, 110, 224, 0.8);
    width: 260px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    animation: zoomInOut 4s infinite;
}

/* Ensure images fit well */
.form-card img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}

.form-card p {
    margin-top: 10px;
    font-size: 18px;
    color: #000000;
}

/* Footer stays at the bottom */
.footer {
    width: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(64, 62, 62), rgb(0, 0, 0));
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: auto; /* Push footer to the bottom */
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between; /* Space out copyright, links, and arrow */
    align-items: center; /* Vertically center items */
    max-width: 1200px; /* Limit width for large screens */
    margin: 0 auto; /* Center the footer content */
    padding: 0 20px; /* Add padding */
}

/* Copyright */
.copyright p {
    font-size: 14px;
    margin: 0; /* Remove default margin */
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px; /* Space between links */
}

.footer-links a {
    color: #ffffff; /* White text */
    text-decoration: none; /* Remove underline */
    font-size: 14px;
    transition: color 0.3s ease; /* Smooth hover effect */
}

.footer-links a:hover {
    color: #08f8f8; /* Red text on hover */
}

/* Back-to-Top Link */
.back-to-top {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: #ffffff; /* White text */
    background-color: #0d1dfc;
    text-decoration: none; /* Remove underline */
    font-size: 20px; /* Larger size */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.back-to-top:hover {
    color: #ff6b6b; /* Red text on hover */
    transform: translateY(-5px); /* Lift effect */
}

@keyframes zoomInOut {
    0% {
      transform: scale(1); /* Normal size */
    }
    50% {
      transform: scale(1.07); /* Zoom in */
    }
    100% {
      transform: scale(1); /* Zoom out */
    }
  }



/* Responsive Navigation for Tablets */
@media screen and (max-width: 1024px) {
    .navbar{
        position: relative;
    }
    
    .nav-container {
        flex-direction: column; 
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center; 
        width: 100%;
    }

    .navbar ul li {
        margin: 5px 10px;
        text-align: center;
    }

    .navbar ul li a {
        font-size: 16px;
        padding: 8px 12px;
    }
    
     
    .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        gap: 10px; /* Reduce space between links */
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
    
    /* Copyright */
    .copyright p {
        font-size: 12px;
    }

    /* Footer Links */
    .footer-links {
        gap: 15px; /* Space between links */
    }

    .footer-links a {
        font-size: 12px;
    }
}



/* Responsive Navigation for Mobile */
@media screen and (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .nav-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 20px;
        position: relative;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: rgb(51, 51, 122);
        cursor: pointer;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .navbar ul {
        position: absolute;
        top: 41px;
        left: 0;
        width: 100%;
        flex-direction: column;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 0;
        margin: 0;
        display: none;
        background: white;
    }

    /* Show menu when active */
    .navbar ul.active {
        display: flex;
    }

    .navbar ul li {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px;
        margin: 1px;
        border-radius: 5px;
        background: linear-gradient(to top, rgb(186, 186, 236) 2%, white 35%, white 65%, rgb(186, 186, 236) 98%);
    }

    .navbar ul li a {
        width: 100%;
        height: 100%;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-content {
        gap: 5px; /* Reduce space between copyright and links */
    }

    .footer-links {
        flex-direction: column; /* Stack links vertically */
        gap: 5px; /* Reduce space between links */
    }

    .footer-content {
        display: block;
        flex-direction: row;
        justify-content: space-between; /* Space out copyright, links, and arrow */
        align-items: center; /* Vertically center items */
    }

     /* Copyright */
     .copyright p {
        font-size: 12px;
    }

    .footer-links {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 12px;
        margin-top: 6px;
    }
 
}