:root {
    --primary: #0c0074;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;

 /* Dynamically adjusting heights */
 --top-bar-height: clamp(40px, 5vw, 60px); /* Min 35px, responsive, max 60px */
 --min-font-size: clamp(2vw, 2.2vw, 2.3vw);
 --navbar-height: clamp(40px, 5vw, 60px);  /* Min 20px, responsive, max 50px */
 --video-container-height: clamp(40px, 25vw, 500px); /* Min 400px, responsive, max 600px */
 --content-container-height: clamp(40px, 25vw, 500px); /* Min 400px, responsive, max 600px */
 --top-image-height: clamp(40px, 25vw, 500px); /* Min 400px, responsive, max 600px */
 --bottom-image-height: clamp(40px, 25vw, 500px); /* Min 400px, responsive, max 600px */
 --footer-height:clamp(90px, 25vw, 700px);
 --font-size:clamp(10px, 1.2vw, 30px);
 --footer-title-font-size:clamp(30px, 3vw, 40px);
 --footer-content-font-size:clamp(5px, 2vw, 20px);
 --sirbar-height: clamp(22vw, 8vw, 19vw);






 /* Responsive font sizes */
 --font-size-desktop: clamp(14px, 1.5vw, 18px); /* Min 14px, responsive, max 18px */
 --font-size-mobile: clamp(12px, 1.2vw, 16px);  /* Min 12px, responsive, max 16px */

 /* Sidebar width responsive */
 --sidebar-width: clamp(200px, 30vw, 250px); /* Min 200px, responsive, max 250px */
}


@font-face {
    font-family: 'KC Obra Letra';
    src: url('../font/subset-KCObraLetraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Beckman';
    src: url('../font/subset-BeckmanFREE.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../font/subset-Lexend-Regular.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair';
    src: url('../font/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Benedict';
    src: url('../font/Benedict\ Regular.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Garamond'; /* Name of the font */
    src: url('../font/EBGaramond08-Regular.woff') format('woff'); /* Path to the font file */
    font-weight: normal; /* Specify the font weight */
    font-style: normal; /* Specify the font style */
    font-display: swap; /* Optional: Fallback text display while font loads */
}
@font-face {
    font-family: 'Montserrat'; /* Name of the font */
    src: url('../font/monserrat/Montserrat-Regular.woff') format('woff2'); /* Path to the font file */
    font-weight: normal; /* Specify the font weight */
    font-style: normal; /* Specify the font style */
    font-display: swap; /* Optional: Fallback text display while font loads */
}
@font-face {
    font-family: 'Tex-gyre'; /* Name of the font */
    src: url('../font/monserrat/subset-TeXGyreTermes-Regular.woff2') format('woff2'); /* Path to the font file */
    font-weight: normal; /* Specify the font weight */
    font-style: normal; /* Specify the font style */
}


/* Set height for parent elements */
html, body {
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    box-sizing: border-box;
    font-family: garamond, sans-serif;
}

body {
    font-family: 'KC Obra Letra', sans-serif;
    display: flex;
    flex-direction: column; /* Align elements vertically */
}





/* Top Bar */
.top-bar1 {
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    height: var(--top-bar-height); /* Dynamically adjust height */
    width: 100%;
    z-index: 1000;
    transition: height 0.3s ease, opacity 0.5s ease, top 0.5s ease;
}


/* Top Bar Scroll Effect */
.top-bar1.hidden {
    opacity: 0;
    top: -50px;
    transition: opacity 0.5s ease, top 0.5s ease;
}

/* Navbar Scroll Effect */
nav.scrolled {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: top 0.5s ease, opacity 0.5s ease;
    z-index: 10000;
}

.navbar-brand {
    display: flex;
    position: absolute;
    max-height: var(--top-bar-height);
    height: 100%;
    width: auto;
    white-space: nowrap;


}
/* Bioprocess Text */
.top-bar1 h21 {
  font-family: "montserrat", sans-serif;
  font-style: normal;
  font-size: 2.3vw;
  color: white;
  align-self: center;
  position: absolute;
  margin-left: 23vw;
  margin-right: 20vh;
  box-sizing: border-box;
}

/* Hover Effect */
.top-bar1:hover {
    opacity: 0.8; /* Slightly fade on hover */
}

/* When scrolled */
.top-bar1.scrolled {
    opacity: 0.5;
    top: -50px; /* Moves the bar upwards */
}

/* Hidden state for .top-bar */
.hidden {
    opacity: 0;
    top: -50px;
    transition: opacity 0.5s ease, top 0.5s ease;
}
/*End of Top Bar*/



/* Navigation Bar */
nav {
    position: relative; /* Fixed to ensure visibility when it reappears */
    height: var(--navbar-height);
    width: 100%;
    background-color: rgb(87, 192, 248);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99911;
}

/* Show Navigation Bar */
nav.visible {
    opacity: 1; /* Make visible */
    pointer-events: auto; /* Enable interactions */
    top: var(--top-bar-height); /* Fixed position below the top bar */
}

/* Navigation List */
nav ul {
    width: 100%; /* Full width */
    list-style: none; /* Remove bullet points */
    display: flex; /* Align items horizontally */
    justify-content: flex-end; /* Align items to the right */
    align-items: center; /* Center items vertically */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Navigation Items */
nav li {
    height: 40px; /* Match the height of the navbar */
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center content vertically */
}


/* Navigation Links */
nav a {
    height: 100%;
    padding: 0 30px;
    font-size: clamp(14px, 1.2vw, 18px); /* Responsive font size */
    text-decoration: wavy; /* Remove underline */
    display: flex; /* Flexbox for alignment */
    align-items: center; /* Center content vertically */
    color: #0b088f;
    transition: color 0.2s ease, background-color 0.2s ease; /* Smooth hover effect for color and background */
    display: flex;
    align-items: center;
    color: black;
}
/* Active Link Styling */
nav a.active {
    color: #ffffff; /* Change text color for active website button */
    font-weight:lighter; 
    text-decoration: none; /* Remove underline */
    background-color: rgba(255, 255, 255, 0); /* Subtle background for active link */
    transition: color 0.2s ease, background-color 0.2s ease; /* Smooth transition */
}


/* Hover Effect */
nav a:hover {
    text-decoration: wavy;
    color: #F3BD00; /* Change text color */
    background-color: #000000; /* Optional: Add a background color on hover */

}

nav li:first-child {
    margin-right: 0; /* Push all other items to the right */
}

.sidebar{
  position: fixed;
  margin-top: var(--top-bar-height);
  top: 0;
  right: 0;
  height: 240px;
  width: 200px;
  background-color: rgb(87, 192, 248);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
    width: 100%;
  }
.sidebar a{
    width: 100%;
  }

  .menu-button{
    display: none;
  }
  @media(max-width: 800px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
    }
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
  }















/* Content Container */
.content-container {
    position: relative; /* Ensures child elements are positioned relative to this container */
    width: 100%;
    height: var(--sirbar-height);
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    flex-direction: column;
    border-bottom: #ffd500 solid 2px;
}
.responsive-image {
    position: relative; /* Ensures child elements are positioned relative to this container */
    width: 100%;
    height:100%;
}
.logo-image{
    position: absolute;
    top: 15%;
    left: 7%;
    height: 35%;
}
.sir-image{
    position: absolute;
    top: 7%;
    right: 5%;
    height: 85%;
    width: 16.5%;
    border-radius: 4%;
    border: #000000 solid 2px;
    box-shadow: #2f2e2e 0px 0px 20px;
}


/* Editorial Board List Styling */
.editorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.editorial-list li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #ffd700; /* Gold color for a distinct look */
    display: flex;
    align-items: center;
}

.editorial-icon {
    color: #ff4500; /* Bright orange for the star icon */
    margin-right: 10px;
    font-size: 1.2rem; /* Slightly larger icon */
}

/* Reviewer List Styling */
.reviewer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reviewer-list li {
    margin: 8px 0;
    font-size: 1rem;
    color: #ffd500; /* Yellow for consistency with the theme */
    display: flex;
    align-items: center;
}

.reviewer-icon {
    color: #8a2be2; /* Purple for the triangle icon */
    margin-right: 10px;
    font-size: 1rem;
}


/* Caption Container */
.image-caption {
    position: absolute; /* Position it relative to the content container */
    top: 17%; /* Center vertically */
    left: 17%; /* Center horizontally */
    text-align: center;
    z-index: 2; /* Ensure it appears above the image */
    color: white; /* Text color */
}
/* Caption Text Styling */
.image-caption h1{
    font-family: "Tex_gyre"; /* Fallback to sans-serif if font unavailable */
    font-weight: normal;
    font-size: 2.5vw; /* Adjust size based on your design */
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
    margin: 0; /* Remove unnecessary margin */
    display:flex;
    align-items: flex-start;
}
.image-caption h2{
    font-family: "Tex_gyre"; /* Fallback to sans-serif if font unavailable */
    font-weight: normal;
    font-size: 2vw; /* Adjust size based on your design */
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
    margin: 0; /* Remove unnecessary margin */
    display:flex;
    align-items: flex-start;
    line-height: 1.5;
}
.image-caption h3{
    font-family: "Tex_gyre"; /* Fallback to sans-serif if font unavailable */
    font-weight: normal;
    font-size: 2vw; /* Adjust size based on your design */
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
    margin: 0; /* Remove unnecessary margin */
    display:flex;
    align-items: flex-start;
    line-height: 1.5;
}
.image-caption h4  {
    line-height: 1.5;
    margin-top: 0px; /* Remove unnecessary margin */
}
.image-caption h4 a  {
    font-family: "Tex_gyre";
    font-weight: normal;
    font-size: 2vw;

    color: #f300db; /* Set color for h4 */
    text-decoration:wavy;

    display: flex;
    align-items: flex-start;
    margin-top: 0px; /* Remove unnecessary margin */
}

/* Caption Container */
.image-caption {
    position: absolute; /* Position it relative to the content container */

    z-index: 2; /* Ensure it appears above the image */
    color: white; /* Text color */
}





@media(max-width: 800px){
/* Content Container */
.content-container {
    position: relative; /* Ensures child elements are positioned relative to this container */
    width: 100%;
    height: var(--sirbar-height);
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    flex-direction: column;
    border-bottom: #ffd500 solid 2px;
}
.responsive-image {
    position: relative; /* Ensures child elements are positioned relative to this container */
    width: 100%;
    height:100%;
}
.logo-image{
    position: absolute;
    top: 15%;
    left: 7%;
    height: 35%;
}




/* Caption Container */
.image-caption {
    position: absolute; /* Position it relative to the content container */
    top: 17%; /* Center vertically */
    left: 17%; /* Center horizontally */
    text-align: center;
    z-index: 2; /* Ensure it appears above the image */
    color: white; /* Text color */
}
/* Caption Text Styling */
.image-caption h1{
    font-family: "Tex_gyre"; /* Fallback to sans-serif if font unavailable */
    font-weight: normal;
    font-size: 2.5vw; /* Adjust size based on your design */
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
    margin: 0; /* Remove unnecessary margin */
    display:flex;
    align-items: flex-start;
}
.image-caption h2{
    font-family: "Tex_gyre"; /* Fallback to sans-serif if font unavailable */
    font-weight: normal;
    font-size: 2vw; /* Adjust size based on your design */
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
    margin: 0; /* Remove unnecessary margin */
    display:flex;
    align-items: flex-start;
    line-height: 1.5;
}
.image-caption h3{
    font-family: "Tex_gyre"; /* Fallback to sans-serif if font unavailable */
    font-weight: normal;
    font-size: 2vw; /* Adjust size based on your design */
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
    margin: 0; /* Remove unnecessary margin */
    display:flex;
    align-items: flex-start;
    line-height: 1.5;
}
.image-caption h4  {
    line-height: 1.5;
    margin-top: 0px; /* Remove unnecessary margin */
}
.image-caption h4 a  {
    font-family: "Tex_gyre";
    font-weight: normal;
    font-size: 2vw;

    color: #f300db; /* Set color for h4 */
    text-decoration:wavy;

    display: flex;
    align-items: flex-start;
    margin-top: 0px; /* Remove unnecessary margin */
}

/* Caption Container */
.image-caption {
    position: absolute; /* Position it relative to the content container */

    z-index: 2; /* Ensure it appears above the image */
    color: white; /* Text color */
}
}



/* Main Container */
.content-part {
    display: flex;
    width: 100%;
    height: auto; /* Let height adjust based on content */
    background-color: #f1f1f1;
}



/* Sidebar Container */
.columnsidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* Align items to the start (left) */
    width: 24%; /* Fixed width for sidebar */
    height: auto; /* Dynamically adjust height with content */
    background-color: #021c40; /* Background for caption */
    box-sizing: border-box;
    padding: 0; /* Remove padding for clean alignment */
    overflow-y: auto; /* Add scrolling if content overflows */
    border-right: #ffd500 solid 2px; /* Yellow border */
}


.side-img{
    width:100%;
}
/* Contact Caption */
.image-caption1 {
    color: white; /* Ensure text is visible */
    width: 100%; /* Full width */
    padding: 4%; /* Spacing inside */
    box-sizing: border-box;
    overflow-y: auto; /* Add scrolling for long content */
    height: auto; /* Adjust height dynamically with content */
    max-height: 100%; /* Prevent overflow beyond viewport */
    z-index: 1300;
}



/* Contact Heading */
.image-caption1 h5 {
    font-family: "Tex_gyre";
    font-weight: normal;
    font-size: 1.8vw; /* Adjust font size for responsiveness */
    color: #F3BD00;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    text-align: center;
    padding: 0;
}

/* Sidebar List */
.image-caption1 ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    width: 100%;
}

/* List Items Styling */
.image-caption1 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 5%;
    font-size: 1vw;
    line-height: 1.4;
}



/* Citation Section */
.citation-section {
    color: #ffd500;
    text-align: center;
    position: relative;
    width: 90%;
    margin: 0 auto;
    font-size: clamp(0.8rem, 1vw, 1.2rem);
}

/* Citation Stats Table */
.citation-stats table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(0.2rem, 1vw, 1.2rem);
    color: #ffffff;
}

/* Table Styling */
.citation-stats th,
.citation-stats td {
    padding: 0.4vw;
    text-align: center;
    border: 1px solid #ffd500;
}

/* Bar Chart */
#citation-bar-chart {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    padding-bottom: 5%;
}

/* Tooltip Styling */
.tooltip {
    font-size: clamp(0.8rem, 1vw, 1.2rem);
}





/* Contact Caption */
.image-caption11 {
    color: white; /* Ensure text is visible */
    width: 100%; /* Full width */
    padding: 4%; /* Spacing inside */
    box-sizing: border-box;
    overflow-y: auto; /* Add scrolling for long content */
    height: auto; /* Adjust height dynamically with content */
    max-height: 100%; /* Prevent overflow beyond viewport */
}
/* Styling for Courses Handling Section */
.image-caption11 ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    width: 100%; /* Full width for the list */
}

.image-caption11 ul li {
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align items to the top */
    font-size: 1vw; /* Adjust font size as needed */
    line-height: 1.5; /* Spacing between lines */
    margin-bottom: 5%; /* Space between items */
    position: relative; /* Position items relative to parent */
}

.image-caption11 ul li::before {
    content: attr(data-number) "."; /* Use data attribute for numbers */
    font-weight: bold; /* Make the numbers bold */
    margin-right: 8px; /* Add space between number and text */
    flex-shrink: 0; /* Prevent the number from resizing */
}
/* Styling for Double Greater-Than Bullet Points */
.my-specific-list {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.my-specific-list li {
    position: relative; /* Position for pseudo-element */
    margin-bottom: 10px; /* Space between list items */
    font-size: 1vw; /* Adjust font size as needed */
    line-height: 1.5; /* Spacing between lines */
    padding-left: 2em; /* Space for the bullet */
}

.my-specific-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #b300ff; /* Adjust the color */
    font-size: 1.2vw;
    font-weight: bold;
}

/* Styling for Double Greater-Than Bullet Points */
.my-specific-list1 {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}
.my-specific-list1 li {
    position: relative; /* Position for pseudo-element */
    margin-bottom: 10px; /* Space between list items */
    font-size: 1vw; /* Adjust font size as needed */
    line-height: 1.5; /* Spacing between lines */
    padding-left: 2em; /* Space for the bullet */
}

.my-specific-list1 li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #2bc409; /* Adjust the color */
    font-size: 1.2vw;
    font-weight: bold;
}

/* Icons Styling */
.image-caption1 .gmailicon,
.image-caption1 .phoneicon,
.image-caption1 .faxicon {
    width: 2vw;
    height: auto;
    margin-right: 1vw;
    margin-left: 0.5vw;
}
.image-caption1 .location1{
    width: 1.7vw;
    height: auto;
    margin-right: 1.2vw;
    margin-left: 0.627vw;
}

/* Anchor Links */
.image-caption1 a {
    text-decoration: none;
    color: #fafafa;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.image-caption1 a:hover {
    color: #06eeff; /* Highlight on hover */
}














/* Middle Content Container */
.middle-content-container {
    flex: 1; /* Take the remaining space */
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    width: 76%; /* Remaining width */
    gap: 2vh; /* Space between sections */
}

/* Middle Content Styling */
.middle-content {
    width: 100%;
    box-sizing: border-box;
}

.title-bar {
    width: 100%;
    height: clamp(3.8vw, 1vw, 1vw); /* Responsive height */
    background: linear-gradient(to right, #ffb700, #e3c24a, #e3c24a, #ffb700); /* Adjusted gradient colors */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    border-radius: 5px; /* Optional rounded corners */
}


/* Title Inside the Bar */
.title-bar h2 {
    font-family: 'Tex-gyre';
    font-size: clamp(0.5rem, 2.5vw, 2.2rem); /* Title size remains unchanged */
    color: black;
    font-weight: bold;
    margin: 0;
}

/* Ensure default bullets are removed */
.custom-bullets {
    list-style: none; /* Remove default list styling */
    margin: 0;
    padding-left: 7vw; /* Add gap before the points */
    padding-top: 1vw;
    padding-bottom: 1vw;
    padding-right: 2vw;
    line-height: 3vw;
}

/* Styling for List Items */
.custom-bullets li {
    list-style: none; /* Remove individual list styling */
    display: flex;
    align-items: center; /* Align the icon and text */
    gap: 1vw; /* Space between the icon and text */
    font-size: clamp(0.4rem, 1.5vw, 1.2rem); /* Responsive font size */
    margin-top: 1vh; /* Add vertical spacing between items */
    line-height: 2.9vw;
}

/* Hand Icon Styling */
.hand-icon {
    width: 3vw; /* Set icon size */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between icon and text */
    vertical-align: middle; /* Align with text */
}

/* Remove any inherited bullets */
.custom-bullets li::before {
    content: none; /* Ensure no pseudo-content displays */
}


/* Footer Styles */
.footer {
    position: relative;
    background-color: #021c40;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribute content evenly */
    align-items: flex-start; /* Align items to the top */
    padding: 2vw;
    box-sizing: border-box;
    color: #fafafa;
    border: 0.2vw solid #F3BD00;


}

/* Section Styling */
.footer .contact,
.footer .resources {
    width: 30%;
}

.footer iframe {
    width: 30%;
    height: 18vw;
    border-radius: 1vw;
    box-shadow: 0 0.8vw 2vw rgb(0, 0, 0);
    margin-top: 2vw;
    z-index: 15;
}

/* Section Headings */
.footer h3 {
    color: #F3BD00;
    font-size: 2vw;
    margin-bottom: 1vw;
    text-align: center;
}

/* List Styling */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    margin-bottom: 1vw;
    font-size: 1.2vw;
    line-height: 1.5;
}

/* Icon Styling */
.footer ul li img {
    object-fit: contain;
    margin-right: 1vw;
    width: 2vw; /* Fixed size for consistency */
    height: auto;
}

/* Location Icon Specific Styling */
.footer ul li img.location {
    width: 2vw;
    padding-left: 0.2vw;
    padding-right: 0.3vw;
    height: auto;
    margin-top: 0.3vw; /* Minor adjustment for vertical alignment */
}

/* Gmail Icon Styling */
.footer ul li img.gmail {
    width: 2.5vw;
    height: auto;
}

/* Phone Icon Styling */
.footer ul li img.phone {
    width: 2.5vw;
    height: auto;
}

/* Fax Icon Styling */
.footer ul li img.fax {
    width: 2.5vw;
    height: auto;
}

/* Anchor Styling */
.footer a {
    text-decoration: none;
    color: #fafafa;
    display: flex;
    align-items: center; /* Ensure icon and text align */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer a:hover {
    color: #f6d30f;
    text-shadow: 0 0 1vw #f6d30f;
}

/* Hover Effects for Map */
.footer iframe:hover {
    transform: scale(1.05);
    box-shadow: 0 1vw 3vw rgb(255, 204, 0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Responsive Styling */
@media (max-width: 50vw) {
    .footer {
        flex-direction: column;
        align-items: center; /* Center content on small screens */
        padding: 2vw;
    }

    .footer .contact,
    .footer .resources {
        width: 100%;
        text-align: center; /* Center-align text on mobile */
        margin-top: 2vw;
    }

    .footer iframe {
        width: 100%;
        height: 80vw;
        margin-top: 2vw;
        z-index: 15;
    }

    .footer h3 {
        font-size: 3vw; /* Adjust font size for small screens */
    }

    .footer ul li {
        font-size: 1.5vw; /* Adjust text size */
    }
}

.footer-copyright {
    position: absolute;
    bottom: 0;
    width: 90%;
    text-align: center;
    color: #F3BD00; /* Matches footer style */
    font-size: 1.2vw; /* Adjust size as needed */

    padding: 0.5vw 1vw;
    z-index: 10;
    background-color: #021c40; /* Matches footer background */

}


/* Scroll-to-top button styles */
#scrollTop {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: none; /* Initially hidden */
    z-index: 9999; /* Ensure it's above other elements */
}

#scrollTop a img {
    width: 50px; /* Adjust the width of the image */
    height: 50px; /* Adjust the height of the image */
    border-radius: 50%; /* Optional: make it circular */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease; /* Add animation on hover */
}

#scrollTop a img:hover {
    transform: translateY(-5px) scale(1.1); /* Slight hover animation */
}
