body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Top Bar */
.text-primary{
  color: #003366 !important;
}
.custom-top-bar {
  border-bottom: 1px solid #ddd;
}

/* Primary Text Color */
.custom-text-primary {
  color: #003366 !important;
}

/* Icon Styling */
.custom-phone-info i, 
.custom-location-info i {
  font-size: 1.1rem;
}

/* Ensure content is aligned as required */
.custom-logo-container {
  display: flex;
  align-items: center;
  position: relative; /*  relative positioning */
  left: -05px;
  right: 100px; /* Increase the negative value to move the logo further left */
}

.custom-logo-container .custom-logo-image {
  margin-right: 3px; /* Space between logo and text */
}

/* Container Styling */
.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Flexbox Utility */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

/* Move right items further right */
.custom-right-content {
  position: relative;
  /* Move right items further to the right */
}

.custom-phone-info {
  margin-right: 15px;
}

.custom-location-info {
  margin-left: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .custom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .custom-logo-container {
    left: 0; /* Reset left positioning */
    justify-content: center;
    margin-bottom: 10px;
  }

  .custom-right-content {
    flex-direction: column;
    right: 0; /* Reset right positioning */
    text-align: center;
  }

  .custom-phone-info,
  .custom-location-info {
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  .custom-logo-image {
    height: 40px; /* Adjust logo size for smaller screens */
  }

  .custom-text-primary {
    font-size: 0.9rem;
  }

  .custom-phone-info i, 
  .custom-location-info i {
    font-size: 1.1rem;
  }
}

/* GENERAL NAVBAR STYLING */
.navbar {
  padding: 10px 15px;
}

.navbar-dark {
  background-color: #003366; /* Navy Blue */
}

/* Navbar brand (Logo or Title) */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

/* NAVIGATION MENU */
.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 15px;
}

.nav-link:hover {
  color: #f8f9fa;
}

/* MOBILE TOGGLER (Ensuring it's visible & functional) */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 8px;
}

.navbar-toggler-icon {
  background-color: transparent;
}

/* BUTTONS */
.btn-training, 
.btn-appointment {
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* Training Button */
.btn-training {
  background-color: #638F32;
  color: #fff;
  border: 2px solid #002366;
}

.btn-training:hover {
  background-color: #7f9664;
  color: #fff;
}

/* Appointment Button */
.btn-appointment {
  background-color: #638F32;
  color: #fff;
  border: 2px solid #638F32;
}

.btn-appointment:hover {
  background-color: #4f7127;
  color: #fff;
}

/* Align buttons properly */
.d-flex.gap-2 {
  gap: 10px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
  /* Stack navbar items vertically */
  .navbar-collapse {
      text-align: center;
  }

  .navbar-nav {
      flex-direction: column;
  }

  .navbar-nav .nav-item {
      padding: 5px 0;
  }

  /* Center buttons on mobile */
  .d-flex.gap-2 {
      flex-direction: column;
      width: 100%;
      text-align: center;
      margin-top: 10px;
  }

  .d-flex.gap-2 .btn {
      width: 100%;
  }
}





/* Header Styles */
.header {
  width: 100%;
  overflow: hidden;
}

/* Banner Section */
.header-banner {
  background: url('../assets/research/banner.avif') no-repeat center center;
  background-size: cover;
  color: rgb(255, 255, 255);
  padding: 40px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 40px;
  width: 1600px;
  height: 300px;
}

/* Container to center content */
.header .container {
  width: 90%;
  max-width: 1400px;
  margin-top: 50px;
  padding: 0 15px;
}

/* Title Styling */
.header h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin: 0;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 2rem;
  }
}

/* Section styling */
#objectives.section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #003366, #6c757d);
  position: relative;
  overflow: hidden;
  color: white;
  font-family: 'Arial', sans-serif;
  text-align: center;
  border-bottom: 5px solid #003366;
  transition: background 0.5s ease;
}

#objectives.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  background-size: cover;
  opacity: 0.15;
  z-index: -1;
}

/* Content wrapper within the section */
#objectives .section-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  padding: 20px;
}

#objectives h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  animation: slideIn 1s ease-out;
  color: white;
}

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

#objectives ul li {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 10px 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  padding: 0 20px;
  color: white;
}

#objectives ul li:nth-child(1) {
  animation-delay: 0.5s;
}

#objectives ul li:nth-child(2) {
  animation-delay: 1s;
}

/* Keyframe animations */
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  #objectives.section {
    padding: 40px 15px;
  }

  #objectives h2 {
    font-size: 2rem;
  }

  #objectives ul li {
    font-size: 1rem;
  }
}


/* Section Styling */
#work-structure.section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #e8eff6, #ffffff);
  color: #333;
  font-family: 'Arial', sans-serif;
  text-align: center;
  border-top: 5px solid #003366;
}

#work-structure .container {
  width: 85%;
  margin: 0 auto;
  max-width: 1200px;
}

#work-structure h2 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  border-bottom: 3px solid #638F32;
  display: inline-block;
  padding-bottom: 5px;
}

/* Timeline container */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  border-left: 2px dashed #003366;
}

/* Unique Styling for Timeline Duration */
.timeline-duration {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #65a4e3, #c1d7a7);
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-duration:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  flex-direction: row;
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item .timeline-content {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item .timeline-icon {
  position: absolute;
  top: 50%;
  left: -35px;
  width: 40px;
  height: 40px;
  background-color: #003366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.timeline-item .timeline-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 15px;
}

.timeline-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.timeline-item ul li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.timeline-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background-color: #638F32;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.timeline-item .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.timeline-item:hover .timeline-icon {
  background-color: #638F32;
}

.timeline-item:hover .timeline-title {
  color: #638F32;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #work-structure h2 {
    font-size: 2.2rem;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }

  .timeline-item .timeline-icon {
    left: -25px;
  }

  .timeline-item .timeline-content {
    width: 100%;
  }
}




/* Section Styling */
#publications.section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #75a8db, #c9dab7);
  color: #333;
  font-family: 'Arial', sans-serif;
}

#publications .container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

#publications h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
}

#publications p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

#publications .publication-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#publications .publication-list li {
  margin-bottom: 15px;
}

#publications .publication-link {
  display: block;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #003366;
}

#publications .publication-link:hover {
  background-color: #003366;
  color: #fff;
  transform: translateY(-5px);
}

#publications .publication-title {
  font-size: 1.2rem;
  font-weight: 600;
}

#publications .publication-date {
  display: block;
  font-size: 1rem;
  color: #888;
  margin-top: 5px;
}





/* Section Styling */
.collaboration-section {
  background: linear-gradient(135deg, #dbefe5, #acbdcd); /* Soft light blue gradient */
  padding: 70px 50px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  margin: 50px auto;
  width: 85%;
  max-width: 1200px;
  
  overflow: hidden;
  
  position: relative;
}

.collaboration-section:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
  
}

.collaboration-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #14446b, transparent); /* Subtle blue glow */
  border-radius: 50%;
  opacity: 0.3;
  
}

.collaboration-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #638F32, transparent); /* Complementary soft tone */
  border-radius: 50%;
  opacity: 0.3;
  
}

.section-title h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50; /* Dark gray-blue for professionalism */
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #4a90e2, #2c3e50); /* Clean gradient underline */
  margin: 15px auto;
  border-radius: 2px;
  
}

.collaboration-category {
  margin-bottom: 60px;
}

.collaboration-category h3 {
  font-size: 34px;
  color: #4a90e2; /* Subtle blue for category headers */
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.2px;
  
  border-bottom: 2px solid #4a90e2;
  display: inline-block;
}

.collaboration-list {
  list-style: none;
  padding-left: 0;
  margin-left: 15px;
}

.collaboration-list li {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.collaboration-list li::before {
  content: "✔";
  font-size: 26px;
  color: #4a90e2; /* Blue accent for checkmarks */
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.5s ease;
}

.collaboration-list li:hover {
  color: #2c3e50; /* Darker gray-blue on hover */
  transform: translateX(15px);
}

.collaboration-list li:hover::before {
  transform: translateX(15px) rotate(360deg);
}



@keyframes underlineAnimation {
  0%, 100% {
      width: 0;
  }
  50% {
      width: 80px;
  }
}










/* Team Section Styling */
.team-section {
  background: linear-gradient(135deg, #8faecc, #cbd2c4);
  padding: 80px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  max-width: 1200px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

/* Title Styling */
.section-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #003366;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideInFromTop 1s ease-out;
}

/* Team Slider Container */
.team-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Team Member Card Styling */
.team-member {
  background: linear-gradient(135deg, #fcfcfc, #f4f4f4);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 4000px;  /* Increased card width */
  margin: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: slideUpFromBottom 1s ease-out;
  text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps text color unchanged */
    display: block;
}

/* Team Slider Styling */
.team-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}


/* Team Member Hover Effects */
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Team Member Image Styling */
.team-img {
  height: 200px;
  background: linear-gradient(135deg, #75a8db, #c9dab7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid #638F32;
}

.profile-pic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #638F32;
  transition: transform 0.3s ease;
}

.team-img:hover .profile-pic {
  transform: scale(1.1);
}

/* Team Info Styling */
.team-info {
  padding: 25px;
  text-align: left;
  color: #555;
}

.team-info h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.team-info p {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
}

/* Navigation Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

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

@keyframes slideInFromTop {
  from {
      transform: translateY(-40px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideUpFromBottom {
  from {
      transform: translateY(20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-container {
      flex-direction: column;
      align-items: center;
  }

  .team-member {
      width: 90%;
  }
}



/* Section Heading */
.section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #f7c948, #ff6b6b);
  margin: 10px auto 0;
}

.specialist-slider {
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.cards-container {
display: flex;
transition: transform 0.3s ease-in-out;
overflow: hidden; /* Ensures hidden cards are not visible */
width: 100%; /* Matches the container width */
}

.card {
flex: 0 0 305px; /* Fixed width for each card */
margin: 0 10px;
border: 2px solid #003366;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
min-height: 280px;
max-height: 280px;
overflow: hidden;
box-sizing: border-box;
}

.arrow-btn {
background: linear-gradient(to right, #7ea2c5, #a4b98d); /* Button color */
color: rgb(255, 255, 255); /* Text color */
border: none; /* No border */
padding: 10px 20px; /* Padding around the button */
cursor: pointer; /* Pointer cursor on hover */
font-size: 16px; /* Font size */
position: absolute; /* Position absolute for precise placement */
z-index: 1000; /* Ensures buttons are on top of other elements */
top: 50%; /* Vertically center the buttons */
transform: translateY(-50%); /* Adjust for true vertical centering */
}

#arrow-left {
left: -60px; /* Move left button slightly outside the container */
}

#arrow-right {
right: -60px; /* Move right button slightly outside the container */
}

.cards-container {
display: flex;
overflow-x: auto;
scroll-behavior: smooth;
}

.slider-wrapper {
overflow: hidden;
}

.card-top {
  background: linear-gradient(to right, #2e7ac7, #98b971); /* Gradient from dark blue to green */
  padding: 15px 10px;
  
}



.card-img-top {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px; /* Center the image and add spacing below */
  display: block;
}

.card-body-top {
  text-align: center; /* Center the text inside the top section */
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.card-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.card-body {
  padding: 10px;
}

.card .d-flex {
  gap: 10px;
  justify-content: flex-start;
}

.card .btn {
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.card .btn i {
  font-size: 0.9rem;
  margin-right: 5px;
}

.card .btn-primary {
  background-color: #003366;
  margin-top: 5px;
  color: #fff;
  border: none;
  font-size: 18px; /* Make text larger */
  padding: 10px 20px; /* Increase button size */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow */
  transition: all 0.3s ease-in-out;
}

.card .btn-primary:hover {
  background-color: #00509e;
  transform: scale(1.05); /* Slight zoom effect */
}


.card .btn-success {
  background-color: #638F32 !important;
  color: #fff;
  border: none;
}

.card .btn-success:hover {
  background-color: #4f7127;
}

hr {
  height: 2px !important;  /* Defines the height of the line */
  background-color: black !important;  /* Black color for the line */
  /* Add spacing around the line */
}


/* Responsive Design: Reduce button width for smaller screens */
@media (max-width: 768px) {
  .card .btn {
    width: 100%; /* Make buttons stack vertically */
    justify-content: center; /* Center align text and icons */
  }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .doctor-card {
      width: 200px;
  }
  .profile-img img {
      width: 100px;
      height: 100px;
  }
  .doctor-card h5 {
      font-size: 1rem;
  }
  .doctor-card p {
      font-size: 0.85rem;
  }
  .btn-primary, .btn-success {
      font-size: 0.75rem;
      padding: 5px 8px;
  }
}



/* Responsive Design */
@media (max-width: 768px) {
  .section-heading {
      font-size: 2rem;
  }

  .banner-section h1 {
      font-size: 2.5rem;
  }

  .banner-section p {
      font-size: 1.2rem;
  }

  .custom-list li {
      font-size: 1rem;
  }
  .mt-4 {
      margin-top: 1.5rem;
  }
  
}

/* Section Styling */
#downloads {
  background-color: #cacaca;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  animation: fadeIn 1s ease-in-out;
}

/* Title Styling */
#downloads h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #2c3e50;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  animation: slideInFromTop 1s ease-out;
}

/* Downloads List Styling */
.downloads-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 columns */
  gap: 20px;
  margin-top: 20px;
}

/* Individual Download Item */
.download-item {
  display: block;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #3498db;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  color: #638F32;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .downloads-list {
    grid-template-columns: repeat(2, 1fr); /* Keeps 2 columns on tablets */
    gap: 15px; /* Reducing space for better layout */
  }
}

@media (max-width: 767px) {
  .downloads-list {
    grid-template-columns: 1fr; /* Switches to 1 column on mobile */
  }

  .download-item {
    font-size: 16px; /* Slightly smaller text for mobile */
    padding: 15px; /* Adjust padding */
  }
}

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

@keyframes slideInFromTop {
  from {
      transform: translateY(-30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}






/* Footer Section */
.footer-section {
    background-color: #003366; /* Dark blue background */
    
  }
  
  .footer-section h5,
  .footer-section h6 {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 0.9rem;
    color: #eaeaea;
  }
  
  .footer-section a {
    color: #eaeaea;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #003366;
  }
  
  .footer-section .input-group .form-control {
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
  }
  
  .footer-section .input-group .btn {
    background-color: #003366; /* Light blue button */
    border: none;
    color: #fff;
    border-radius: 0;
    transition: background-color 0.3s ease;
  }
  
  .footer-section .input-group .btn:hover {
    background-color: #003366;
  }
  
  .footer-section hr {
    border-top: 1px solid #eaeaea;
    opacity: 0.2;
  }
  