/*----------------------------------------------------------------|| HOME PAGE CSS ||-------------------------------------------------------------------*/

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    /* Light mode background */
    color: #333;
    /* Default text color */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for theme changes */
}

/* ──────────────── GLOBAL RESET ──────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ──────────────── NAVBAR ──────────────── */
nav {
  background-color: #0b6ef6;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ffcc00;
  transition: color 0.3s ease;
}

.logo:hover {
  color: red;
}

/* ──────────────── NAV LINKS ──────────────── */
#nav {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

#nav li {
  position: relative;
}

#nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  display: block;
  transition: color 0.3s ease;
}

#nav a:hover {
  color: yellow;
}

/* Desktop: Profile menu inside nav at the end */
@media (min-width: 769px) {
  .profile-menu {
    display: flex !important;
    margin-left: 0;
  }
  
  /* Hide standalone profile menu on desktop */
  .navbar > .profile-menu {
    display: none !important;
  }
}

/* ──────────────── DROPDOWN ──────────────── */
.dropdown {
  display: none;
  position: absolute;
  background: #1976d2;
  top: 100%;
  left: 0;
  list-style: none;
  min-width: 170px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 999;
}

.dropdown li a {
  color: white;
  padding: 10px 15px;
  transition: color 0.3s ease, background 0.3s ease;
}

.dropdown li a:hover {
  color: yellow;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

/* Desktop Hover for Dropdown */
@media (min-width: 769px) {
  .dropdown-parent:hover .dropdown {
    display: block;
  }
}

/* ──────────────── HAMBURGER MENU ──────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
}

/* ──────────────── MOBILE STYLES ──────────────── */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    position: relative;
  }

  .logo {
    order: 1;
    flex: 0 0 auto;
  }

  /* Show standalone profile menu on mobile */
  .navbar > .profile-menu {
    order: 2;
    margin-left: auto;
    margin-right: 2px;
    display: flex !important;
  }

  .hamburger {
    order: 3;
    display: flex;
    margin-left: 0;
  }

  #nav {
    order: 4;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0b6ef6;
    flex-direction: column;
    display: none;
    transition: all 0.3s ease;
  }

  /* Hide profile menu inside #nav on mobile */
  #nav .profile-menu {
    display: none !important;
  }

  #nav.active {
    display: flex;
  }

  /* ✅ Fixed dropdown visibility on mobile */
  .dropdown {
    position: static;
    background: #1976d2;
    box-shadow: none;
    display: none;
    animation: slideDown 0.3s ease;
  }

  .dropdown.active {
    display: block;
  }

  .dropdown li a {
    padding-left: 30px;
  }

  /* ✅ Slide-down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ──────────────── HIDE HAMBURGER ON LARGE SCREENS ──────────────── */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}

/* ──────────────── WELCOME SECTION ──────────────── */
.welcome-container h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  text-align: center;
  margin: 30px 0;
  text-transform: uppercase;
}

/* ──────────────── HOMEPAGE CONTAINER ──────────────── */
.homepage-container {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  max-width: 1000px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ──────────────── HOMEPAGE TEXT ──────────────── */
.homepage-text {
  color: #4a90e2;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}


/* ──────────────── RESPONSIVE TEXT ──────────────── */
@media screen and (max-width: 1024px) {
  .welcome-container h1 {
    font-size: 2.2rem;
  }

  .homepage-container {
    padding: 15px;
    max-width: 900px;
  }

  .homepage-text {
    font-size: 1.1rem;
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .welcome-container h1 {
    font-size: 2rem;
  }

  .homepage-container {
    padding: 10px;
    margin: 15px auto;
  }

  .homepage-text {
    font-size: 1rem;
    padding: 15px;
  }
}

@media screen and (max-width: 576px) {
  .welcome-container h1 {
    font-size: 1.8rem;
  }

  .homepage-container {
    padding: 10px;
    margin: 10px auto;
  }

  .homepage-text {
    font-size: 0.9rem;
    padding: 10px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 360px) {
  .welcome-container h1 {
    font-size: 1.5rem;
  }

  .homepage-container {
    padding: 8px;
    margin: 8px auto;
  }

  .homepage-text {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 8px;
  }
}


/*--------------------------------------------------------------- END ---------------------------------------------------------------------*/


/*------------------------------------------------------------|| ABOUT PAGE CSS ||-------------------------------------------------------------------*/
/* Default Styles */

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Heading in About Section */
.about-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Uniabout List Container */
.uniabout-list-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* Uniabout List Item */
.uniabout-list-item {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

/* Uniabout Paragraph */
.uniabout-paragraph {
    text-align: center;
    font-size: 1.2rem;
    margin: 30px auto;
    max-width: 700px;
    line-height: 1.8;
    color: #555;
    background: #f2f2f2;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

/* Responsive Styles */

/* For tablets and smaller laptops (<=1024px) */
@media screen and (max-width: 1024px) {
    .about-section {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .about-section h3 {
        font-size: 1.5rem;
        /* Slightly smaller heading */
    }

    .uniabout-list-container {
        max-width: 700px;
        padding: 15px;
    }

    .uniabout-list-item {
        font-size: 1rem;
        /* Slightly smaller font */
    }

    .uniabout-paragraph {
        font-size: 1.1rem;
        /* Smaller font for smaller screens */
        padding: 12px;
        max-width: 90%;
        /* Use more of the available screen space */
    }
}

/* For phones and smaller tablets (<=768px) */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .about-section h3 {
        font-size: 1.3rem;
        /* Adjusted heading size */
    }

    .uniabout-list-container {
        max-width: 600px;
        padding: 12px;
    }

    .uniabout-list-item {
        font-size: 0.95rem;
        /* Reduced font size */
    }

    .uniabout-paragraph {
        font-size: 1rem;
        padding: 10px;
        max-width: 90%;
        /* Max width for better fitting */
    }
}

/* For small phones (<=576px) */
@media screen and (max-width: 576px) {
    .about-section {
        padding: 0.8rem;
        margin: 1rem auto;
    }

    .about-section h3 {
        font-size: 1.1rem;
        /* Further reduced heading size */
    }

    .uniabout-list-container {
        max-width: 100%;
        padding: 10px;
    }

    .uniabout-list-item {
        font-size: 0.9rem;
        /* Further reduced font size */
    }

    .uniabout-paragraph {
        font-size: 0.9rem;
        padding: 8px;
        max-width: 90%;
        line-height: 1.6;
        /* Adjusted line height */
    }
}

/* For very small screens (<=360px) */
@media screen and (max-width: 360px) {
    .about-section {
        padding: 0.6rem;
        margin: 0.8rem auto;
    }

    .about-section h3 {
        font-size: 1rem;
        /* Further reduced heading size */
    }

    .uniabout-list-container {
        max-width: 100%;
        padding: 8px;
    }

    .uniabout-list-item {
        font-size: 0.85rem;
        /* Adjusted font size for very small screens */
    }

    .uniabout-paragraph {
        font-size: 0.8rem;
        padding: 6px;
        max-width: 90%;
        line-height: 1.5;
        /* Slightly reduced line-height */
    }
}

/*------------------------------------------ End -------------------------------------------------------------*/

/*-----------------------------------------------------------|| SHARE BUTTON CSS ||---------------------------------------------------*/
.cta-section {
    text-align: center;
    margin: 3rem 0;
}

/* Share Button Styling */
.share-button {
    background: linear-gradient(135deg, #007bff, #6a11cb);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.share-button i {
    margin-right: 0.5rem;
}

.share-button:hover {
    background: linear-gradient(135deg, #6a11cb, #007bff);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.6);
    transform: translateY(-5px);
}

/* Responsive Styles */

/* For tablets and smaller laptops (<=1024px) */
@media screen and (max-width: 1024px) {
    .cta-section {
        margin: 2.5rem 0;
        /* Slightly reduced margin */
    }

    .share-button {
        padding: 0.8rem 2rem;
        /* Reduced padding for smaller screens */
        font-size: 1.1rem;
        /* Slightly smaller font size */
    }
}

/* For phones and smaller tablets (<=768px) */
@media screen and (max-width: 768px) {
    .cta-section {
        margin: 2rem 0;
    }

    .share-button {
        padding: 0.7rem 1.8rem;
        /* Further reduced padding */
        font-size: 1rem;
        /* Smaller font size for smaller screens */
    }
}

/* For small phones (<=576px) */
@media screen and (max-width: 576px) {
    .cta-section {
        margin: 1.5rem 0;
        /* Reduced margin for small phones */
    }

    .share-button {
        padding: 0.6rem 1.5rem;
        /* Even smaller padding */
        font-size: 0.9rem;
        /* Reduced font size */
    }
}

/* For very small screens (<=360px) */
@media screen and (max-width: 360px) {
    .cta-section {
        margin: 1rem 0;
        /* Further reduced margin */
    }

    .share-button {
        padding: 0.5rem 1.2rem;
        /* Minimal padding for very small screens */
        font-size: 0.8rem;
        /* Smallest font size */
    }
}

/*--------------------------------------------------------- END ------------------------------------------------*/




/*---------------------------------------------------------|| VISUAL BASIC PAGE CSS ||--------------------------------------------------*/
/* Default Styles */

/* Instructions Container */
.instructions-container {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

/* Text Color */
.vbli {
    color: green;
}

/* Paragraph Styling */
.instructions-container p {
    margin-bottom: 15px;
}

/* Strong Text Styling */
strong {
    color: #007bff;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Button Styles */
button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Tutorial Button Specific Style */
#tutorialVbBtn {
    background-color: #28a745;
}

#tutorialVbBtn:hover {
    background-color: #218838;
}

/* Heading Styling */
.install-steps-heading {
    text-align: center;
    color: #ff5733;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Responsive Design */

/* For Tablets and Smaller Laptops (<=1024px) */
@media (max-width: 1024px) {

    /* Adjust Instructions Container */
    .instructions-container {
        padding: 15px;
        /* Reduced padding */
        margin-bottom: 20px;
    }

    /* Button Container */
    .button-container {
        gap: 15px;
        /* Reduced gap */
    }

    /* Button Size */
    button {
        padding: 10px 20px;
        /* Slightly smaller button padding */
        font-size: 14px;
        /* Smaller font size */
    }

    /* Install Steps Heading */
    .install-steps-heading {
        font-size: 22px;
        /* Slightly smaller heading font */
    }
}

/* For Phones and Smaller Tablets (<=768px) */
@media (max-width: 768px) {

    /* Adjust Button Container Layout */
    .button-container {
        flex-direction: column;
        /* Stack buttons vertically */
        align-items: center;
    }

    /* Button Size */
    button {
        padding: 10px 18px;
        /* Smaller button padding */
        font-size: 14px;
        /* Smaller font size */
    }

    /* Adjust Install Steps Heading */
    .install-steps-heading {
        font-size: 20px;
        /* Smaller heading font size */
    }
}

/* For Small Phones (<=576px) */
@media (max-width: 576px) {

    /* Instructions Container */
    .instructions-container {
        padding: 12px;
        /* Smaller padding */
        margin-bottom: 15px;
    }

    /* Button Size */
    button {
        padding: 8px 16px;
        /* Reduced button padding */
        font-size: 13px;
        /* Reduced font size */
    }

    /* Install Steps Heading */
    .install-steps-heading {
        font-size: 18px;
        /* Further reduced font size */
    }
}

/* For Very Small Screens (<=360px) */
@media (max-width: 360px) {

    /* Instructions Container */
    .instructions-container {
        padding: 10px;
        /* Minimal padding */
        margin-bottom: 10px;
    }

    /* Button Size */
    button {
        padding: 6px 14px;
        /* Further reduced button padding */
        font-size: 12px;
        /* Smaller font size */
    }

    /* Install Steps Heading */
    .install-steps-heading {
        font-size: 16px;
        /* Smallest heading font size */
    }
}

/* ------------------------------------------------------ End ----------------------------------------------------------- */


/*-------------------------------------------------------|| CONTACT PAGE CSS ||----------------------------------------------------------*/

.contact-section {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

/* Section Titles */
.contact-section h1,
.contact-section h2 {
    color: #333;
    margin-bottom: 10px;
}

.contact-section h1 {
    font-size: 2.5rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.8rem;
    color: #444;
    margin-top: 20px;
}

/* Paragraph Styling */
.contact-section p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contact Information and Links */
.contact-section strong {
    color: #333;
    font-weight: bold;
}

.contact-section a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Base style for social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Style for the social icons */
.social-icon {
    font-size: 40px;
    /* Default icon size */
    color: #333;
    /* Default color */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect with scaling */
.social-icon:hover {
    transform: scale(1.2);
    /* Scale up to 120% */
    color: rgb(213, 11, 11);
    /* Change color */
}

/* Media Query for screens smaller than 576px */
@media screen and (max-width: 576px) {
    .social-links {
        flex-wrap: wrap;
        /* Allow wrapping to prevent overlap */
        gap: 15px;
        /* Reduce spacing */
    }

    .social-icon {
        font-size: 35px;
        /* Smaller icons for smaller screens */
    }

    .social-icon:hover {
        font-size: 40px;
        /* Adjust hover size */
    }
}

/* Media Query for screens smaller than 480px */
@media screen and (max-width: 480px) {
    .social-links {
        flex-direction: column;
        /* Stack icons vertically */
        align-items: center;
        gap: 10px;
        /* Reduce gap */
    }

    .social-icon {
        font-size: 30px;
        /* Adjust size further */
    }

    .social-icon:hover {
        font-size: 35px;
        /* Adjust hover size */
    }
}

/* Media Query for screens smaller than 360px */
@media screen and (max-width: 360px) {
    .social-links {
        gap: 5px;
        /* Minimal gap for very small screens */
    }

    .social-icon {
        font-size: 25px;
        /* Smaller default size */
    }

    .social-icon:hover {
        font-size: 30px;
        /* Adjust hover size */
    }
}


.contact-form {
    margin-top: 2rem;
    background-color: #f9f9f9;
    /* Add a light background */
    padding: 2rem;
    /* Add padding around the form */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    max-width: 600px;
    /* Limit form width */
    margin: 2rem auto;
    /* Center align the form */
}

.contact-form h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1abc9c;
    /* Highlighted border on focus */
    outline: none;
}

.contact-form button {
    display: block;
    width: 100%;
    background: #2c3e50;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #1abc9c;
    transform: translateY(-2px);
    /* Subtle hover effect */
}

.contact-form button:active {
    transform: translateY(0);
    /* Reset on click */
}

.contact-form textarea {
    resize: none;
    /* Prevent resizing */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Add responsive design for smaller screens */
@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}




/* -------------------------------------------------------- End ---------------------------------------------- */


/*-------------------------------------------------------|| POP-UP CSS ||----------------------------------------------------------*/


.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show the popup */
.popup.show {
    visibility: visible;
    opacity: 1;
}

/* Popup content box */
.popup-content {
    position: relative;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    max-width: 450px;
    width: 90%;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close button (X) styling */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.popup-close:hover {
    color: red;
    transform: scale(1.2);
}

/* Heading with emoji */
h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
}

h3 span {
    font-size: 30px;
    margin-left: 10px;
}

/* Main content paragraph */
p {
    margin: 15px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

p strong {
    color: #007bff;
}

.inspiration {
    font-style: italic;
    color: #555;
    margin-top: 25px;
    font-size: 15px;
    border-top: 2px dashed #ddd;
    padding-top: 15px;
}

/* Button styles */
.share-btn {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.share-btn:hover {
    background-color: #218838;
    transform: scale(1.1);
    color: red;
}

/*---------------------------------------------------------- END -----------------------------------------------------------------------*/


/* -------------------------------------------------||ANCHAR TAG CSS|| ----------------------------------------------------------- */

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #0056b3;
}

/* ------------------------------------------------------  END ------------------------------------------------------------------------------ */


/* -----------------------------------------------------------|| FOOTER CSS ||------------------------------------------------------------- */

/* Default Styles for Footer */
.page-footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f1f5fa, #ffffff);
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #666;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.page-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.page-footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */

/* For Tablets and Smaller Laptops (<=1024px) */
@media (max-width: 1024px) {

    /* Adjust Footer Padding */
    .page-footer {
        padding: 1.5rem;
        /* Reduced padding for tablets */
        font-size: 0.9rem;
        /* Slightly smaller font size */
    }
}

/* For Phones and Smaller Tablets (<=768px) */
@media (max-width: 768px) {
    .page-footer {
        padding: 1.2rem;
        /* Further reduced padding for phones */
        font-size: 0.85rem;
        /* Smaller font size */
    }
}

/* For Small Phones (<=576px) */
@media (max-width: 576px) {
    .page-footer {
        padding: 1rem;
        /* Minimal padding for small screens */
        font-size: 0.8rem;
        /* Smaller font size */
    }
}

/* For Very Small Screens (<=360px) */
@media (max-width: 360px) {
    .page-footer {
        padding: 0.8rem;
        /* Reduced padding */
        font-size: 0.75rem;
        /* Smallest font size */
    }
}

/* ----------------------------------------------------------- END ----------------------------------------------------------------------- */

/* ---------------------------------------------------- || ALL SEMESTER TABLE CSS || -------------------------------------------------- */
/* Default Styles for Table Wrapper */
.table-wrapper {
    margin: 2rem auto;
    max-width: 1000px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.table-wrapper::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 20%, transparent 80%);
    transform: rotate(-45deg);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.table-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.table-wrapper:hover::before {
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 20%, transparent 80%);
}

/* Tables */
.semester-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 1rem;
    z-index: 1;
    position: relative;
}

.semester-table caption {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
    color: #007bff;
    text-transform: uppercase;
}

.semester-table th,
.semester-table td {
    border: 1px solid #ddd;
    padding: 1.2rem;
    text-align: left;
}

.semester-table th {
    background: linear-gradient(135deg, #6a11cb, #007bff);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.semester-table tbody tr {
    transition: background-color 0.3s ease-in-out;
}

.semester-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.semester-table tbody tr:hover {
    background-color: #e6f7ff;
    cursor: pointer;
    transform: scale(1.01);
}

.semester-table td a {
    display: inline-block;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    text-transform: capitalize;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.3);
}

.semester-table td a:hover {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    box-shadow: 0 5px 15px rgba(238, 9, 121, 0.5);
}
/* For Tablets and Smaller Laptops (<=1024px) */
@media (max-width: 1024px) {

    /* Adjust Table Wrapper */
    .table-wrapper {
        padding: 1.5rem;
    }

    /* Adjust Font Size of Table Caption */
    .semester-table caption {
        font-size: 1.4rem;
    }

    /* Adjust Table Cell Padding */
    .semester-table th,
    .semester-table td {
        padding: 1rem;
    }

    /* Adjust Link Inside Table */
    .semester-table td a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* For Phones and Smaller Tablets (<=768px) */
@media (max-width: 768px) {

    /* Adjust Table Wrapper */
    .table-wrapper {
        padding: 1.2rem;
    }

    /* Adjust Font Size of Table Caption */
    .semester-table caption {
        font-size: 1.2rem;
    }

    /* Adjust Table Cell Padding */
    .semester-table th,
    .semester-table td {
        padding: 0.8rem;
    }

    /* Adjust Link Inside Table */
    .semester-table td a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* For Small Phones (<=576px) */
@media (max-width: 576px) {

    /* Adjust Table Wrapper */
    .table-wrapper {
        padding: 1rem;
    }

    /* Adjust Font Size of Table Caption */
    .semester-table caption {
        font-size: 1rem;
    }

    /* Adjust Table Cell Padding */
    .semester-table th,
    .semester-table td {
        padding: 0.6rem;
    }

    /* Adjust Link Inside Table */
    .semester-table td a {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
}

/* For Very Small Screens (<=360px) */
@media (max-width: 360px) {

    /* Adjust Table Wrapper */
    .table-wrapper {
        padding: 0.8rem;
    }

    /* Adjust Font Size of Table Caption */
    .semester-table caption {
        font-size: 0.9rem;
    }

    /* Adjust Table Cell Padding */
    .semester-table th,
    .semester-table td {
        padding: 0.5rem;
    }

    /* Adjust Link Inside Table */
    .semester-table td a {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Blink share person name */
.blink {
    animation: blink-animation 1.5s infinite, glow 1.5s ease-in-out infinite;
    color: red;
    /* Bright red color */
    font-weight: bold;
    /* Make text stand out */
    font-size: clamp(16px, 3vw, 36px);
    /* Responsive font size */
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7),
        0 0 12px rgba(0, 255, 0, 0.5);
    /* Simplified glow effect */
    transform: translateZ(0);
    /* Enable hardware acceleration */
    will-change: opacity, text-shadow;
    /* Hint to browser for smooth animations */
}

/* Blinking animation using opacity */
@keyframes blink-animation {
    50% {
        opacity: 0;
        /* Blink effect */
    }
}

/* Smooth glowing effect */
@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(0, 255, 0, 0.7),
            0 0 12px rgba(0, 255, 0, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.9),
            0 0 25px rgba(0, 255, 0, 0.7);
    }
}

/* --------------------------------------------------- END ----------------------------------------------------------------- */



/* ----------------------------------------------|| SEMESTER PAGE CSS ONLY ||----------------------------------------- */
/* Default Styles for Semester Section and Table */
.semester-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
}

.semester-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.semester-caption {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.semester-table thead th {
    background-color: #0073e6;
    color: #ffffff;
    padding: 10px;
    font-size: 1.2rem;
}

.semester-table tbody tr {
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.semester-table tbody tr:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #f0f8ff;
}

.semester-table td {
    padding: 12px;
    font-size: 1rem;
    color: #555;
}

.semester-link {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    border: 2px solid #0073e6;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.semester-link:hover {
    background-color: #0073e6;
    color: #ffffff;
}

/* Responsive Design */

/* For Tablets and Smaller Laptops (<=1024px) */
@media (max-width: 1024px) {
    .semester-section {
        padding: 15px;
        margin: 30px auto;
    }

    .semester-caption {
        font-size: 1.6rem;
    }

    .semester-table thead th {
        font-size: 1.1rem;
    }

    .semester-table td {
        padding: 10px;
        font-size: 0.95rem;
    }

    .semester-link {
        padding: 4px 8px;
        font-size: 0.95rem;
    }
}

/* For Phones and Smaller Tablets (<=768px) */
@media (max-width: 768px) {
    .semester-section {
        padding: 10px;
        margin: 20px auto;
    }

    .semester-caption {
        font-size: 1.4rem;
    }

    .semester-table thead th {
        font-size: 1rem;
        padding: 8px;
    }

    .semester-table td {
        padding: 8px;
        font-size: 0.9rem;
    }

    .semester-link {
        padding: 3px 6px;
        font-size: 0.9rem;
    }
}

/* For Small Phones (<=576px) */
@media (max-width: 576px) {
    .semester-section {
        padding: 8px;
        margin: 15px auto;
    }

    .semester-caption {
        font-size: 1.2rem;
    }

    .semester-table thead th {
        font-size: 0.95rem;
        padding: 7px;
    }

    .semester-table td {
        padding: 6px;
        font-size: 0.85rem;
    }

    .semester-link {
        padding: 3px 5px;
        font-size: 0.85rem;
    }
}

/* For Very Small Screens (<=360px) */
@media (max-width: 360px) {
    .semester-section {
        padding: 5px;
        margin: 10px auto;
    }

    .semester-caption {
        font-size: 1.1rem;
    }

    .semester-table thead th {
        font-size: 0.9rem;
        padding: 6px;
    }

    .semester-table td {
        padding: 5px;
        font-size: 0.8rem;
    }

    .semester-link {
        padding: 2px 4px;
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------------------- END ----------------------------------------------------------------- */


/*--------------------------------------------------------|| HEADER CSS FOR ALL Page ||------------------------------------------------------------------*/
/* Default Header Style */
header {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ff5733;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */

/* For Tablets and Smaller Laptops (<=1024px) */
@media (max-width: 1024px) {
    header {
        font-size: 1.8rem;
        margin: 18px 0;
    }
}

/* For Phones and Smaller Tablets (<=768px) */
@media (max-width: 768px) {
    header {
        font-size: 1.6rem;
        margin: 16px 0;
    }
}

/* For Small Phones (<=576px) */
@media (max-width: 576px) {
    header {
        font-size: 1.4rem;
        margin: 14px 0;
    }
}

/* For Very Small Screens (<=360px) */
@media (max-width: 360px) {
    header {
        font-size: 1.2rem;
        margin: 12px 0;
    }
}

/* ---------------------------------------------------------------- END ----------------------------------------------------------------------------- */

/*------------------------------------------|| DISCLAIMER ||-------------------------------------------- */
.disclaimer {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin: 20px auto;
    max-width: 90%;
    line-height: 1.5;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
    .disclaimer {
        font-size: 0.9rem;
        /* Slightly smaller font */
        margin: 15px auto;
        /* Reduced margin */
    }
}

@media screen and (max-width: 576px) {
    .disclaimer {
        font-size: 0.85rem;
        /* Further reduce font size */
        margin: 10px auto;
        /* Smaller margin */
        line-height: 1.4;
        /* Adjust line spacing */
    }
}

@media screen and (max-width: 480px) {
    .disclaimer {
        font-size: 0.8rem;
        /* Smaller font for very small screens */
        margin: 8px auto;
        /* Compact margin */
        max-width: 95%;
        /* Increase width for narrow screens */
        line-height: 1.3;
        /* Tighter line spacing */
    }
}

@media screen and (max-width: 360px) {
    .disclaimer {
        font-size: 0.75rem;
        /* Smallest font size */
        margin: 5px auto;
        /* Minimal margin */
        max-width: 100%;
        /* Full width for very narrow screens */
        line-height: 1.2;
        /* Tighter line height */
    }
}

/* ------------------------------------------------------ END ---------------------------------------------------------------- */

/* -------------------------------------|| DOCUMNET NEW UPDATE INFO ||--------------------------------------------- */
.newupdate {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 12px;
}

/* --------------------------------------------------- END------------------------------------------------------------------------- */

/* ---------------------------------------------------|| MARQUEE REPORT IF ANY ISSUE ||-------------------------------------------------------- */
.marquee-notice {
    font-size: 16px;
    color: red;
}

.marquee-notice a {
    color: blue;
    text-decoration: underline;
}

.marquee-notice:hover {
    cursor: pointer;
}

/* --------------------------------------------------------- END ----------------------------------------------------------------------- */


/* ------------------------------------------------|| ABOUT PAGE DEV LINKS CSS ||------------------------------------------------------ */
.about-page {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsive grid */
    gap: 20px;
    /* Spacing between items */
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    /* Full-width for grid layout */
    max-width: 800px;
    /* Limit width on larger screens */
}

.about-page ul li {
    text-align: center;
}

.about-page ul li a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    /* Default text/icon color */
    font-size: 1rem;
    /* Base font size */
    transition: all 0.3s ease;
    /* Smooth hover transition */
}

.about-page ul li a i {
    font-size: 1.8rem;
    /* Icon size */
    margin-bottom: 10px;
    /* Space between icon and text */
    transition: transform 0.3s ease, color 0.3s ease;
}

.about-page ul li a:hover {
    color: #007bff;
    /* Change text and icon color on hover */
}

.about-page ul li a:hover i {
    color: #007bff;
    transform: scale(1.3);
    /* Scale up the icon */
}

/* Responsive Adjustments */
@media screen and (max-width: 576px) {
    .about-page ul {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        /* Smaller columns for mobile */
        gap: 15px;
        /* Reduce gap for smaller screens */
    }

    .about-page ul li a {
        font-size: 0.9rem;
        /* Slightly smaller text */
    }

    .about-page ul li a i {
        font-size: 1.8rem;
        /* Slightly smaller icon */
    }
}

/* ------------------------------------------------- END --------------------------------------------------------------------------- */


/*------------------------------------------------|| PRIVACY POLICY CSS ||--------------------------------------------------------------------------*/
.privacy-container {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #007bff;
}

.privacy-container h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0056b3;
}

.privacy-container p {
    margin-bottom: 10px;
}

.privacy-container ul {
    margin-left: 20px;
    list-style-type: disc;
}

.privacy-container a {
    color: #007bff;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .privacy-container {
        padding: 15px;
    }

    .privacy-container h1 {
        font-size: 24px;
    }

    .privacy-container h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 10px;
    }

    .privacy-container h1 {
        font-size: 20px;
    }

    .privacy-container h2 {
        font-size: 18px;
    }
}

/* ---------------------------------------------------------|| END ----------------------------------------------------------------- */


/* --------------------------------------------|| BOT USE INFO MARQUEE ||------------------------------------------------------*/

.marquee-content {
    font-size: 16px;
    color: #4CAF50;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/* ------------------------------------ END -------------------------------------- */


.language-section {
    display: none; /* hide all language sections by default */
}

.language-section.active {
    display: block; /* show only the active language */
}




/* ==============================================================
   PROFILE MENU – DESKTOP + MOBILE (CSS ONLY)
   ============================================================== */

/* ---- PROFILE MENU (DESKTOP) ---- */
.profile-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-menu .user-greeting {
  color: #ffcc00;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.profile-menu .user-greeting i {
  font-size: 1.1em;
}

.profile-menu .login-btn,
.profile-menu .logout-btn {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.profile-menu .login-btn {
  border: 1px solid rgba(255,255,255,0.3);
}

.profile-menu .login-btn:hover {
  background: rgba(255,255,255,0.25);
}

.profile-menu .logout-btn {
  background: rgba(255,107,107,0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255,107,107,0.3);
  min-width: 80px;
  justify-content: center;
}

.profile-menu .logout-btn:hover {
  background: rgba(255,107,107,0.25);
  color: #ff5252;
}

/* ---- MOBILE: PROFILE IN TOP BAR ---- */
@media screen and (max-width: 768px) {
  .profile-menu {
    margin-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
  }

  /* Mobile profile icon (round circle) */
  .profile-icon-mobile {
    color: #ffcc00;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
  }

  .profile-icon-mobile:hover {
    transform: scale(1.1);
  }

  /* Mobile profile dropdown */
  .mobile-profile-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 10px;
    min-width: 180px;
    display: none;
    z-index: 1000;
    animation: slideDown 0.3s ease;
  }

  .mobile-profile-dropdown.show {
    display: block;
  }

  .mobile-profile-dropdown .user-greeting {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-profile-dropdown .logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    border-radius: 4px;
    margin-top: 5px;
  }

  .mobile-profile-dropdown .logout-btn:hover {
    background: rgba(255, 107, 107, 0.1);
  }

  /* Login button on mobile */
  .profile-menu .login-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.3);
  }

  .profile-menu .login-btn:hover {
    background: rgba(255,255,255,0.25);
  }
}

/* ==============================================================
   AUTH PAGE STYLES – Validation Colors + Icons
   ============================================================== */

.input-group {
  position: relative;
}

.input-group input {
  transition: border-color 0.3s ease;
}

.input-group .text-xs {
  display: flex;
  align-items: center;
  gap: 4px;
}

#msg i {
  margin-right: 6px;
}

/* Green border on valid */
input:valid {
  border-color: #10b981 !important;
}

/* Red border on invalid (live) */
input:invalid {
  border-color: #ef4444 !important;
}

/* ==============================================================
   AUTH PAGE – IMPROVED STYLES
   ============================================================== */

#auth .container {
  backdrop-filter: blur(10px);
}

.input-group {
  position: relative;
}

.input-group input {
  transition: all 0.3s ease;
}

.input-group input:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.text-red-600 {
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

#msg {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger Menu Lines */
#unique-navbar .hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

#unique-navbar .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

#unique-navbar .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

#unique-navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
}

#unique-navbar .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (max-width: 768px) {
    #unique-navbar .hamburger {
        display: flex;
    }
}