/* Container Styling */
.registration-websites {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Header Styling */
.registration-websites h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* Buttons Container */
.website-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    opacity: 0; /* Start invisible */
    animation: fadeIn 1s ease-in-out forwards; /* Animation for fading in */
}

/* Button Styling */
.website-btn {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* Black shadow for 3D look */
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid white;
    transform: translateY(30px); /* Start slightly down for a sliding effect */
    animation: slideUp 0.8s ease-in-out forwards; /* Animation for sliding up */
    animation-delay: 1s; /* Delay to start after fadeIn completes */
}

.website-btn:hover {
    background-color: #ffffff; /* Change background to white on hover */
    color: #000000; /* Change text color to black on hover */
    transform: translateY(-5px); /* Hover up effect */
    text-decoration: none; /* Remove underline effect on hover */
    
    border-color: black;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5); /* Shadow changes from black to white */
}

.website-btn .material-icons {
    font-size: 1.2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.website-btn:hover .material-icons {
    color: #000000; /* Change icon color to black on hover */
    text-decoration: none; /* Remove underline effect on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .website-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .registration-websites h1 {
        font-size: 1.5rem;
    }
}

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

@keyframes slideUp {
    from {
        transform: translateY(30px);
    }
    to {
        transform: translateY(0);
    }
}
/* CTSP WEBSITE */
/* CTSP Container Styling */
.ctsp-container {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Header Styling */
.ctsp-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.ctsp-container p {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

/* Highlighted Text */
.highlight {
    font-weight: bold;
    color: #007bff; /* Blue color for highlights */
}

/* List Styling */
.ctsp-container ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

/* List Items Styling */
.ctsp-container li {
    margin-bottom: 10px;
}

/* Button Styling */
.ctsp-btn {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: 8px 8px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 1px solid white;
}

.ctsp-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    text-decoration: none;
    border-color: black;
    box-shadow: 0 8px 1px rgba(255, 255, 255, 0.5);
}

.ctsp-btn .material-icons {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ctsp-btn:hover .material-icons {
    color: #000000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ctsp-container h1 {
        font-size: 1.5rem;
    }

    .ctsp-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

/* Rozgar Container Styling */
.rozgar-container {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Header Styling */
.rozgar-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.rozgar-container p {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

/* Highlighted Text */
.highlight {
    font-weight: bold;
    color: #007bff; /* Blue color for highlights */
}

/* List Styling */
.rozgar-container ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

/* List Items Styling */
.rozgar-container li {
    margin-bottom: 10px;
}

/* Button Styling */
.rozgar-btn {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: 8px 8px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid white;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.rozgar-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: black;
    transform: translateY(-5px);
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
}

.rozgar-btn .material-icons {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.rozgar-btn:hover .material-icons {
    color: #000000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rozgar-container h1 {
        font-size: 1.5rem;
    }

    .rozgar-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}
/* Main Container for Both Websites */
/* Main Container for Both Websites */
.websites-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Website Container Styling */
.website-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 45%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Header Styling */
.website-container h1 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.website-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Bold Text Styling */
.website-container p strong {
    font-weight: bold;
    color: #000;
}

/* Button Styling */
.website-btn {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.website-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
}

.website-btn .material-icons {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.website-btn:hover .material-icons {
    color: #000000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .website-container {
        max-width: 100%;
    }

    .website-container h1 {
        font-size: 1.5rem;
    }

    .website-container p {
        font-size: 0.9rem;
    }

    .website-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}
/* Main Notification Styling */
/* Main Notification Styling */
/* Main Notification Styling */
/* Main Notification Styling */
.notification {
    position: fixed;
    bottom: 20px; /* Position at the bottom */
    right: 20px;
    width: 300px;
    background-color: #ff9800; /* Eye-catching orange */
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1000;
}

/* Hide Notification */
.notification.hidden {
    opacity: 0;
    transform: translateY(100%); /* Move out of view */
}

/* Header Styling */
.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.notification-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #000000; /* Change color on hover */
}

/* Content Styling */
.notification-content {
    margin-top: 10px;
}

.notification-content p {
    margin: 10px 0;
}

.notification-content a.notification-btn {
    display: inline-block;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.notification-content a.notification-btn:hover {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
}
