/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Navigation Bar */
header {
    background-color: transparent; /* Initially transparent */
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 18%;
    z-index: 1000;
    transition: background-color 0.5s ease-in-out, box-shadow 0.5s;
    border-radius: 0px 0px 10px 10px;
}

/* Change background and shadow when scrolled */
header.scrolled {
    background: linear-gradient(45deg, white, white);  /* Gradient background on scroll */
    box-shadow: 0px 6px 8px black;
   
}

/* Fixed logo container to avoid shifts */
.logo-container {
    width: 220px; /* Fixed width for logo container */
    height: 70px; /* Fixed height for logo container */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
}

header.scrolled .container nav ul {
    background-color: #002244;
   
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 10px;
   height: 80px;
   margin-top: -20px;
   margin-left: 190px;
   
   
}

/* header.scrolled .container{
    justify-content: space-between;
} */
header.scrolled .container nav ul a{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}
header.scrolled .secondary-navbar nav ul li a{
    color: black;
    font-size: 20px;

}
header.scrolled .secondary-navbar nav ul li a:hover {
    color: #ffa500;
}
.logo-container img {
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image fits within the container */
    transition: all 0.3s ease; /* Smooth transition when logo changes */
    border-radius: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between; /* Space between logo and nav */
    align-items: center;
    height: 70px;
}

.container nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-right: -60px;
    margin-left: auto; /* Push nav to the right */
    margin-top: 20px;
  
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 25px;
    padding: 8px 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffa500;
}

/* Secondary Navbar */

.secondary-navbar {
   
    padding: 1px 0;
  
    width: 80%;
    margin-left: auto; /* Align the navbar to the right on the page */
}

.secondary-navbar nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
  
    margin-right: 110px;
    justify-content:flex-end; /* Move nav items to the right */
}

.secondary-navbar nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
}

.secondary-navbar nav ul li a:hover {
    color: #ffa500;
}

/* Icon buttons */
#search-btn, .fas.fa-bars {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    margin-right: 15px;

}

/* Search Bar */
.search-container {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    height: 90px;
    background-color: #f1f1f1;
    padding: 20px;
    transition: right 0.7s ease-out;
    z-index: 1000;
    display: flex;
    gap: 1rem;
    border-bottom-left-radius: 20px;
}

.search-container.open {
    right: 0;
}

.search-flex {
    display: flex;
}

.search-input {
    width: 270px;
    padding: 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    height: 50px;
    border: none;
}

#search-Btn {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    height: 50px;
}

/* Close button for search bar */
#closeBtn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    background-size: cover;
    filter: brightness(0.79);  /* Adjust brightness for better text visibility */
}

.hero-content {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
}

.hero-content h3 {
    font-size: 4rem;
    font-weight: 600;
    padding-top: 220px;
    color: white;
    line-height: .7;
    text-transform: uppercase;
}

.hero-content h3 span {
    display: block;
    font-size: 4rem;
    
    text-shadow: 2px 2px 10px #aca5a5;
    font-family: "Playfair Display", 'Guardian Sans', sans-serif;
}
.fade-text {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Content Sections */
section.content {
    padding: 60px 0;
    text-align: center;
    background-color: white;
    margin-top: 50px;
    margin-bottom: 50px;
}

section.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #002244;
}

section.content p {
    font-size: 1.2rem;
    color: #555;
}
/* Scrollbar Styling (Optional for a better look) */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6099d2;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0868cf;
}

/* notification  */
section{
    width: 100%;
   margin-top: -60px;
    }

.announcement-bar {
    display: flex;
    width: 97%;
    height: 105px;
    background-color: #f8f9f9;
    align-items: center;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
  top: -20px;
  border-radius: 20px;
  margin-left: 1.5%;
    
  }
  
  .left-section {
    width: 30%;
    padding-left: 20px;
  }
  
  .left-section h2 {
    font-size: 30px;
    margin: 0;
    color:rgb(12, 59, 129);
    font-weight: 700;
  }
  
  .right-section {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .news-container {
    width: calc(100% - 60px); /* accounting for button widths */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .news-ticker {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .news-item {
    min-width: 100%;
    text-align: center;
    font-size: 28px;
    color: #0e2070;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .scroll-buttons {
    display: flex;
    align-items: center;
  }
  
  .scroll-buttons button {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background-color: #678ff5;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 50%;
  }
  
  .scroll-buttons button:hover {
    background-color: #ccc;
  }

  /*-- About Section -->*/
section.about {
    display: flex;
    width: 100%;
    height: 500px;
    margin-top: 50px;
    justify-content: space-between;
    align-items: center;
}

/* Set 40% width for the text part */
.info {
    width: 40%;
    padding: 20px;
    margin-left: 60px;
}

section .info h1 {
    color: navy;
    font-size: 60px;
}

section .info span {
    color: orange;
    font-size: 40px;
}

section .info p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Set 60% width for the image part */
.Scroll {
    width: 60%;
    display: flex;
    justify-content: flex-end;
}

.image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    animation: slide_in 3s ease-out forwards; /* Animation for sliding the entire container */
    margin-right: 40px;
   
}


.image-container .scrolling-image {
    width: 80%;
    height: 90%;
    box-shadow: 4px 4px 2px 5px black;
    filter: brightness(90%);
    border-radius: 20px;
    position: relative;
}
.image-container .video-icon {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-left: 120px;
    cursor: pointer;
    margin-right: 40px;
    position: relative;
}

@keyframes slide_in {
    0% {
        transform: translateX(100%); /* Start from off-screen to the right */
    }
    100% {
        transform: translateX(0); /* End in the final position */
    }
}

/* GIF at the left bottom corner of the image */
.image-container .video-icon {
    position: absolute;
    bottom: 70px;
    left: 10px;
    width: 100px;
    height: 100px;
    margin-top: -30px;
    
}

/* Button styling */
.btn {
    font-size: 20px;
}

.btn a {
    color: red;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    /*--Faclity--*/

    .details{
        padding: 80px;
        margin-top: 40px;

    }
    section .details h1{
        color: navy;
        font-size: 80px;
        position: relative;
        margin-left: 23%;
    
        }
        
    
    .details span{
            color:orange;
            font-size: 30px; 
            margin-left: 20%; 
        }
        .details p{
            line-height: 1.5;
            margin-bottom: 30px;
            font-size: 20px;
            text-align: center;
            margin-top: 20px;
        }
        
    
 /*--Faclity--*/

 .details{
    padding: 80px;
    margin-top: 40px;

}
section .details h1{
    color: navy;
    font-size: 80px;
    position: relative;
    margin-left: 23%;

    }
    

.details span{
        color:orange;
        font-size: 30px; 
        margin-left: 20%; 
    }
    .details p{
        line-height: 1.5;
        margin-bottom: 30px;
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
    }

    /*--member Section -->*/

    .members-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .chairman  {
        width: 300px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-right: -80px;
        margin-top: 20px;
        animation: slideIn 1s forwards ease-in-out; /* Trigger animation */
        margin-left: -80px;
        
      }
      
      .chairman-img {
        width: 100%;
        
    
      }
      
      .chairman-info {
        margin-top: 10px;
      }
      
      .chairman-info h2 {
        font-size: 1.2rem;
        margin: 10px 0;
      }
      
      .chairman-info p {
        font-size: 1rem;
        color: #666;
      }
      
      .chairman-info button {
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #6c63ff;
        color: white;
        border: none;
        border-radius: 20px;
        cursor: pointer;
      }
      .chairman-info button:hover{
        background-color:orange;

      }
      

/* Animation for sliding and fading in */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delay for each member to create staggered animation */
.chairman:nth-child(1) {
    animation-delay: 0.2s;
}

.chairman:nth-child(2) {
    animation-delay: 0.4s;
}

.chairman:nth-child(3) {
    animation-delay: 0.6s;
}

.chairman:nth-child(4) {
    animation-delay: 0.8s;
}
           /* details section */
          
           /* Overall section styling */
.career-outcomes-section {
    background-color: #f6c6c6;
    padding: 60px;
    display: flex;
    justify-content: center;
    text-align: left;
    height:480px;
    border-radius: 20px;
    width: 96%;
    margin-left:40px;
    margin-top: 50px;
}

/* Container for the text and image */
.content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Text content styling */
.text-content {
    flex: 2;
    margin-right: 140px;
    margin-left:-30px;
}

.text-content h1 {
    font-size: 50px;
    color: #a11f11;
    text-align: center;
    margin-bottom: 50px;
    
}

.text-content h2 {
    color: #1b1b45;
    font-size: 40px;
}

.text-content p {
    color: #4d4d4d;
    font-size: 18px;
    margin: 20px 0;
}

.text-content a {
    color: #e54d47;
    font-size: 20px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-content a:hover {
    color: #c43a35;
}

/* Image container */
.image-content {
  
    text-align: right;
    margin-top: 110px ;
}

/* Image styling with animation */
.animated-image {
    max-width: 450px; /* You can adjust this width as needed */
    height: 500px; /* Set the desired height */
    border-radius: 10px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from 50px below */
    animation: moveUp 1.5s ease-out forwards; /* Animation on load */
}

/* Animation for the image */
@keyframes moveUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Section styling */
.student-achievements-section {
    background-color: #f1bbcd;
    padding: 60px;
    display: flex;
    justify-content: center;
    text-align: left;
    margin-top: 500px;
    height: 450px;
    border-radius: 20px;
    width: 96%;
    margin-left:32px;
}

/* Wrapper for content */
.content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    
}

/* Image styling */
.image-content {
    flex: 1;
    text-align: left;
    margin-top:150px;
}
.career-icon{
    max-width: 200px;
    margin-top: 20px;
    margin-right: 450px;
    margin-left: -300px;
    margin-bottom: -800px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from 50px below */
    animation: moveUp 0s ease-out forwards; /* Animation on load */
}

.image-1{
    flex: 1;
    margin-top: -800px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from 50px below */
    animation: moveUp 1.5s ease-out forwards;
}
 .achievements-icon{
    max-width: 250px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from 50px below */
    animation: moveUp 0s ease-out forwards;
    margin-bottom: -800px;
    margin-left: 250px;
    margin-right: -250px;

}

.student-img {
    max-width: 350px; /* Adjust the width as per your needs */
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text content styling */
.text-1 {
    flex: 2;
    margin-left: 40px;
   align-items: center;
}

.text-1 h2 {
    color: #1b1b45;
    font-size: 40px;
    margin-top: 200px;
}

.text-1 p {
    color: #4d4d4d;
    font-size: 18px;
    margin: 20px 0;
}
.text-1 {
    margin-top: -1000px;
    margin-left:70px;
}

.text-1 a {
    color: #e54d47;
    font-size: 20px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-1 a:hover {
    color: #c43a35;
}


/* 3rd section */
/* Overall section styling */
.career-outcomes-section-2 {
    padding: 60px;
    display: flex;
    justify-content: center;
    text-align: left;
    background: none;
    height:450px;
    border-radius: 20px;
    width: 96%;
    margin-left:30px;
    
}

/* Container for the text and image */
.content-wrapper-2 {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Text content styling */
.text-content-2 {
    flex: 2;
    margin-right: 140px;
    margin-left:-30px;
    margin-top: -190px;
    
}
.text-2{
    margin-top: -700px;
    margin-left:20px;  
    color: #1b1b45;
    font-size: 20px; 
    margin-right: 40px;

}

.text-content-2 h1 {
    font-size: 50px;
    color: #a11f11;
    text-align: center;
    margin-bottom: 50px;
    
}

.text-content-2 h2 {
    color: #1b1b45;
    font-size: 40px;
}

.text-content-2 p {
    color: #4d4d4d;
    font-size: 18px;
  

}

.text-2 a {
    color: #e54d47;
    font-size: 20px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-content-2 a:hover {
    color: #c43a35;
}

/* Image container */
.image-2{
 margin-top: -620px;
}
.campus-icon{
    max-width: 250px; /* Adjust the width as per your needs */
    height: auto;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from 50px below */
    animation: moveUp 0s ease-out forwards;
    margin-bottom: -800px;
    margin-left: -250px;

}

/* Image styling with animation */
.animated-image-2 {
    max-width: 450px; /* You can adjust this width as needed */
    height: 500px; /* Set the desired height */
    border-radius: 10px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start from 50px below */
    animation: moveUp1 1.5s ease-out forwards; /* Animation on load */
}

/* Animation for the image */
@keyframes moveUp1 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* section about srin grades */
/* Basic Styles for Body and Text */


section.grades {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top:-200px;   
}

/* Background video styles */
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the whole section */
    z-index: -2;
}

/* Transparent blue overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(32, 32, 145, 0.5),rgba(32, 32, 145, 0.5),rgba(32, 32, 145, 0.5)); /* White background with semi-transparent overlay */
    z-index: -1; /* Place it behind the content */
    
}

.container1 {
    text-align: center;
    padding: 50px 20px;
    position: relative; /* Ensure it's above the video and overlay */
    z-index: 1;
}

/* Title and Subtitle */
.container1 h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    color: white;  /* White text for title */
    animation: slideFromLeft 2s ease-in-out; /* Apply animation */
    margin-top: 40px;
}

.container1 h2 {
    font-size: 2.5rem;
    color: #ffd700; /* Golden text for subtitle */
    margin-bottom: 40px;
   font-family: 'Times New Roman', Times, serif;
    animation: slideFromRight 2s ease-in-out; /* Apply animation */
}

/* Animation for h1 coming from left to right */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for h2 coming from right to left */
@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Styling the Stats Section */
.stats-container1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    position: relative; /* Ensure it's above the overlay */
    z-index: 1;
    margin-top: 60px;


}

.stat {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.05)); /* Soft radial gradient */
    background-size: 200% 200%; /* Make the background larger for animation */
    padding: 20px;
    margin: 10px;
    width: 160px;
    height:160px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 50%;/* Make it circular */
    border: dotted;  
    border-color: #ffd700;
    position: relative;
    
    animation: pulseBackground 5s infinite ease-in-out; /* Add background animation */
}

/* Pulse animation for the background */
@keyframes pulseBackground {
    0% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 50% 50%;
    }
}

.stat:hover {
    transform: scale(1.1);  /* Slight zoom on hover */
}

/* Number Styling */
.stat h3 {
    font-size: 3rem;
    margin: 0;
    color: #ffd700; /* Gold color for numbers */
    font-weight: bold;
}

/* Text Below the Numbers */
.stat p {
    margin: 5px 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .stats-container1 {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;  /* Make stats full width on small screens */
        max-width: 300px;
    }
}


/* /*1233-- */
.head {
    background-color: #f1f3f5;
    color: rgb(20, 30, 96);
    padding: 0 20px;
}

.head h1 {
    font-size: 70px;
    font-family: bell MT;
    padding-bottom: 0px;
    text-align: center;
    justify-content: center;

}

.head span{
    color: rgb(243, 146, 77);
    font-family: vivaldi;
    font-size: 80px;
    margin-top: -100px;
}

.nav12 {
    margin: 30px 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav12 button {
    background-color: #a1daf4;
    color: white;
    border: black;
    padding: 10px 20px;
    margin: 5 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;

}

.nav12 button:hover {
    background-color: #2953a5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.content33 {
    display: flex;
    justify-content: center;
    margin: 50px;
}

.card {
    background-color: white;
    margin: 0 20px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 350px;
    text-align: left;
    
}

.card img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    transition:transform 0.4s ease-in;
}
.card:hover img{
    transform: scale(1.2);
}

.card p {
    font-size: 20px;
    color: #333;
    margin-top: 50px;
}

.card span {
    display: block;
    width: 40px;
    margin-top: 20px;
}

/*--footer--*/
footer {
    background-color: #002a4d;
    color: white;
    padding: 50px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 200px;
}

h4, h5 {
    color: white;
    margin-bottom: 15px;
}

.underline {
    width: 40px;
    height: 3px;
    background-color: #f8a81c;
    border: none;
    margin-bottom: 15px;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
    text-decoration: underline dotted;
    text-decoration-color: #f8a81c;
    font-size: 15px;

}

footer ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: color 0.3s;
}

footer ul li a:hover {
    text-decoration: underline;
    color: #f8a81c;
}

.social-icons a img {
    width: 50px;
    height: 50px;
    margin-right: 10px;

    
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.contact-details li {
    font-size: 15px;
    margin-bottom: 12px;
}

.contact-details a {
    color: #f8a81c;
    text-decoration: none;
    font-size: 15px;
}

.contact-details a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background-color: #001f3a;
    font-size: 15px;
}

.footer-bottom p {
    margin: 0;
}

/* Map Styling */
iframe {
    border: none;
    width: 250px;
    height: 200px;
    margin-bottom: 15px;
}